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 |
Next: Install the BerkeleyDB Library >>
More Miscellaneous Articles
More By bluephoenix