summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBarry Warsaw2010-04-04 19:13:50 -0400
committerBarry Warsaw2010-04-04 19:13:50 -0400
commitf4b670ae2eac318b53f5b2880367f403ce5353bc (patch)
tree69eb21752f66a6b8390338ee2cd003861119e253 /src
parent9f65b731b4947cdd99ac7ba5824b960d8c6b45a3 (diff)
downloadmailman-f4b670ae2eac318b53f5b2880367f403ce5353bc.tar.gz
mailman-f4b670ae2eac318b53f5b2880367f403ce5353bc.tar.zst
mailman-f4b670ae2eac318b53f5b2880367f403ce5353bc.zip
Diffstat (limited to 'src')
-rw-r--r--src/mailman/commands/cli_import.py67
-rw-r--r--src/mailman/commands/docs/import.txt26
2 files changed, 93 insertions, 0 deletions
diff --git a/src/mailman/commands/cli_import.py b/src/mailman/commands/cli_import.py
new file mode 100644
index 000000000..74bd59aea
--- /dev/null
+++ b/src/mailman/commands/cli_import.py
@@ -0,0 +1,67 @@
+# Copyright (C) 2010 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/>.
+
+"""Importing list data into Mailman 3."""
+
+from __future__ import absolute_import, unicode_literals
+
+__metaclass__ = type
+__all__ = [
+ 'Import21',
+ ]
+
+
+from zope.component import getUtility
+from zope.interface import implements
+
+from mailman.core.i18n import _
+from mailman.interfaces.command import ICLISubCommand
+from mailman.interfaces.listmanager import IListManager
+
+
+
+class Import21:
+ """Import Mailman 2.1 list data."""
+
+ implements(ICLISubCommand)
+
+ name = 'import21'
+
+ def add(self, parser, command_parser):
+ """See `ICLISubCommand`."""
+ self.parser = parser
+ # Required positional argument.
+ command_parser.add_argument(
+ 'listname', metavar='LISTNAME', nargs=1,
+ help=_("""\
+ The 'fully qualified list name', i.e. the posting address of the
+ mailing list to inject the message into."""))
+
+ def process(self, args):
+ """See `ICLISubCommand`."""
+ # Could be None or sequence of length 0.
+ if args.listname is None:
+ self.parser.error(_('List name is required'))
+ return
+ assert len(args.listname) == 1, (
+ 'Unexpected positional arguments: %s' % args.listname)
+ fqdn_listname = args.listname[0]
+ mlist = getUtility(IListManager).get(fqdn_listname)
+ if mlist is None:
+ self.parser.error(_('No such list: $fqdn_listname'))
+ return
+
diff --git a/src/mailman/commands/docs/import.txt b/src/mailman/commands/docs/import.txt
new file mode 100644
index 000000000..c2a438e06
--- /dev/null
+++ b/src/mailman/commands/docs/import.txt
@@ -0,0 +1,26 @@
+===================
+Importing list data
+===================
+
+If you have the config.pck file for a version 2.1 mailing list, you can import
+that into an existing mailing list in Mailman 3.0.
+
+ >>> from mailman.commands.cli_import import Import21
+ >>> command = Import21()
+
+ >>> class FakeArgs:
+ ... listname = None
+
+ >>> class FakeParser:
+ ... def error(self, message):
+ ... print message
+ >>> command.parser = FakeParser()
+
+You must specify the mailing list you are importing into, and it must exist.
+
+ >>> command.process(FakeArgs)
+ List name is required
+
+ >>> FakeArgs.listname = ['import@example.com']
+ >>> command.process(FakeArgs)
+ No such list: import@example.com