| The FreeBSD Diary | 
|  | (TM) | Providing practical examples since 1998If you buy from Amazon USA, please support us by using this link. | 
| 
Upgrading to sendmail 8.9.3
18 February 1999
 | 
| This article describes how I upgraded from sendmail 8.9.2 to sendmail 8.9.3. The process is like to be much more complicated if you have a much earlier version of sendmail. The main reason for upgrading was it fixed a a headers Denial of Service attack as well as other minor problems. See http://www.sendmail.org/ for more information. | 
| The build | 
| Here's what I did: 
 | 
| Configuration | 
| The next step is to re-create your sendmail.cf file.  For more detail,
    please see the original article on upgrading sendmail.
      In the following commands, I will copy the original hendrix.mc file to
    it's new location and compile it to create a new sendmail.cf. # cd/usr/ports/mail/sendmail-8.9.3/cf/cf # cp ../../../sendmail-8.9.2/cf/cf/hendrix.mc . # m4 ../m4/cf.m4 hendrix.mc > hendrix.cf # cp /etc/sendmail.cf /etc/sendmail.892 # cp hendrix.cf /etc/sendmail.cf Now restart sendmail: # killall -hup sendmail Check the logs in case something went wrong. The actual file name may vary and may will be /var/log/messages. # tail /var/log/maillog Now you should send a message to yourself and examine the mailing list headers for that message. Somewhere, it should have this in the headers: (8.9.3/8.9.3) If you see that, then congratulations, you have the latest and greatest version of sendmail! |