diff options
| author | Barry Warsaw | 2008-08-25 20:59:39 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-08-25 20:59:39 -0400 |
| commit | 85295b4b708a3e24583c338cd2f4c70133de18ed (patch) | |
| tree | bcbfcddc5cdb5bd04416ca513594d20b5a92ff71 /mailman/commands/join.py | |
| parent | 1822c649436477bbfc81ab036933529abe83bbf2 (diff) | |
| download | mailman-85295b4b708a3e24583c338cd2f4c70133de18ed.tar.gz mailman-85295b4b708a3e24583c338cd2f4c70133de18ed.tar.zst mailman-85295b4b708a3e24583c338cd2f4c70133de18ed.zip | |
Diffstat (limited to 'mailman/commands/join.py')
| -rw-r--r-- | mailman/commands/join.py | 5 |
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, \ |
