Gary wrote:
> D. wrote:
>> $max_servers = 8; # num of pre-forked children (2..15 is
>> -----------------------------------------------------------------
>> smtp inet n - n - 4 smtpd
>> -o content_filter=smtp:[127.0.0.1]:10024
>> pickup fifo n - n 60 1 pickup
> <...>
>> smtp unix - - n - - smtp
> <...>
>> 127.0.0.1:10025 inet n - n - - smtpd
>> -o content_filter=
>> -o content_filter=
>> -o local_recipient_maps=
>> -o smtpd_helo_restrictions=
>> -o smtpd_client_restrictions=
>> -o smtpd_sender_restrictions=
>> -o smtpd_recipient_restrictions=permit_mynetworks,reject_unauth_destination
>> -o mynetworks=127.0.0.0/8
> <...>
>> vscan unix - n n - 10 pipe
>> user=vscan argv=/usr/sbin/amavis ${sender} ${recipient}
>> -o smtp_data_done_timeout=1200
>> -o disable_dns_lookups=yes
>> Daniel Dentzer
> What does this say?
> postconf content_filter
> it shows this:
> content_filter = vscan:[127.0.0.1]:10024
Change:
smtp inet n - n - 4 smtpd
-o content_filter=smtp:[127.0.0.1]:10024
to: (the 4 is now -, and the override is removed)
smtp inet n - n - - smtpd
Add this:
smtp-amavis unix - - n - 8 smtp
-o smtp_data_done_timeout=1200
-o smtp_send_xforward_command=yes
-o disable_dns_lookups=yes
do:
postconf -e "content_filter = smtp-amavis:[127.0.0.1]:10024"
Two problems. You were sending internal mail to the vscan pipe (a
method which is deprecated) and you needed a copy of the smtp transport
with a few overrides specific to amavisd-new, and with a maxproc set to
the same value as $max_servers. We moved content_filter to main.cf so
both smtpd and pickup send to smtp-amavis.
postfix reload
Gary V
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
AMaViS-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amavis-user
AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/howto/