Cheers for that - had to change a few other things in there, but finally got it working...
For future Zimbra->MPP reference:
Had to ENABLE AntiVirus/AntiSpam in Zimbra GUI, but change what it rewrites:
/opt/zimbra/conf/zmmta.cf
Code:
if SERVICE antivirus
POSTCONF content_filter mppscan:[127.0.0.1]:10025
fi
if SERVICE antispam
POSTCONF content_filter mppscan:[127.0.0.1]:10025
fi
if SERVICE archiving
POSTCONF content_filter mppscan:[127.0.0.1]:10025
fi Then had to change a postfix setting:
Code:
su - zimbra
zmlocalconfig -e postfix_smtpd_data_restrictions="check_policy_service inet:127.0.0.1:9998"
Then edit postfix_recipient_restrictions.cf and add this line JUST before permit:
/opt/zimbra/conf/postfix_recipient_restrictions.cf
Code:
check_policy_service inet:127.0.0.1:9998
That's obviously on top of what MPP says to do for a standard Postfix install.
Dan.