~joostvb/mailman/2.1-pgp-smime

« back to all changes in this revision

Viewing changes to Mailman/Defaults.py.in

  • Committer: Joost van Baal
  • Date: 2009-09-05 10:22:03 UTC
  • mfrom: (414.13.64 2.1)
  • Revision ID: joostvb-bzr@mdcc.cx-20090905102203-ajd5inpygrwypzzd
merging with upstream: 2.1.13 is coming

Show diffs side-by-side

added added

removed removed

Lines of Context:
683
683
# From: local_part@host
684
684
# into
685
685
# To: "local_part" <local_part@host>
686
 
# when replying, so we skip everything up to '<' if any.
687
 
VERP_CONFIRM_REGEXP = r'^(.*<)?(?P<addr>[^+]+?)\+(?P<cookie>[^@]+)@.*$'
 
686
# or even
 
687
# To: "local_part@host" <local_part@host>
 
688
# and may even fold the header when replying, so we skip everything up to '<'
 
689
# if any and include ($s) so dot will match the newline in a folded header.
 
690
VERP_CONFIRM_REGEXP = r'(?s)^(.*<)?(?P<addr>.+)\+(?P<cookie>[^@+]+)@.*$'
688
691
 
689
692
# Set this to Yes to enable VERP-like (more user friendly) confirmations
690
693
VERP_CONFIRMATIONS = No