diff options
| author | bwarsaw | 2001-08-03 21:45:46 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-08-03 21:45:46 +0000 |
| commit | aed5166c414730658332e77e8b5dd0deb7ca4b39 (patch) | |
| tree | f2fe7ae1be4f957601bc4f7f492f3458c5116f02 | |
| parent | a57a7775d6860eb98c85cedc8a604f1dfc782664 (diff) | |
| download | mailman-aed5166c414730658332e77e8b5dd0deb7ca4b39.tar.gz mailman-aed5166c414730658332e77e8b5dd0deb7ca4b39.tar.zst mailman-aed5166c414730658332e77e8b5dd0deb7ca4b39.zip | |
InitVars(): Initialize the `personalize' list attribute. Defaults to 0.
| -rw-r--r-- | Mailman/MailList.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index 07c1a1a08..59bd49152 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -299,6 +299,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, self.preferred_language = mm_cfg.DEFAULT_SERVER_LANGUAGE # Analogs to these are initted in Digester.InitVars self.nondigestable = mm_cfg.DEFAULT_NONDIGESTABLE + self.personalize = 0 # BAW: This should really be set in SecurityManager.InitVars() self.password = crypted_password |
