Skip wrote:
Guess this would help:

Using sendmail 8.13.8 with SA 3.2.3

- Skip

From: Chris 'Xenon' Hanson [mailto:[EMAIL PROTECTED] Usually you do this with a combination of trusted_networks and exclusion in your scanner.


You may want to look into mimedefang. It works well with sendmail, and spamassassin, as well as whatever antivirus you may be running.

If you are already running mimedefang, and assuming that your LAN ip scheme is 10.0.1., then add this bit to the sub filter_end part of mimedefang-filter:

   # stopmyfilter
   sub filter_relay($$$) {
       my ($ip, $name, $helo) = @_;
       if ($ip =~ /10\.0\.1\./)
      {
        return('ACCEPT_AND_NO_MORE_FILTERING', "ok");
      }
        else
        {
          return ('CONTINUE', "ok");
        }
   }

-Aubrey

Reply via email to