From: Art Cancro Date: Mon, 5 Mar 2007 20:29:49 +0000 (+0000) Subject: imap acl ... when outputting the 't' right, also X-Git-Tag: v7.86~3542 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=425c277481e92f78631f45ba17797fa293d7cca7;p=citadel.git imap acl ... when outputting the 't' right, also output the obsolete 'd' right as well. keeps mutt happy.' --- diff --git a/citadel/imap_acl.c b/citadel/imap_acl.c index a9756ba2d..fdda833bb 100644 --- a/citadel/imap_acl.c +++ b/citadel/imap_acl.c @@ -111,6 +111,7 @@ void imap_acl_flags(char *rights, int ra) /* t - delete messages (set/clear \Deleted flag) */ if (ra & UA_DELETEALLOWED) { strcat(rights, "t"); + strcat(rights, "d"); } /* a - administer (perform SETACL/DELETEACL/GETACL/LISTRIGHTS) */