Sendmail: Difference between revisions
From CBLFS
Jump to navigationJump to search
Fixed an error in the libdir path as sendmail requires a trailing / to be present for it to be interpreted right |
Finally made the manual pages "build" correctly |
||
| Line 22: | Line 22: | ||
define(`confCC',`gcc') | define(`confCC',`gcc') | ||
define(`confCCLINK',`gcc') | define(`confCCLINK',`gcc') | ||
define(`confNROFF',` | define(`confNROFF',`cat') | ||
define(`confMANDOC',`') | |||
EOF; | EOF; | ||
| Line 46: | Line 47: | ||
define(`confCCLINK',`gcc') | define(`confCCLINK',`gcc') | ||
define(`confLIBDIR',`/usr/lib64/') | define(`confLIBDIR',`/usr/lib64/') | ||
define(`confNROFF',` | define(`confNROFF',`cat') | ||
define(`confMANDOC',`') | |||
EOF; | EOF; | ||
Latest revision as of 18:43, 19 November 2011
| Download Source: | http://www.sendmail.org/ftp/sendmail.8.14.5.tar.gz |
|---|
Introduction to Sendmail
The sendmail package contains an open-source MTA. It is useful for sending emails via the command line and with PHP's mail() function
Project Homepage: http://www.sendmail.org/
Creating the Sendmail User/Group
groupadd -g 38 smmsp &&
useradd -c "Sendmail" -d /dev/null -g smmsp \
-s /bin/false -u 38 smmsp
Non-Multilib
Configure the package:
cat <<<"EOF" define(`confCC',`gcc') define(`confCCLINK',`gcc') define(`confNROFF',`cat') define(`confMANDOC',`') EOF;
Compile the package:
./Build
Install the package:
./Build install
Multilib
This package does not provide any libraries so only one installation is needed.
64Bit
Configure the package:
cat <<<"EOF" define(`confCC',`gcc -m64') define(`confCCOPTS',`-fPIC -DPIC') define(`confCCLINK',`gcc') define(`confLIBDIR',`/usr/lib64/') define(`confNROFF',`cat') define(`confMANDOC',`') EOF;
Compile the package:
./Build
Install the package:
./Build install