diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-08-07 12:34:03 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-08-07 12:34:03 +0100 |
commit | 3b33a5031b05ae2ce7918202d080bdd6d8c64380 (patch) | |
tree | c282b8896801ad23b05f974c953573b905efe58b /pykolab/cli/cmd_set_mailbox_acl.py | |
parent | 308a4de06956e31584e458f78907656a28649da4 (diff) | |
download | pykolab-3b33a5031b05ae2ce7918202d080bdd6d8c64380.tar.gz |
Add new command-line utility commands lam, sam and dam (list, set and delete ACLs entries on mailboxes)
Diffstat (limited to 'pykolab/cli/cmd_set_mailbox_acl.py')
-rw-r--r-- | pykolab/cli/cmd_set_mailbox_acl.py | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/pykolab/cli/cmd_set_mailbox_acl.py b/pykolab/cli/cmd_set_mailbox_acl.py new file mode 100644 index 0000000..8ba4567 --- /dev/null +++ b/pykolab/cli/cmd_set_mailbox_acl.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +# Copyright 2010-2012 Kolab Systems AG (http://www.kolabsys.com) +# +# Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen a kolabsys.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 3 or, at your option, any later version +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# + +import sys + +import commands + +import pykolab + +from pykolab.imap import IMAP +from pykolab.translate import _ +from pykolab import utils + +log = pykolab.getLogger('pykolab.cli') +conf = pykolab.getConf() + +def __init__(): + commands.register('set_mailbox_acl', execute, description=description(), aliases=['sam']) + +def description(): + return """Set an ACL for a identifier on a folder.""" + +def execute(*args, **kw): + try: + folder = conf.cli_args.pop(0) + try: + identifier = conf.cli_args.pop(0) + try: + acl = conf.cli_args.pop(0) + except IndexError, errmsg: + acl = utils.ask_question(_("ACI Permissions")) + + except IndexError, errmsg: + identifier = utils.ask_question(_("ACI Subject")) + acl = utils.ask_question(_("ACI Permissions")) + + except IndexError, errmsg: + folder = utils.ask_question(_("Folder name")) + identifier = utils.ask_question(_("ACI Subject")) + acl = utils.ask_question(_("ACI Permissions")) + + if len(folder.split('@')) > 1: + domain = folder.split('@')[1] + else: + domain = conf.get('kolab', 'primary_domain') + + imap = IMAP() + imap.connect(domain=domain) + + if not imap.has_folder(folder): + print >> sys.stderr, _("No such folder %r") % (folder) + + else: + folders = imap.lm(folder) + for folder in folders: + imap.set_acl(folder, identifier, acl) |