summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2012-03-05 13:03:34 -0500
committerBarry Warsaw2012-03-05 13:03:34 -0500
commitf44d4e86d6c43f90268fcf3e0636212faf09578d (patch)
treeb406e43c452adef6f69a1cf6c62f4c2e381a93bc
parentf4b98f8b8e8b9fdcab8c352019f09b1469c93b24 (diff)
downloadmailman-f44d4e86d6c43f90268fcf3e0636212faf09578d.tar.gz
mailman-f44d4e86d6c43f90268fcf3e0636212faf09578d.tar.zst
mailman-f44d4e86d6c43f90268fcf3e0636212faf09578d.zip
-rw-r--r--src/mailman/docs/NEWS.rst2
-rw-r--r--src/mailman/mta/base.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst
index 588642085..6e9877ad5 100644
--- a/src/mailman/docs/NEWS.rst
+++ b/src/mailman/docs/NEWS.rst
@@ -29,6 +29,8 @@ Architecture
used in welcome and goodbye messages, as well as regular and digest headers
and footers, and supports both language and mailing list specifications.
E.g. mailman:///test@example.com/it/welcome.txt
+ * $user_password is no longer supported as a placeholder in headers and
+ footers.
Database
--------
diff --git a/src/mailman/mta/base.py b/src/mailman/mta/base.py
index 7873d66e9..8068eaec1 100644
--- a/src/mailman/mta/base.py
+++ b/src/mailman/mta/base.py
@@ -139,7 +139,6 @@ class IndividualDelivery(BaseDelivery):
def __init__(self):
"""See `BaseDelivery`."""
- #
super(IndividualDelivery, self).__init__()
self.callbacks = []