diff options
author | Thomas Arendsen Hein <thomas@intevation.de> | 2006-06-21 11:14:47 (GMT) |
---|---|---|
committer | Thomas Arendsen Hein <thomas@intevation.de> | 2006-06-21 11:14:47 (GMT) |
commit | d4e051098b5954e327d1ff83cc506d68c2aab9e5 (patch) | |
tree | 9364bab51cc28e9460e9500812a66b70989f4282 | |
parent | 9f0a7960e3f3286e186c74293972d695cb1a249d (diff) | |
download | kolab-server-2.0-stable.tar.gz |
kolab_smtpdpolicy didn't authenticate to LDAP as user nobody due to a typo.2.0.42.0-stable
This made it impossible for internal users to send mail or for other users
to be a delegate for internal users, because cn=internal isn't readable for
anonymous connections.
-rwxr-xr-x | kolab_smtpdpolicy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kolab_smtpdpolicy b/kolab_smtpdpolicy index bb7afbf..e2c2127 100755 --- a/kolab_smtpdpolicy +++ b/kolab_smtpdpolicy @@ -311,7 +311,7 @@ $conf_allowunauth = 0; %conf = readConfig( %conf, "@l_prefix@/etc/kolab/kolab_smtpdpolicy.conf" ); $conf_ldapuri = $conf{'ldap_uri'}; $conf_basedn = $conf{'basedn'}; -$conf_bindn = $conf{'binddn'}; +$conf_binddn = $conf{'binddn'}; $conf_bindpw = $conf{'bindpw'}; $conf_domain = $conf{'domain'}; $conf_allowunauth = 1 if( $conf{'allow_unauth'} ); |