summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBarry Warsaw2008-01-14 23:24:43 -0500
committerBarry Warsaw2008-01-14 23:24:43 -0500
commit2efcac1ef273b407668826c587c15a0fd8ec3d3c (patch)
tree13d435fb62a24e5c0fb8928721c61be434e11bc7 /setup.py
parent0bf7659000d2736839919c1ac2adc99b9bcb1b46 (diff)
parent7c5b4d64df6532548742460d405a8a64e35b22c2 (diff)
downloadmailman-2efcac1ef273b407668826c587c15a0fd8ec3d3c.tar.gz
mailman-2efcac1ef273b407668826c587c15a0fd8ec3d3c.tar.zst
mailman-2efcac1ef273b407668826c587c15a0fd8ec3d3c.zip
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e35202b06..437f6ba2c 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007 Barry A. Warsaw
+# Copyright (C) 2007-2008 by the Free Software Foundation, Inc.
#
# 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
@@ -83,7 +83,10 @@ Any other spelling is incorrect.""",
entry_points = {
'console_scripts': list(scripts),
'setuptools.file_finders': 'bzr = setuptools_bzr:find_files_for_bzr',
+ # Entry point for plugging in different database backends.
+ 'mailman.archiver' : 'stock = Mailman.app.archiving:Pipermail',
'mailman.database' : 'stock = Mailman.database:StockDatabase',
+ 'mailman.mta' : 'stock = Mailman.MTA:Manual',
'mailman.styles' : 'default = Mailman.app.styles:DefaultStyle',
'mailman.mta' : 'stock = Mailman.MTA:Manual',
'mailman.rules' : 'default = Mailman.rules:initialize',