This is a discussion on Re: [courier-users] Administration Question within the Courier-Imap forums, part of the Mail Servers and Related category; This is a MIME GnuPG-signed message. If you see this text, it means that your E-mail or Usenet ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages. --=_mimegpg-commodore.email-scan.com-15761-1109374951-0005 Content-Type: text/plain; format=flowed; charset="US-ASCII" Content-Disposition: inline Content-Transfer-Encoding: 7bit Michael Nguyen writes: > A13 ACL SET (INBOX.*) user=postmaster acdilrsw > * RIGHTS-INFO "INBOX.UNVERIFIED" "owner" al c e i p r s t w x > ... > A13 OK ACL SET completed. > A14 list (acl) "" INBOX.* > * LIST (\HasNoChildren) "." "INBOX.UNVERIFIED" (("ACL" (("owner" > "acdilrsw")))) > ... > > Could umm...someone help me on the syntax for this? :-) That is, the > syntax I'd use to give postmaster access to all folders? ACL SET replaces all existing ACLs on a folder with the ACL list specified by the ACL SET command. Courier requires that "owner" must always have "al" rights on its own folder. Your replacement ACL list did not specify "al" rights for "owner", and was rejected. That's what the RIGHTS-INFO response meant. Furthermore, you probably want to set ACLs for both INBOX, and its subfolders, so you should be doing something like: A13 ACL SET (INBOX INBOX.*) user=postmaster acdilrsw owner acdilrsw Of course, the user can always remove postmaster's rights with any IMAP ACL-capable client. The above can be done programmatically, by linking against Courier's libraries. The maildiracl command line tool is just a small wrapper for various maildir_aclt() functions. It's probably more clean to use maildir_list() to enumerate all folders, including INBOX, then use maildir_aclt() to initialize their ACLs. --=_mimegpg-commodore.email-scan.com-15761-1109374951-0005 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQBCH7fox9p3GYHlUOIRAt2uAJoDoR5elkCX2Ga2N2aXvC iqCKg/6gCfVcS8 M3LIiSAgcjdj+7Pknj7amfg= =AeuN -----END PGP SIGNATURE----- --=_mimegpg-commodore.email-scan.com-15761-1109374951-0005-- ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/.../courier-users |