很多人眼裡, sendmail 實在是太復雜了。我升級了一次最新的 8.12.1 到 8.12.2,發現事實並非人們想象中的那麼困難。
因為,好長時間沒有安裝 sendmail ,因此拿來就看 INSTALL 文檔,看裡面的步驟,確實復雜。但是”無意“之中發現了下面的辦法,或許你可以試試看。
首先解開 sendmail-8.12.2.tar.gz 到 /usr/local/src
然後進入 sendmail-8.12.2 目錄,運行
./Build
備份
/usr/sbin/sendmail
/etc/mail/sendmail.cf
然後進入下面的 sendmail 目錄
[root@www sendmail]# sh Build install
提示:
Configuration: pfx=, os=Linux, rel=2.2.16-22, rbase=2, rroot=2.2, arch=i686, sfx=, variant=optimized
Making in /usr/local/src/sendmail-8.12.2/obj.Linux.2.2.16-22.i686/sendmail
if [ ! -d /etc/mail ]; then mkdir -p /etc/mail; else :; fi
install -c -o bin -g bin -m 444 helpfile /etc/mail/helpfile
if [ ! -d /etc/mail ]; then mkdir -p /etc/mail; else :; fi
install -c -o root -g bin -m 644 statistics /etc/mail/statistics
Please read INSTALL if anything fails while installing the binary.
You must have setup a new user smmsp and a new group smmsp
as eXPlained in sendmail/SECUR99vY.
mkdir -p /var/spool/clientmqueue
chown smmsp /var/spool/clientmqueue
chgrp smmsp /var/spool/clientmqueue
chmod 0770 /var/spool/clientmqueue
install -c -o root -g smmsp -m 2555 sendmail /usr/sbin
for i in /usr/bin/newaliases /usr/bin/mailq /usr/bin/hoststat /usr/bin/purgestat; do \
rm -f $i; \
ln -s /usr/sbin/sendmail $i; \
done
install -c -o bin -g bin -m 444 sendmail.0 /usr/man/man8/sendmail.8
install -c -o bin -g bin -m 444 aliases.0 /usr/man/man5/aliases.5
install -c -o bin -g bin -m 444 mailq.0 /usr/man/man1/mailq.1
install -c -o bin -g bin -m 444 newaliases.0 /usr/man/man1/newaliases.1
重新啟動 sendmail ,升級即成功。