diff options
| author | bwarsaw | 2002-04-19 15:55:29 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-04-19 15:55:29 +0000 |
| commit | 7e2b6e610ef4683c664d7054e7d54606b12d9ffb (patch) | |
| tree | 5f994a3ab47dc1cf7f4bf77852a865de846cdc07 /Mailman/Gui/General.py | |
| parent | be0c1e6d5ec4d397f8443f56fe2c88f5ad475b4f (diff) | |
| download | mailman-7e2b6e610ef4683c664d7054e7d54606b12d9ffb.tar.gz mailman-7e2b6e610ef4683c664d7054e7d54606b12d9ffb.tar.zst mailman-7e2b6e610ef4683c664d7054e7d54606b12d9ffb.zip | |
GetConfigInfo(): Add include_list_post_header configuration variable.
Diffstat (limited to 'Mailman/Gui/General.py')
| -rw-r--r-- | Mailman/Gui/General.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Mailman/Gui/General.py b/Mailman/Gui/General.py index 52aa31ce3..51a9002df 100644 --- a/Mailman/Gui/General.py +++ b/Mailman/Gui/General.py @@ -384,6 +384,22 @@ class General(GUIBase): this is not recommended (and in fact, your ability to disable these headers may eventually go away).""")) ) + # Suppression of List-Post: headers + rtn.append( + ('include_list_post_header', mm_cfg.Radio, + (_('No'), _('Yes')), 0, + _('Should postings include the <tt>List-Post:</tt> header?'), + _("""The <tt>List-Post:</tt> header is one of the headers + recommended by + <a href="http://www.faqs.org/rfc/rfc2369.html">RFC 2369</a>. + However for some <em>announce-only</em> mailing lists, only a + very select group of people are allowed to post to the list; the + general membership is usually not allowed to post. For lists of + this nature, the <tt>List-Post:</tt> header is misleading. + Select <em>No</em> to disable the inclusion of this header. (This + does not affect the inclusion of the other <tt>List-*:</tt> + headers.)""")) + ) return rtn |
