summaryrefslogtreecommitdiff
path: root/mailman/commands/join.py
diff options
context:
space:
mode:
Diffstat (limited to 'mailman/commands/join.py')
-rw-r--r--mailman/commands/join.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mailman/commands/join.py b/mailman/commands/join.py
index 1cbf394e0..bfc3435e7 100644
--- a/mailman/commands/join.py
+++ b/mailman/commands/join.py
@@ -68,8 +68,9 @@ example:
return ContinueProcessing.no
password = MakeRandomPassword()
try:
- confirm_add_member(mlist, address, realname, password,
- delivery_mode, mlist.preferred_language)
+ validate_subscription(mlist, address)
+ confirm_subscription(mlist, address, realname, password,
+ delivery_mode, mlist_preferred_language)
except XXX:
pass
print >> results, self.name, address, \