summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/Handlers/Cleanse.py2
-rw-r--r--Mailman/Handlers/CookHeaders.py2
-rw-r--r--Mailman/Handlers/Scrubber.py2
-rw-r--r--Mailman/app/archiving.py4
-rw-r--r--setup.py2
5 files changed, 6 insertions, 6 deletions
diff --git a/Mailman/Handlers/Cleanse.py b/Mailman/Handlers/Cleanse.py
index 05d8b5d3b..bf25a4591 100644
--- a/Mailman/Handlers/Cleanse.py
+++ b/Mailman/Handlers/Cleanse.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2007 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-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
diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py
index 0f558753a..4797de62b 100644
--- a/Mailman/Handlers/CookHeaders.py
+++ b/Mailman/Handlers/CookHeaders.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2007 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-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
diff --git a/Mailman/Handlers/Scrubber.py b/Mailman/Handlers/Scrubber.py
index e5bb13778..fb1b6e602 100644
--- a/Mailman/Handlers/Scrubber.py
+++ b/Mailman/Handlers/Scrubber.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-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
diff --git a/Mailman/app/archiving.py b/Mailman/app/archiving.py
index 5e118b0f9..febd8b4d5 100644
--- a/Mailman/app/archiving.py
+++ b/Mailman/app/archiving.py
@@ -18,7 +18,7 @@
"""Application level archiving support."""
__all__ = [
- 'StockArchiver',
+ 'Pipermail',
'get_archiver',
]
__metaclass__ = type
@@ -34,7 +34,7 @@ from Mailman.interfaces import IArchiver
-class StockArchiver:
+class Pipermail:
"""The stock Pipermail archiver."""
implements(IArchiver)
diff --git a/setup.py b/setup.py
index 0fb8b84f9..f0c923aea 100644
--- a/setup.py
+++ b/setup.py
@@ -84,7 +84,7 @@ Any other spelling is incorrect.""",
'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:StockArchiver',
+ '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',