diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2019-11-11 21:15:57 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2019-11-11 21:15:57 +0900 |
commit | 9cf674e0573c1c5f5cbb914a0626ab89f2f00707 (patch) | |
tree | 4334aed7acd8001fd82c07104de97640640f1460 /Mailman/Gui/General.py | |
parent | 436c7209b6abc78e9f294535cee54e187d6f4dca (diff) | |
parent | 74f050981cd4dca57451ea74a1ec4a8b3dba153f (diff) | |
download | mailman2-9cf674e0573c1c5f5cbb914a0626ab89f2f00707.tar.gz mailman2-9cf674e0573c1c5f5cbb914a0626ab89f2f00707.tar.xz mailman2-9cf674e0573c1c5f5cbb914a0626ab89f2f00707.zip |
merge lp:mailman/2.1 up to rev 1827
Diffstat (limited to 'Mailman/Gui/General.py')
-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, |