Do not remove ACL all the time if SharedMailbox is disabled

This commit is contained in:
Daniel Berteaud 2013-02-06 09:21:26 +01:00
parent 7d231598c0
commit 238da5d92c
1 changed files with 15 additions and 13 deletions

View File

@ -16,6 +16,7 @@ my $event = $ARGV[0];
# SharedMailboxes disabled ?
if (($dovecot->prop('SharedMailbox') || 'disabled') eq 'disabled'){
if (($dovecot->prop('SharedMailboxAcl') || 'yes') ne 'no'){
foreach my $user ($a->users){
my $name = $user->key;
die "Error removing SharedMailbox ACLs ($name"."'s Maildir)\n" unless (
@ -30,6 +31,7 @@ if (($dovecot->prop('SharedMailbox') || 'disabled') eq 'disabled'){
"/home/e-smith/files/users/$name/Maildir") == 0
);
}
}
$dovecot->set_prop('SharedMailboxAcl','no');
exit(0);
}