~msapiro/mailman/topics

« back to all changes in this revision

Viewing changes to Mailman/Defaults.py.in

  • Committer: Mark Sapiro
  • Date: 2009-09-14 01:24:18 UTC
  • mfrom: (1006.1.71 2.2)
  • Revision ID: mark@msapiro.net-20090914012418-2qngbqwc28fe278a
Merged changes from 2.2 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
663
663
# From: local_part@host
664
664
# into
665
665
# To: "local_part" <local_part@host>
666
 
# when replying, so we skip everything up to '<' if any.
667
 
VERP_CONFIRM_REGEXP = r'^(.*<)?(?P<addr>[^+]+?)\+(?P<cookie>[^@]+)@.*$'
 
666
# or even
 
667
# To: "local_part@host" <local_part@host>
 
668
# and may even fold the header when replying, so we skip everything up to '<'
 
669
# if any and include ($s) so dot will match the newline in a folded header.
 
670
VERP_CONFIRM_REGEXP = r'(?s)^(.*<)?(?P<addr>.+)\+(?P<cookie>[^@+]+)@.*$'
668
671
 
669
672
# Set this to Yes to enable VERP-like (more user friendly) confirmations
670
673
VERP_CONFIRMATIONS = No