diff options
| author | bwarsaw | 2001-07-20 00:29:49 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-07-20 00:29:49 +0000 |
| commit | 6580803e77476772353d94ca9f62b9992a374139 (patch) | |
| tree | f8fc09eaa346b0343836228ac0e6f06337d9ef2c /Mailman/ListAdmin.py | |
| parent | 4e142725c079a90c821551cda7f110db6bfdb9fb (diff) | |
| download | mailman-6580803e77476772353d94ca9f62b9992a374139.tar.gz mailman-6580803e77476772353d94ca9f62b9992a374139.tar.zst mailman-6580803e77476772353d94ca9f62b9992a374139.zip | |
Diffstat (limited to 'Mailman/ListAdmin.py')
| -rw-r--r-- | Mailman/ListAdmin.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Mailman/ListAdmin.py b/Mailman/ListAdmin.py index 4863742f8..f92491bf4 100644 --- a/Mailman/ListAdmin.py +++ b/Mailman/ListAdmin.py @@ -363,7 +363,14 @@ class ListAdmin: # subscribe assert value == mm_cfg.SUBSCRIBE try: - self.ApprovedAddMember(addr, password, digest, lang) + class UserDesc: pass + userdesc = UserDesc() + userdesc.address = addr + userdesc.fullname = fullname + userdesc.password = password + userdesc.digest = digest + userdesc.lang = lang + self.ApprovedAddMember(userdesc) except Errors.MMAlreadyAMember: # User has already been subscribed, after sending the request pass |
