Miscellaneous

  Home arrow Miscellaneous arrow Page 2 - Adding Mail with Exim
MISCELLANEOUS

Adding Mail with Exim
By: bluephoenix
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2005-03-15

    Table of Contents:
  • Adding Mail with Exim
  • Prepare the Working Environment
  • Install the BerkeleyDB Library
  • Install Exim
  • Configure Exim
  • Start and Test the Mail Server
  • Verify the DNS MX Records
  • Create a Symbolic Link
  • Conclusion

  •  
     

    SEARCH CODEWALKERS

    TOOLS YOU CAN USE

    advertisement

    Adding Mail with Exim - Prepare the Working Environment


    (Page 2 of 9 )

    Become root, create and navigate to a working source directory.

    $ su root
    > password: *****
    # mkdir /usr/src/mail-sources
    # cd /usr/src/mail-sources

    Download the Exim source code, documentation and the BerkeleyDB library. Be sure to record the files' md5sums from their websites.

    exim-4.50.tar.gz - www.exim.org

    exim-html-4.50.tar.gz (documentation) - www.exim.org

    db-4.3.27.tar.gz - www.sleepycat.com

    Verify the integrity of the downloads using md5sum.

    # for f in `ls`; do md5sum $f; done

    Extract the archives.

    # for f in `ls`; do echo -e "Extracting $f..."; tar -xzf $f; done

    Create any user groups and accounts necessary for the software to install and run.

    # groupadd -g 25 exim
    # useradd -u 25 -g 25 -d /var/spool/exim -c exim exim

    More Miscellaneous Articles
    More By bluephoenix

    blog comments powered by Disqus

    MISCELLANEOUS ARTICLES

    - Oracle Database XE: Indexes and Sequences
    - Modifying Tables in Oracle Database XE
    - Oracle Database XE: Tables and Constraints
    - More on Oracle Databases and Datatypes
    - Oracle Database XE Datatypes: Datetime and L...
    - Oracle Database XE Datatypes: Character and ...
    - From Databases to Datatypes
    - Firefox 3.6.6 Released with Improved Plug-in...
    - Attention Bloggers: WordPress 3.0 Now Releas...
    - Reflection in PHP 5
    - Inheritance and Other Advanced OOP Features
    - Advanced OOP Features
    - Linux from Scratch V.6.6 Review
    - Linux Gaining in Strength
    - Install Slackware on Your Old PC


    © 2003-2012 by Developer Shed. All rights reserved. DS Cluster 6 - Follow our Sitemap