summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 = []