Marco wrote:
> Hello all,
> I'm having the problem that mail send by OpenGroupware bypasses Amavisd-new
> while sending mail, essentially not scanning mail and not adding the
> signature.
> OpenGroupware (which is installed together with Postfix on one machine)
> doesn't use SMTP while sending mail but uses the standard local mail sender
> which is the Postfix sendmail / maildrop implementation.
> Sending mail locally on the server with any mail client that uses SMTP does
> work.
> I understand this has something to do with Postfix in combination with the
> use of sendmail but I can't find what needs adjusting.
> Maybe someone on this list can help me out.
> Best regards,
> Marco van Eck
Either you have disabled content_filter for 'pickup':
pickup fifo n - - 60 1 pickup
-o content_filter=
In which case you can remove the override, or you are only using
content_filter for smtpd:
smtp inet n - - - - smtpd
-o content_filter=smtp-amavis:[127.0.0.1]:10024
In which case you could move it to main.cf
You might consider using a policy bank for the 'pickup' service that
is more permissive:
pickup fifo n - - 60 1 pickup
-o content_filter=smtp-amavis:[127.0.0.1]:10028
# change this from the original setting
$inet_socket_port = [10024, 10028];
# add these
$interface_policy{'10028'} = 'PERMISSIVE';
$policy_bank{'PERMISSIVE'} = {
spam_kill_level_maps => [10.0], # permissive spam kill level
};
So you are less likely to block system generated mail (like a
pflogsumm report)
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/