~futatuki/mailman/2.1-listinfo-overview-client-lang

« back to all changes in this revision

Viewing changes to Mailman/Defaults.py.in

  • Committer: Yasuhito FUTATSUKI at POEM
  • Date: 2017-06-06 10:34:51 UTC
  • mfrom: (1654.3.35 2.1)
  • Revision ID: futatuki@poem.co.jp-20170606103451-nmhlvj5u86s9maxw
Merge lp:mailman/2.1 up to rev 1713

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- python -*-
2
2
 
3
 
# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
 
3
# Copyright (C) 1998-2017 by the Free Software Foundation, Inc.
4
4
#
5
5
# This program is free software; you can redistribute it and/or
6
6
# modify it under the terms of the GNU General Public License
185
185
# omitted it defaults to urlhost with the first name stripped off, e.g.
186
186
#
187
187
# add_virtualhost('www.dom.ain')
188
 
# VIRTUAL_HOST['www.dom.ain']
 
188
# VIRTUAL_HOSTS['www.dom.ain']
189
189
# ==> 'dom.ain'
190
190
#
191
191
def add_virtualhost(urlhost, emailhost=None):
641
641
# 3 -> always remove, rename and preserve original DKIM headers.
642
642
REMOVE_DKIM_HEADERS = No
643
643
 
 
644
# If the following is set to a non-empty string, that string is the name of a
 
645
# header that will be added to personalized and VERPed deliveries with value
 
646
# equal to the base64 encoding of the recipient's email address.  This is
 
647
# intended to enable identification of the recipient otherwise redacted from
 
648
# "spam report" feedback loop messages.  For example, if
 
649
# RCPT_BASE64_HEADER_NAME = 'X-Mailman-R-Data'
 
650
# a header like
 
651
# X-Mailman-R-Data: dXNlckBleGFtcGxlLmNvbQo=
 
652
# will be added to messages sent to user@@example.com.
 
653
RCPT_BASE64_HEADER_NAME = ''
 
654
 
644
655
# All `normal' messages which are delivered to the entire list membership go
645
656
# through this pipeline of handler modules.  Lists themselves can override the
646
657
# global pipeline by defining a `pipeline' attribute.
678
689
OWNER_PIPELINE = [
679
690
    'SpamDetect',
680
691
    'Replybot',
681
 
    'CleanseDKIM',
682
692
    'OwnerRecips',
683
693
    'ToOutgoing',
684
694
    ]
1100
1110
DEFAULT_SUBJECT_PREFIX  = "[%(real_name)s] "
1101
1111
# DEFAULT_SUBJECT_PREFIX = "[%(real_name)s %%d]" # for numbering
1102
1112
DEFAULT_MSG_HEADER = ""
1103
 
DEFAULT_MSG_FOOTER = """_______________________________________________
 
1113
DEFAULT_MSG_FOOTER = """-- 
1104
1114
%(real_name)s mailing list
1105
1115
%(real_name)s@%(host_name)s
1106
1116
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
1410
1420
# Will list be available in digested form?
1411
1421
DEFAULT_DIGESTABLE = Yes
1412
1422
DEFAULT_DIGEST_HEADER = ""
1413
 
DEFAULT_DIGEST_FOOTER = DEFAULT_MSG_FOOTER
 
1423
DEFAULT_DIGEST_FOOTER = """%(real_name)s mailing list
 
1424
%(real_name)s@%(host_name)s
 
1425
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
 
1426
"""
1414
1427
 
1415
1428
DEFAULT_DIGEST_IS_DEFAULT = No
1416
1429
DEFAULT_MIME_IS_DEFAULT_DIGEST = No