ACL

There are 3 entries for the tag ACL

5 PowerShell Oneliners to Manage IMAP Permissions

You can manage user permissions in Exchange and other mail servers with the same commands by using the IMAP protocol instead of server-specific tools. Here is how! Jumping right in, these all use get-imap and set-imap from NetCmdlets: #1 – Get ACL Here’s a one-liner to get the ACL for a specific folder in an account. In this particular case, my main INBOX has a subfolder named RESUMES, and I want to see who has what permissions to this folder. PS C:\> get-imap -server $mymailserver -cred $mycred...

Posted On Thursday, June 04, 2009 11:11 AM | Feedback (0)

IMAP ACL Manager v2

I uploaded a new version of the IMAP Access Control List Manager today. This new version adds support for SSL/TLS implicit and explicit connections, CRAM-MD5 and NTLM authentication, an IMAP communication log, and a few other minor and cosmetic changes. Technorati Tags: IMAP, IMAP ACL, ACL...

Posted On Tuesday, June 24, 2008 1:41 PM | Feedback (0)

Managing IMAP access control permissions from Windows PowerShell

Setting access control lists on IMAP servers is a pain. But here's how you can do it very easily with the get/set-imap cmdlets included in NetCmdlets. Retrieve the access control list of my Inbox from the IMAP server, by specifying the -acl flag parameter: PS C:\> get-imap -server 1.2.3.4 -user lance -password mypass -acl Mailbox Rights User ------- ------ ---- Inbox lrswipcda lance PS C:\> Now the access control list for a specific folder: PS C:\> get-imap -server 1.2.3.4 -user lance -password...

Posted On Thursday, May 31, 2007 5:06 PM | Feedback (0)

Copyright © Lance Robinson

Design by Bartosz Brzezinski

Design by Phil Haack Based On A Design By Bartosz Brzezinski