diff options
Diffstat (limited to 'Mailman/constants.py')
| -rw-r--r-- | Mailman/constants.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Mailman/constants.py b/Mailman/constants.py index 0933d7713..fcf5e9678 100644 --- a/Mailman/constants.py +++ b/Mailman/constants.py @@ -65,3 +65,13 @@ class SystemDefaultPreferences(object): receive_own_postings = True delivery_mode = DeliveryMode.regular delivery_status = DeliveryStatus.enabled + + + +class ReplyToMunging(Enum): + # The Reply-To header is passed through untouched + no_munging = 0 + # The mailing list's posting address is appended to the Reply-To header + point_to_list = 1 + # An explicit Reply-To header is added + explicit_header = 2 |
