/etc/resolve.conf has the nameserver as the first line (not 'search')
sudo rpm -i postfix-2.4.5-2.rhel4.i386.rpm
sendmail else it fights to send mail with postfix: yum remove sendmail
/etc/postfix/main.cf myhostname = boxaroo.com
notify_classes = resource, software, bounce, policy, protocol
virtual_alias_maps = hash:/etc/postfix/virtual
/etc/postfix/virtual, and then after each change run postmap virtual to make changes take place matt walshes@gmail.com
@boxaroo.com walshes@gmail.com
/etc/sysconfig/syslog append -a /var/spool/postfix/dev/log to SYSLOGD_OPTIONS
/etc/postfix/examples/chroot-setup
/etc/postfix/master.cf
postfix check to check for perm problems
egrep '(reject|warning|error|fatal|panic):' /var/log/maillog
postmap /etc/postfix/virtual to update any virtual addresses
yum install spamassassin
0 0 * * * sa-update && service spamassassin restart
chkconfig --level 345 spamassassin on
/etc/passwd ( spamuser:x:99:99:SpamUser:/home/spamuser:/sbin/nologin )
adduser spamuser
chown spamuser:spamuser /home/spamuser
master.cf
smtp inet n - y - - smtpd -o content_filter=spamassassin
spamassassin unix - n n - - pipe user=spamuser argv=/usr/bin/spamc -f -e /usr/sbin/sendmail.postfix -oi -f ${sender} ${recipient}
milter and sender ID/domainkeys tar xvfz sendmail.8.14.1.tar.gz
cd sendmail-8.14.1/libmilter/
devtools/OS/Linux fix the man page thing define(`confMANROOT', `/usr/share/man/man')
sh ./Build
sudo sh ./Build install
mkdir /etc/scripts/dkim_keep
sudo chown -R spamuser:spamuser /etc/scripts/dkim_keep/
cd /etc/scripts/dkim_keep
dkim-genkey -d boxaroo.com
dkim-filter -l -p inet:8891 -d boxaroo.com -k /etc/dkim_keep/default.private -s default -u spamuser
dk-filter -l -p inet:8892 -d boxaroo.com -s /etc/dkim_keep/default.private -S default -u spamuser
postfix non_smtpd_milters = inet:localhost:8891,inet:localhost:8892
sa-test@sendmail.net for a nice debug
dk_eom(): resource unavailable: d2i_PUBKEY_bio() failed *
sendmail going (checking the daemon runlevels of course) but set up this in /etc/mail/sendmail.mc
define(`SMART_HOST',`smtp.boxaroo.com')dnl
-- MattWalsh - 28 Sep 2007