diff options
| author | viega | 1998-10-11 10:02:34 +0000 |
|---|---|---|
| committer | viega | 1998-10-11 10:02:34 +0000 |
| commit | ebafc3b861d8626bb548cb7fdfa2f4235f4870bc (patch) | |
| tree | 09a833f6fee78b7194c9a4734f6fa51ee6f40acd /Mailman/HTMLFormatter.py | |
| parent | 734e659191d58fc6cdf0651bfc75635a292803c9 (diff) | |
| download | mailman-ebafc3b861d8626bb548cb7fdfa2f4235f4870bc.tar.gz mailman-ebafc3b861d8626bb548cb7fdfa2f4235f4870bc.tar.zst mailman-ebafc3b861d8626bb548cb7fdfa2f4235f4870bc.zip | |
Diffstat (limited to 'Mailman/HTMLFormatter.py')
| -rw-r--r-- | Mailman/HTMLFormatter.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index bc6a41aab..573fe2cdc 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -153,16 +153,24 @@ class HTMLFormatter: "Tailor to approval, roster privacy, and web vetting requirements." msg = "" also = "" - if self.web_subscribe_requires_confirmation: + if self.subscribe_policy == 1: msg = msg + ("You will be sent email requesting confirmation, " "to prevent others from gratuitously subscribing " "you. ") - if not self.open_subscribe: + if self.subscribe_policy == 2: msg = msg + ("This is a closed list, which means your " "subscription will be held for approval. You will " - "be notified of the administrators decision by " + "be notified of the administrator's decision by " "email. ") also = "also " + if self.subscribe_policy == 3: + msg = msg + ("You will be sent email requesting confirmation, " + "to prevent others from gratuitously subscribing " + "you. Once confirmation is received, your " + "request will be held for approval by the list " + "administrator. You will be notified of the " + "administrator's decision by email. ") + also = "also " if self.private_roster: msg = msg + ("This is %sa private list, which means that " "the members list is not available to non-" |
