diff options
| author | Barry Warsaw | 2009-11-28 18:51:13 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-11-28 18:51:13 -0500 |
| commit | ebb3ead38ca35fc053f6b4df3919499c266636ed (patch) | |
| tree | ac308c19163fe6a1e7a39434c8ae5e43a8ab9296 /src/mailman/commands/cli_aliases.py | |
| parent | 5f799a91a16e54f8d7f6333b49a7674b92cc204a (diff) | |
| download | mailman-ebb3ead38ca35fc053f6b4df3919499c266636ed.tar.gz mailman-ebb3ead38ca35fc053f6b4df3919499c266636ed.tar.zst mailman-ebb3ead38ca35fc053f6b4df3919499c266636ed.zip | |
Diffstat (limited to 'src/mailman/commands/cli_aliases.py')
| -rw-r--r-- | src/mailman/commands/cli_aliases.py | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/mailman/commands/cli_aliases.py b/src/mailman/commands/cli_aliases.py new file mode 100644 index 000000000..088efc1bf --- /dev/null +++ b/src/mailman/commands/cli_aliases.py @@ -0,0 +1,64 @@ +# Copyright (C) 2009 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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, either version 3 of the License, or (at your option) +# any later version. +# +# GNU Mailman 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 General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + +"""Generate Mailman alias files for your MTA.""" + +from __future__ import absolute_import, unicode_literals + +__metaclass__ = type +__all__ = [ + 'Aliases', + ] + + +import sys + +from zope.interface import implements + +from mailman.config import config +from mailman.core.i18n import _ +from mailman.interfaces.command import ICLISubCommand +from mailman.utilities.modules import call_name + + + +class Aliases: + """Regenerate the aliases appropriate for your MTA.""" + + implements(ICLISubCommand) + + name = 'aliases' + + def add(self, parser, command_parser): + """See `ICLISubCommand`.""" + command_parser.add_argument( + '-o', '--output', + action='store', help=_("""\ + File to send the output to. If not given, a file in $VAR/data is + used. The argument can be '-' to use standard output..""")) + + def process(self, args): + """See `ICLISubCommand`.""" + output = None + if args.output == '-': + output = sys.stdout + elif args.output is None: + output = None + else: + output = args.output + # Call the MTA-specific regeneration method. + call_name(config.mta.incoming).regenerate(output) |
