diff options
author | Gunnar Wrobel <wrobel@pardus.de> | 2009-12-07 14:04:24 (GMT) |
---|---|---|
committer | Gunnar Wrobel <wrobel@pardus.de> | 2009-12-07 14:04:24 (GMT) |
commit | 73d3294a336d2f112efa36e78f9002e1158c49e7 (patch) | |
tree | 5f343e07cd60dcc1cca783a594092a2d8e5fef75 | |
parent | 0024f47f39871589cf3d7b89a2ac35db5f3c741c (diff) | |
download | perl-Kolab-73d3294a336d2f112efa36e78f9002e1158c49e7.tar.gz |
kolab/issue1448 (Users might add an account on the nonHome Server and write emails in there.)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | lib/Kolab/LDAP.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2009-12-07 root <Gunnar Wrobel <wrobel@pardus.de>> + * lib/Kolab/LDAP.pm (createObject): kolab/issue1448 (Users might + add an account on the nonHome Server and write emails in there.) + * bin/kolab_smtpdpolicy.in (check_restricted_sender): kolab/issue1340 (RFC: restrict users to sending mail only to internal recipients) diff --git a/lib/Kolab/LDAP.pm b/lib/Kolab/LDAP.pm index be87b43..3fe9acf 100644 --- a/lib/Kolab/LDAP.pm +++ b/lib/Kolab/LDAP.pm @@ -537,7 +537,7 @@ sub createObject } if( $p ne 'sf' && !$islocal ) { # Hide user mailboxes on other servers - Kolab::Cyrus::setACL($cyrus,$uid,0, ["$uid rswipcda"]); + Kolab::Cyrus::setACL($cyrus,$uid,0, ["$uid rs"]); } elsif( $p ne 'sf' ) { # Deal with group and resource accounts my $edn = Net::LDAP::Util::ldap_explode_dn($object->dn(), casefold=>'lower' ); |