how to tell postfix to NOT check mails from sasl authenticated users:
use no content_filter in your
main.cf: content_filter =
use a amavisd filter after sasl authentication main.cf: smtpd_sender_restrictions = permit_sasl_authenticated, check_sender_access regexp:/etc/postfix/amavisd.regexp
amavisd.regexp: /^/ FILTER smtp-amavis:[127.0.0.1]:10024
master.cf: #amavisd smtp-amavis unix - - n - 2 smtp -o smtp_data_done_timeout=1200 -o disable_dns_lookups=yes -o smtp_send_xforward_command=yes
# re-injection service 127.0.0.1:10025 inet n - n - - smtpd -o content_filter= -o smtpd_banner=Mailware_REINJECT_8.4 -o disable_dns_lookups=yes -o local_recipient_maps= -o relay_recipient_maps= -o smtpd_helo_restrictions= -o smtpd_client_restrictions= -o smtpd_sender_restrictions= -o smtpd_recipient_restrictions=permit_mynetworks,reject -o mynetworks=127.0.0.0/8 -o myhostname=localhost
----- Original Message ----- From: "Glenn Sieb" <[EMAIL PROTECTED]>
To: <users@spamassassin.apache.org>
Sent: Thursday, October 28, 2004 11:34 PM
Subject: Re: Spamassassin 3 and postfix
Bill Landry said the following on 10/28/04 17:54:
Add a second IP address and SMTPD service to your Postfix server and have your customers auth to that IP address, or have then use a different port on the same IP address. Then have Postfix bypass the content filter on this port or second SMTPD service.
Or he can make a whitelist that includes himself and put that before the DSBL checking...
Best, Glenn