Sendmail isn't using SMART_HOST. Now what?

Matthew Seaman m.seaman at infracaninophile.co.uk
Thu Apr 17 11:49:01 PDT 2003


On Thu, Apr 17, 2003 at 12:30:52PM -0500, Kirk Strauser wrote:
> I have a firewall machine that I don't want to communicate directly with the
> outside world, so I've been trying to get it to use another FreeBSD server
> on the LAN as it's smart host.  The Sendmail config on the machine is
> default except for the SMART_HOST setting:
> 
>     diff -u freebsd.mc gopher.honeypot.net.mc
>     --- freebsd.mc  Sun Dec 29 11:16:44 2002
>     +++ gopher.honeypot.net.mc      Thu Apr 17 12:17:55 2003
>     @@ -74,7 +74,7 @@
>      dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `"550 Mail from " $&{client_addr} " rejected, see http://mail-abuse.org/cgi-bin/lookup?" $&{client_addr}')
> 
>      dnl Dialup users should uncomment and define this appropriately
>     -dnl define(`SMART_HOST', `your.isp.mail.server')
>     +define(`SMART_HOST', `kanga.honeypot.net')
> 
>      dnl Uncomment the first line to change the location of the default
>      dnl /etc/mail/local-host-names and comment out the second line.
> 
> However, after a `make; make install; make restart', I can run tcpdump on
> the smart host and watch as the firewall does a DNS query for the domain of
> an outgoing email, and then nothing; the firewall is still sending email
> directly to the remote machine.
> 
> On a related note, the firewall insists on delivering mail locally that it
> has no business handling.  I have `root' set as an alias to
> `root at kanga.honeypot.net' (i.e., on the smart host).  Whenever I type
> 
>     echo test | mail root at kanga.honeypot.net
> 
> I get this in my /var/log/messages:
> 
>     Apr 17 12:26:25 gopher sm-mta[1812]: h3HHQOU1001811: SYSERR(root): MX list for honeypot.net. points back to gopher.honeypot.net
>     Apr 17 12:26:25 gopher sm-mta[1812]: h3HHQPU1001812: Losing ./qfh3HHQPU1001812: savemail panic
> 
> I've read the Sendmail FAQ, but the destination machine *is* configured
> correctly.  Every other machine I've tested can deliver to that email
> address except the machine in question.  In fact, a tcpdump doesn't even
> show any packets from the firewall to the smart host.
> 
> I'm at a loss.  This really shouldn't be as difficult as I seem to be making
> it.  Any suggestions?  Am I overlooking something obvious?


Hmmm... A few sendmail revisions back, I'd have recommended

    FEATURE(`nullclient', ...)dnl

but since the split into sm_msp and sm_mta, I think that probably the
best way to go on a firewall is:

   i) Disable the sendmail MTA function entirely.  This means that
   nothing will be listening on port 25, with is one less thing to
   worry about security-wise.  In /etc/rc.conf:

       sendmail_enable="NO"
       sendmail_outbound_enable="NO"
       sendmail_submit_enable="NO"

   ii) Configure the sendmail MSP to immediately forward all e-mail to
   your main mail host.  You don't need a persistent daemon in this
   case, as the MSP process is what you get by invoking
   /usr/sbin/sendmail.  However, if the message can't be delivered
   immediately it will be placed into the clientmqueue, so you should
   run a queue flushing sendmail instance:

       sendmail_msp_queue_enable="YES"

   and modify the submit.mc file as follows:

        % diff -u freebsd.submit.mc kanga.submit.mc
        --- freebsd.submit.mc   Wed Feb 19 22:16:31 2003
        +++ kanga.submit.mc Thu Apr 17 19:38:15 2003
        @@ -23,4 +23,4 @@
         define(`confDONT_INIT_GROUPS', `True')dnl
         dnl
         dnl If you use IPv6 only, change [127.0.0.1] to [IPv6:::1]
        -FEATURE(`msp', `[127.0.0.1]')dnl
        +FEATURE(`msp', `[kanga.honeypot.net]', `MSA')dnl

   This will connect to your mail server on the Mail Submission port
   587 rather than the SMTP port 25.

   You may find it useful to set the SENDMAIL_SUBMIT_MC variable in
   /etc/make.conf to point to a different .mc file than the default.
    
   Nb. using [square brackets] around the hostname (or IP number)
   causes sendmail not take MX records into account at all, which is
   what you usually want in this sort of setup.  Come to think of it,
   it would probably help with your SMART_HOST setup as is.

	Cheers,

	Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.                       26 The Paddocks
                                                      Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey         Marlow
Tel: +44 1628 476614                                  Bucks., SL7 1TH UK
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-questions/attachments/20030417/52302620/attachment-0001.bin


More information about the freebsd-questions mailing list