diff options
| author | bwarsaw | 2001-05-25 19:05:48 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-05-25 19:05:48 +0000 |
| commit | 32438bd788ae6494048a00b2b40dd7120e7400eb (patch) | |
| tree | 7e20d20976ba9719104e463606e132c93dbc1095 | |
| parent | 262836156f2f34a2a7f9123ceba79d8af3a8be98 (diff) | |
| download | mailman-32438bd788ae6494048a00b2b40dd7120e7400eb.tar.gz mailman-32438bd788ae6494048a00b2b40dd7120e7400eb.tar.zst mailman-32438bd788ae6494048a00b2b40dd7120e7400eb.zip | |
| -rw-r--r-- | Mailman/Cgi/handle_opts.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mailman/Cgi/handle_opts.py b/Mailman/Cgi/handle_opts.py index 1ec5bbd4e..f6d1d8e9c 100644 --- a/Mailman/Cgi/handle_opts.py +++ b/Mailman/Cgi/handle_opts.py @@ -275,6 +275,8 @@ def process_form(mlist, user, doc): disable_mail = getval('disablemail', useropt(user, mm_cfg.DisableDelivery)) conceal = getval('conceal', useropt(user, mm_cfg.ConcealSubscription)) + passwdremind = getval('passwdremind', + useropt(user, mm_cfg.SuppressPasswordReminder)) if not form.has_key("digpw"): PrintResults(mlist, operation, doc, @@ -320,6 +322,8 @@ def process_form(mlist, user, doc): mlist.SetUserOption(user, mm_cfg.DontReceiveOwnPosts, dont_receive) mlist.SetUserOption(user, mm_cfg.AcknowledgePosts, ack_posts) mlist.SetUserOption(user, mm_cfg.DisableMime, mime) + mlist.SetUserOption(user, mm_cfg.SuppressPasswordReminder, + passwdremind) msg = _('You have successfully set your options.') try: mlist.SetUserDigest(user, digest_value) |
