diff options
author | Mark Sapiro <mark@msapiro.net> | 2019-11-08 13:04:52 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2019-11-08 13:04:52 -0800 |
commit | f40c586ab27bf0a1fb7d720b150310f26b0c5e5e (patch) | |
tree | 3e218cbffe86a222f2baf129b17890872846aad1 /Mailman/Gui | |
parent | 266227cbf41048261a8d9ad213434bbc4f9dff3a (diff) | |
download | mailman2-f40c586ab27bf0a1fb7d720b150310f26b0c5e5e.tar.gz mailman2-f40c586ab27bf0a1fb7d720b150310f26b0c5e5e.tar.xz mailman2-f40c586ab27bf0a1fb7d720b150310f26b0c5e5e.zip |
Implement new drop_cc switch.
Diffstat (limited to 'Mailman/Gui')
-rw-r--r-- | Mailman/Gui/General.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Mailman/Gui/General.py b/Mailman/Gui/General.py index dfde6309..86ddf933 100644 --- a/Mailman/Gui/General.py +++ b/Mailman/Gui/General.py @@ -505,6 +505,19 @@ class General(GUIBase): here.""")) ) + # Do we munge Cc: in AvoidDuplicates.py + rtn.append( + ('drop_cc', mm_cfg.Radio, + (_('No'), _('Yes')), 0, + _('Should duplicate avoidance drop addresses from Cc: headers'), + _("""The process which avoids sending a list copy of a message to + a member who is also directly addressed in To: or Cc: can drop + the address from Cc: to avoid growing a long Cc: list in long + threads. This can be undesirable as it can break DKIM + signatures and possibly cause confusion. To avoid changes to + Cc: headers, set this to No.""")) + ) + # Discard held messages after this number of days rtn.append( ('max_days_to_hold', mm_cfg.Number, 7, 0, |