Hello,
integration with zimbra is pretty trivial, you need two things:
#1: have zimbra to forward all emails to piler
As Ser@fin described, it's a single entry in main.cf:
always_bcc = [email protected]
You don't need any transport mapping nor an MX record for
archive.wdc.net
#2: configure LDAP authentication for the piler gui
add the following to config-site.php:
$config['ENABLE_LDAP_AUTH'] = 1;
$config['LDAP_HOST'] = '192.168.1.110';
$config['LDAP_HELPER_DN'] = 'uid=zimbra,cn=admins,cn=zimbra';
$config['LDAP_HELPER_PASSWORD'] = 'xxxxxxx';
$config['LDAP_ACCOUNT_OBJECTCLASS'] = 'zimbraAccount';
$config['LDAP_DISTRIBUTIONLIST_OBJECTCLASS'] =
'zimbraDistributionList';
$config['LDAP_DISTRIBUTIONLIST_ATTR'] = 'zimbraMailForwardingAddress';
$config['LDAP_MAIL_ATTR'] = 'mail';
notes: fix the ldap helper password. You may get it by executing the
following command:
/opt/zimbra/bin/zmlocalconfig -s | grep zimbra_ldap_password | cut -f3
-d ' '
And if your timezone is not in CET +0100, then you should fix it in
config-site.php
Best regards,
Janos