diff options
| author | klm | 1999-04-02 12:53:04 +0000 |
|---|---|---|
| committer | klm | 1999-04-02 12:53:04 +0000 |
| commit | 3a43470cfc279186fdf5328490536fa18b7791a8 (patch) | |
| tree | 9bec7acd3536043b70fd4e51a8f9fc665c851b64 | |
| parent | 141e5a931319e74c2ab33afd00d641a84fe37756 (diff) | |
| download | mailman-3a43470cfc279186fdf5328490536fa18b7791a8.tar.gz mailman-3a43470cfc279186fdf5328490536fa18b7791a8.tar.zst mailman-3a43470cfc279186fdf5328490536fa18b7791a8.zip | |
Thanks to Gerhard Gonter, who corrected the logic intended to obtain a
public list to serve as the sender of the password notifications.
(This arrangement is still ad-hoc, as my previous mailpasswds checkin
message suggests.)
| -rwxr-xr-x | cron/mailpasswds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron/mailpasswds b/cron/mailpasswds index 2f63a6872..50bd021e9 100755 --- a/cron/mailpasswds +++ b/cron/mailpasswds @@ -93,7 +93,7 @@ def main(args): a_public_list = None for name in Utils.list_names(): list = MailList.MailList(name, lock = 0) - if not a_public_list and not list.advertised: + if not a_public_list and list.advertised: a_public_list = list list_name = list.real_name umbrella_list = list.umbrella_list |
