summaryrefslogtreecommitdiff
path: root/mailman/mailman.py
blob: a28a414a258bbbef1ebb8fb74567e9d914472671 (plain)
  1. ## "mailman" mailing list configuration settings -*- python -*-
  2. ## captured on Wed May 3 16:25:24 2006
  3. ## General options
  4. #
  5. # Fundamental list characteristics, including descriptive info and basic
  6. # behaviors.
  7. # The capitalization of this name can be changed to make it presentable
  8. # in polite company as a proper noun, or to make an acronym part all
  9. # upper case, etc. However, the name will be advertised as the email
  10. # address (e.g., in subscribe confirmation notices), so it should not be
  11. # otherwise altered. (Email addresses are not case sensitive, but they
  12. # are sensitive to almost everything else :-)
  13. real_name = 'Mailman'
  14. # There are two ownership roles associated with each mailing list. The
  15. # list administrators are the people who have ultimate control over all
  16. # parameters of this mailing list. They are able to change any list
  17. # configuration variable available through these administration web
  18. # pages.
  19. #
  20. # The list moderators have more limited permissions; they are not able
  21. # to change any list configuration variable, but they are allowed to
  22. # tend to pending administration requests, including approving or
  23. # rejecting held subscription requests, and disposing of held postings.
  24. # Of course, the list administrators can also tend to pending requests.
  25. #
  26. # In order to split the list ownership duties into administrators and
  27. # moderators, you must set a separate moderator password, and also
  28. # provide the email addresses of the list moderators. Note that the
  29. # field you are changing here specifies the list administrators.
  30. owner = ['postmaster@bitbase.dk']
  31. # There are two ownership roles associated with each mailing list. The
  32. # list administrators are the people who have ultimate control over all
  33. # parameters of this mailing list. They are able to change any list
  34. # configuration variable available through these administration web
  35. # pages.
  36. #
  37. # The list moderators have more limited permissions; they are not able
  38. # to change any list configuration variable, but they are allowed to
  39. # tend to pending administration requests, including approving or
  40. # rejecting held subscription requests, and disposing of held postings.
  41. # Of course, the list administrators can also tend to pending requests.
  42. #
  43. # In order to split the list ownership duties into administrators and
  44. # moderators, you must set a separate moderator password, and also
  45. # provide the email addresses of the list moderators in this section.
  46. # Note that the field you are changing here specifies the list
  47. # moderators.
  48. moderator = []
  49. # This description is used when the mailing list is listed with other
  50. # mailing lists, or in headers, and so forth. It should be as succinct
  51. # as you can get it, while still identifying what the list is.
  52. description = ''
  53. # The text will be treated as html except that newlines will be
  54. # translated to <br> - so you can use links, preformatted text, etc, but
  55. # don't put in carriage returns except where you mean to separate
  56. # paragraphs. And review your changes - bad html (like some
  57. # unterminated HTML constructs) can prevent display of the entire
  58. # listinfo page.
  59. info = ''
  60. # This text will be prepended to subject lines of messages posted to the
  61. # list, to distinguish mailing list messages in in mailbox summaries.
  62. # Brevity is premium here, it's ok to shorten long mailing list names to
  63. # something more concise, as long as it still identifies the mailing
  64. # list.
  65. subject_prefix = '[Mailman] '
  66. # Hide the sender of a message, replacing it with the list address
  67. # (Removes From, Sender and Reply-To fields)
  68. #
  69. # legal values are:
  70. # 0 = "No"
  71. # 1 = "Yes"
  72. anonymous_list = 0
  73. # Should any existing Reply-To: header found in the original message be
  74. # stripped? If so, this will be done regardless of whether an explict
  75. # Reply-To: header is added by Mailman or not.
  76. #
  77. # legal values are:
  78. # 0 = "No"
  79. # 1 = "Yes"
  80. first_strip_reply_to = 0
  81. # This option controls what Mailman does to the Reply-To: header in
  82. # messages flowing through this mailing list. When set to Poster, no
  83. # Reply-To: header is added by Mailman, although if one is present in
  84. # the original message, it is not stripped. Setting this value to
  85. # either This list or Explicit address causes Mailman to insert a
  86. # specific Reply-To: header in all messages, overriding the header in
  87. # the original message if necessary (Explicit address inserts the value
  88. # of <a href="?VARHELP=general/reply_to_address">reply_to_address).
  89. #
  90. # There are many reasons not to introduce or override the Reply-To:
  91. # header. One is that some posters depend on their own Reply-To:
  92. # settings to convey their valid return address. Another is that
  93. # modifying Reply-To: makes it much more difficult to send private
  94. # replies. See <a
  95. # href="http://www.unicom.com/pw/reply-to-harmful.html">`Reply-To'
  96. # Munging Considered Harmful for a general discussion of this issue.
  97. # See <a
  98. # href="http://www.metasystema.org/essays/reply-to-useful.mhtml">Reply-To
  99. # Munging Considered Useful for a dissenting opinion.
  100. #
  101. # Some mailing lists have restricted posting privileges, with a parallel
  102. # list devoted to discussions. Examples are `patches' or `checkin'
  103. # lists, where software changes are posted by a revision control system,
  104. # but discussion about the changes occurs on a developers mailing list.
  105. # To support these types of mailing lists, select Explicit address and
  106. # set the Reply-To: address below to point to the parallel list.
  107. #
  108. # legal values are:
  109. # 0 = "Poster"
  110. # 1 = "This list"
  111. # 2 = "Explicit address"
  112. reply_goes_to_list = 0
  113. # This is the address set in the Reply-To: header when the <a
  114. # href="?VARHELP=general/reply_goes_to_list">reply_goes_to_list option
  115. # is set to Explicit address.
  116. #
  117. # There are many reasons not to introduce or override the Reply-To:
  118. # header. One is that some posters depend on their own Reply-To:
  119. # settings to convey their valid return address. Another is that
  120. # modifying Reply-To: makes it much more difficult to send private
  121. # replies. See <a
  122. # href="http://www.unicom.com/pw/reply-to-harmful.html">`Reply-To'
  123. # Munging Considered Harmful for a general discussion of this issue.
  124. # See <a
  125. # href="http://www.metasystema.org/essays/reply-to-useful.mhtml">Reply-To
  126. # Munging Considered Useful for a dissenting opinion.
  127. #
  128. # Some mailing lists have restricted posting privileges, with a parallel
  129. # list devoted to discussions. Examples are `patches' or `checkin'
  130. # lists, where software changes are posted by a revision control system,
  131. # but discussion about the changes occurs on a developers mailing list.
  132. # To support these types of mailing lists, specify the explicit
  133. # Reply-To: address here. You must also specify Explicit address in the
  134. # reply_goes_to_list variable.
  135. #
  136. # Note that if the original message contains a Reply-To: header, it will
  137. # not be changed.
  138. reply_to_address = ''
  139. # Set this to yes when this list is intended to cascade only to other
  140. # mailing lists. When set, meta notices like confirmations and password
  141. # reminders will be directed to an address derived from the member's
  142. # address - it will have the value of "umbrella_member_suffix" appended
  143. # to the member's account name.
  144. #
  145. # legal values are:
  146. # 0 = "No"
  147. # 1 = "Yes"
  148. umbrella_list = 0
  149. # When "umbrella_list" is set to indicate that this list has other
  150. # mailing lists as members, then administrative notices like
  151. # confirmations and password reminders need to not be sent to the member
  152. # list addresses, but rather to the owner of those member lists. In
  153. # that case, the value of this setting is appended to the member's
  154. # account name for such notices. `-owner' is the typical choice. This
  155. # setting has no effect when "umbrella_list" is "No".
  156. umbrella_member_suffix = '-owner'
  157. # Turn this on if you want password reminders to be sent once per month
  158. # to your members. Note that members may disable their own individual
  159. # password reminders.
  160. #
  161. # legal values are:
  162. # 0 = "No"
  163. # 1 = "Yes"
  164. send_reminders = 0
  165. # This value, if any, will be added to the front of the new-subscriber
  166. # welcome message. The rest of the welcome message already describes
  167. # the important addresses and URLs for the mailing list, so you don't
  168. # need to include any of that kind of stuff here. This should just
  169. # contain mission-specific kinds of things, like etiquette policies or
  170. # team orientation, or that kind of thing.
  171. #
  172. # Note that this text will be wrapped, according to the following rules:
  173. # Each paragraph is filled so that no line is longer than 70 characters.
  174. # Any line that begins with whitespace is not filled. A blank line
  175. # separates paragraphs.
  176. #
  177. welcome_msg = ''
  178. # Turn this off only if you plan on subscribing people manually and
  179. # don't want them to know that you did so. This option is most useful
  180. # for transparently migrating lists from some other mailing list manager
  181. # to Mailman.
  182. #
  183. # legal values are:
  184. # 0 = "No"
  185. # 1 = "Yes"
  186. send_welcome_msg = 1
  187. # Text sent to people leaving the list. If empty, no special text will
  188. # be added to the unsubscribe message.
  189. goodbye_msg = ''
  190. # Send goodbye message to members when they are unsubscribed?
  191. #
  192. # legal values are:
  193. # 0 = "No"
  194. # 1 = "Yes"
  195. send_goodbye_msg = 1
  196. # List moderators (and list administrators) are sent daily reminders of
  197. # requests pending approval, like subscriptions to a moderated list, or
  198. # postings that are being held for one reason or another. Setting this
  199. # option causes notices to be sent immediately on the arrival of new
  200. # requests as well.
  201. #
  202. # legal values are:
  203. # 0 = "No"
  204. # 1 = "Yes"
  205. admin_immed_notify = 1
  206. # Should administrator get notices of subscribes and unsubscribes?
  207. #
  208. # legal values are:
  209. # 0 = "No"
  210. # 1 = "Yes"
  211. admin_notify_mchanges = 0
  212. # Approval notices are sent when mail triggers certain of the limits
  213. # except routine list moderation and spam filters, for which notices are
  214. # not sent. This option overrides ever sending the notice.
  215. #
  216. # legal values are:
  217. # 0 = "No"
  218. # 1 = "Yes"
  219. respond_to_post_requests = 1
  220. # When this option is enabled, all list traffic is emergency moderated,
  221. # i.e. held for moderation. Turn this option on when your list is
  222. # experiencing a flamewar and you want a cooling off period.
  223. #
  224. # legal values are:
  225. # 0 = "No"
  226. # 1 = "Yes"
  227. emergency = 0
  228. # When a new member is subscribed to this list, their initial set of
  229. # options is taken from the this variable's setting.
  230. new_member_options = 256
  231. # Administrivia tests will check postings to see whether it's really
  232. # meant as an administrative request (like subscribe, unsubscribe, etc),
  233. # and will add it to the the administrative requests queue, notifying
  234. # the administrator of the new request, in the process.
  235. #
  236. # legal values are:
  237. # 0 = "No"
  238. # 1 = "Yes"
  239. administrivia = 1
  240. # Maximum length in kilobytes (KB) of a message body. Use 0 for no
  241. # limit.
  242. max_message_size = 40
  243. # The "host_name" is the preferred name for email to mailman-related
  244. # addresses on this host, and generally should be the mail host's
  245. # exchanger address, if any. This setting can be useful for selecting
  246. # among alternative names of a host that has multiple addresses.
  247. host_name = 'bitbase.dk'
  248. # RFC 2369 defines a set of List-* headers that are normally added to
  249. # every message sent to the list membership. These greatly aid end-users
  250. # who are using standards compliant mail readers. They should normally
  251. # always be enabled.
  252. #
  253. # However, not all mail readers are standards compliant yet, and if you
  254. # have a large number of members who are using non-compliant mail
  255. # readers, they may be annoyed at these headers. You should first try
  256. # to educate your members as to why these headers exist, and how to hide
  257. # them in their mail clients. As a last resort you can disable these
  258. # headers, but this is not recommended (and in fact, your ability to
  259. # disable these headers may eventually go away).
  260. #
  261. # legal values are:
  262. # 0 = "No"
  263. # 1 = "Yes"
  264. include_rfc2369_headers = 1
  265. # The List-Post: header is one of the headers recommended by RFC 2369.
  266. # However for some announce-only mailing lists, only a very select group
  267. # of people are allowed to post to the list; the general membership is
  268. # usually not allowed to post. For lists of this nature, the List-Post:
  269. # header is misleading. Select No to disable the inclusion of this
  270. # header. (This does not affect the inclusion of the other List-*:
  271. # headers.)
  272. #
  273. # legal values are:
  274. # 0 = "No"
  275. # 1 = "Yes"
  276. include_list_post_header = 1
  277. ## Language options
  278. #
  279. # Natural language (internationalization) options.
  280. # This is the default natural language for this mailing list. If more
  281. # than one language is supported then users will be able to select their
  282. # own preferences for when they interact with the list. All other
  283. # interactions will be conducted in the default language. This applies
  284. # to both web-based and email-based messages, but not to email posted by
  285. # list members.
  286. preferred_language = 'en'
  287. # These are all the natural languages supported by this list. Note that
  288. # the default language must be included.
  289. available_languages = ['en', 'da']
  290. # If your mailing list's default language uses a non-ASCII character set
  291. # and the prefix contains non-ASCII characters, the prefix will always
  292. # be encoded according to the relevant standards. However, if your
  293. # prefix contains only ASCII characters, you may want to set this option
  294. # to Never to disable prefix encoding. This can make the subject
  295. # headers slightly more readable for users with mail readers that don't
  296. # properly handle non-ASCII encodings.
  297. #
  298. # Note however, that if your mailing list receives both encoded and
  299. # unencoded subject headers, you might want to choose As needed. Using
  300. # this setting, Mailman will not encode ASCII prefixes when the rest of
  301. # the header contains only ASCII characters, but if the original header
  302. # contains non-ASCII characters, it will encode the prefix. This avoids
  303. # an ambiguity in the standards which could cause some mail readers to
  304. # display extra, or missing spaces between the prefix and the original
  305. # header.
  306. #
  307. # legal values are:
  308. # 0 = "Never"
  309. # 1 = "Always"
  310. # 2 = "As needed"
  311. encode_ascii_prefixes = 0
  312. ## Nondigest options
  313. #
  314. # Policies concerning immediately delivered list traffic.
  315. # Can subscribers choose to receive mail immediately, rather than in
  316. # batched digests?
  317. #
  318. # legal values are:
  319. # 0 = "No"
  320. # 1 = "Yes"
  321. nondigestable = 1
  322. # Text prepended to the top of every immediately-delivery message. This
  323. # text can include Python format strings which are resolved against list
  324. # attributes. The list of substitutions allowed are:
  325. #
  326. #
  327. # real_name - The "pretty" name of the list; usually the list name with
  328. # capitalization.
  329. #
  330. # list_name - The name by which the list is identified in URLs, where
  331. # case is significant.
  332. #
  333. # host_name - The fully qualified domain name that the list server runs
  334. # on.
  335. #
  336. # web_page_url - The base URL for Mailman. This can be appended with,
  337. # e.g. listinfo/%(list_name)s to yield the listinfo page for the mailing
  338. # list.
  339. #
  340. # description - The brief description of the mailing list.
  341. #
  342. # info - The full description of the mailing list.
  343. #
  344. # cgiext - The extension added to CGI scripts.
  345. #
  346. #
  347. msg_header = ''
  348. # Text appended to the bottom of every immediately-delivery message.
  349. # This text can include Python format strings which are resolved against
  350. # list attributes. The list of substitutions allowed are:
  351. #
  352. #
  353. # real_name - The "pretty" name of the list; usually the list name with
  354. # capitalization.
  355. #
  356. # list_name - The name by which the list is identified in URLs, where
  357. # case is significant.
  358. #
  359. # host_name - The fully qualified domain name that the list server runs
  360. # on.
  361. #
  362. # web_page_url - The base URL for Mailman. This can be appended with,
  363. # e.g. listinfo/%(list_name)s to yield the listinfo page for the mailing
  364. # list.
  365. #
  366. # description - The brief description of the mailing list.
  367. #
  368. # info - The full description of the mailing list.
  369. #
  370. # cgiext - The extension added to CGI scripts.
  371. #
  372. #
  373. msg_footer = """_______________________________________________
  374. %(real_name)s mailing list
  375. %(real_name)s@%(host_name)s
  376. %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s"""
  377. ## Digest options
  378. #
  379. # Batched-delivery digest characteristics.
  380. # Can list members choose to receive list traffic bunched in digests?
  381. #
  382. # legal values are:
  383. # 0 = "No"
  384. # 1 = "Yes"
  385. digestable = 1
  386. # Which delivery mode is the default for new users?
  387. #
  388. # legal values are:
  389. # 0 = "Regular"
  390. # 1 = "Digest"
  391. digest_is_default = 0
  392. # When receiving digests, which format is default?
  393. #
  394. # legal values are:
  395. # 0 = "Plain"
  396. # 1 = "MIME"
  397. mime_is_default_digest = 0
  398. # How big in Kb should a digest be before it gets sent out?
  399. digest_size_threshhold = 30
  400. # Should a digest be dispatched daily when the size threshold isn't
  401. # reached?
  402. #
  403. # legal values are:
  404. # 0 = "No"
  405. # 1 = "Yes"
  406. digest_send_periodic = 1
  407. # Text attached (as an initial message, before the table of contents) to
  408. # the top of digests. This text can include Python format strings which
  409. # are resolved against list attributes. The list of substitutions
  410. # allowed are:
  411. #
  412. #
  413. # real_name - The "pretty" name of the list; usually the list name with
  414. # capitalization.
  415. #
  416. # list_name - The name by which the list is identified in URLs, where
  417. # case is significant.
  418. #
  419. # host_name - The fully qualified domain name that the list server runs
  420. # on.
  421. #
  422. # web_page_url - The base URL for Mailman. This can be appended with,
  423. # e.g. listinfo/%(list_name)s to yield the listinfo page for the mailing
  424. # list.
  425. #
  426. # description - The brief description of the mailing list.
  427. #
  428. # info - The full description of the mailing list.
  429. #
  430. # cgiext - The extension added to CGI scripts.
  431. #
  432. #
  433. digest_header = ''
  434. # Text attached (as a final message) to the bottom of digests. This text
  435. # can include Python format strings which are resolved against list
  436. # attributes. The list of substitutions allowed are:
  437. #
  438. #
  439. # real_name - The "pretty" name of the list; usually the list name with
  440. # capitalization.
  441. #
  442. # list_name - The name by which the list is identified in URLs, where
  443. # case is significant.
  444. #
  445. # host_name - The fully qualified domain name that the list server runs
  446. # on.
  447. #
  448. # web_page_url - The base URL for Mailman. This can be appended with,
  449. # e.g. listinfo/%(list_name)s to yield the listinfo page for the mailing
  450. # list.
  451. #
  452. # description - The brief description of the mailing list.
  453. #
  454. # info - The full description of the mailing list.
  455. #
  456. # cgiext - The extension added to CGI scripts.
  457. #
  458. #
  459. digest_footer = """_______________________________________________
  460. %(real_name)s mailing list
  461. %(real_name)s@%(host_name)s
  462. %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s"""
  463. # When a new digest volume is started, the volume number is incremented
  464. # and the issue number is reset to 1.
  465. #
  466. # legal values are:
  467. # 0 = "Yearly"
  468. # 1 = "Monthly"
  469. # 2 = "Quarterly"
  470. # 3 = "Weekly"
  471. # 4 = "Daily"
  472. digest_volume_frequency = 1
  473. ## Privacy options
  474. #
  475. # This section allows you to configure subscription and membership
  476. # exposure policy. You can also control whether this list is public or
  477. # not. See also the <a
  478. # href="http://mail.bitbase.dk/mailman/admin/mailman/archive">Archival
  479. # Options</a> section for separate archive-related privacy settings.
  480. # Advertise this list when people ask what lists are on this machine?
  481. #
  482. # legal values are:
  483. # 0 = "No"
  484. # 1 = "Yes"
  485. advertised = 0
  486. # Confirm (*) - email confirmation required Require approval - require
  487. # list administrator approval for subscriptions Confirm and approve -
  488. # both confirm and approve
  489. #
  490. # (*) when someone requests a subscription, Mailman sends them a notice
  491. # with a unique subscription request number that they must reply to in
  492. # order to subscribe. This prevents mischievous (or malicious) people
  493. # from creating subscriptions for others without their consent.
  494. #
  495. # legal values are:
  496. # 1 = "Confirm"
  497. # 2 = "Require approval"
  498. # 3 = "Confirm and approve"
  499. subscribe_policy = 1
  500. # When members want to leave a list, they will make an unsubscription
  501. # request, either via the web or via email. Normally it is best for you
  502. # to allow open unsubscriptions so that users can easily remove
  503. # themselves from mailing lists (they get really upset if they can't get
  504. # off lists!).
  505. #
  506. # For some lists though, you may want to impose moderator approval
  507. # before an unsubscription request is processed. Examples of such lists
  508. # include a corporate mailing list that all employees are required to be
  509. # members of.
  510. #
  511. # legal values are:
  512. # 0 = "No"
  513. # 1 = "Yes"
  514. unsubscribe_policy = 0
  515. # Addresses in this list are banned outright from subscribing to this
  516. # mailing list, with no further moderation required. Add addresses one
  517. # per line; start the line with a ^ character to designate a regular
  518. # expression match.
  519. ban_list = []
  520. # When set, the list of subscribers is protected by member or admin
  521. # password authentication.
  522. #
  523. # legal values are:
  524. # 0 = "Anyone"
  525. # 1 = "List members"
  526. # 2 = "List admin only"
  527. private_roster = 1
  528. # Setting this option causes member email addresses to be transformed
  529. # when they are presented on list web pages (both in text and as links),
  530. # so they're not trivially recognizable as email addresses. The
  531. # intention is to prevent the addresses from being snarfed up by
  532. # automated web scanners for use by spammers.
  533. #
  534. # legal values are:
  535. # 0 = "No"
  536. # 1 = "Yes"
  537. obscure_addresses = 1
  538. ## Privacy options
  539. #
  540. # When a message is posted to the list, a series of moderation steps are
  541. # take to decide whether the a moderator must first approve the message
  542. # or not. This section contains the controls for moderation of both
  543. # member and non-member postings.
  544. #
  545. # <p>Member postings are held for moderation if their <b>moderation
  546. # flag</b> is turned on. You can control whether member postings are
  547. # moderated by default or not.
  548. #
  549. # <p>Non-member postings can be automatically <a
  550. # href="?VARHELP=privacy/sender/accept_these_nonmembers" >accepted</a>,
  551. # <a href="?VARHELP=privacy/sender/hold_these_nonmembers">held for
  552. # moderation</a>, <a
  553. # href="?VARHELP=privacy/sender/reject_these_nonmembers" >rejected</a>
  554. # (bounced), or <a
  555. # href="?VARHELP=privacy/sender/discard_these_nonmembers"
  556. # >discarded</a>, either individually or as a group. Any posting from a
  557. # non-member who is not explicitly accepted, rejected, or discarded,
  558. # will have their posting filtered by the <a
  559. # href="?VARHELP=privacy/sender/generic_nonmember_action">general
  560. # non-member rules</a>.
  561. #
  562. # <p>In the text boxes below, add one address per line; start the line
  563. # with a ^ character to designate a <a href=
  564. # "http://www.python.org/doc/current/lib/module-re.html" >Python regular
  565. # expression</a>. When entering backslashes, do so as if you were using
  566. # Python raw strings (i.e. you generally just use a single backslash).
  567. #
  568. # <p>Note that non-regexp matches are always done first.
  569. # Each list member has a moderation flag which says whether messages
  570. # from the list member can be posted directly to the list, or must first
  571. # be approved by the list moderator. When the moderation flag is turned
  572. # on, list member postings must be approved first. You, the list
  573. # administrator can decide whether a specific individual's postings will
  574. # be moderated or not.
  575. #
  576. # When a new member is subscribed, their initial moderation flag takes
  577. # its value from this option. Turn this option off to accept member
  578. # postings by default. Turn this option on to, by default, moderate
  579. # member postings first. You can always manually set an individual
  580. # member's moderation bit by using the membership management screens.
  581. #
  582. # legal values are:
  583. # 0 = "No"
  584. # 1 = "Yes"
  585. default_member_moderation = 0
  586. # Hold -- this holds the message for approval by the list moderators.
  587. #
  588. # Reject -- this automatically rejects the message by sending a bounce
  589. # notice to the post's author. The text of the bounce notice can be <a
  590. # href="?VARHELP=privacy/sender/member_moderation_notice" >configured by
  591. # you.
  592. #
  593. # Discard -- this simply discards the message, with no notice sent to
  594. # the post's author.
  595. #
  596. #
  597. # legal values are:
  598. # 0 = "Hold"
  599. # 1 = "Reject"
  600. # 2 = "Discard"
  601. member_moderation_action = 0
  602. # Text to include in any <a
  603. # href="?VARHELP/privacy/sender/member_moderation_action" >rejection
  604. # notice to be sent to moderated members who post to this list.
  605. member_moderation_notice = ''
  606. # Postings from any of these non-members will be automatically accepted
  607. # with no further moderation applied. Add member addresses one per
  608. # line; start the line with a ^ character to designate a regular
  609. # expression match.
  610. accept_these_nonmembers = []
  611. # Postings from any of these non-members will be immediately and
  612. # automatically held for moderation by the list moderators. The sender
  613. # will receive a notification message which will allow them to cancel
  614. # their held message. Add member addresses one per line; start the line
  615. # with a ^ character to designate a regular expression match.
  616. hold_these_nonmembers = []
  617. # Postings from any of these non-members will be automatically rejected.
  618. # In other words, their messages will be bounced back to the sender with
  619. # a notification of automatic rejection. This option is not appropriate
  620. # for known spam senders; their messages should be <a
  621. # href="?VARHELP=privacy/sender/discard_these_nonmembers" >automatically
  622. # discarded.
  623. #
  624. # Add member addresses one per line; start the line with a ^ character
  625. # to designate a regular expression match.
  626. reject_these_nonmembers = []
  627. # Postings from any of these non-members will be automatically
  628. # discarded. That is, the message will be thrown away with no further
  629. # processing or notification. The sender will not receive a
  630. # notification or a bounce, however the list moderators can optionally
  631. # <a href="?VARHELP=privacy/sender/forward_auto_discards" >receive
  632. # copies of auto-discarded messages..
  633. #
  634. # Add member addresses one per line; start the line with a ^ character
  635. # to designate a regular expression match.
  636. discard_these_nonmembers = []
  637. # When a post from a non-member is received, the message's sender is
  638. # matched against the list of explicitly <a
  639. # href="?VARHELP=privacy/sender/accept_these_nonmembers" >accepted,
  640. # held, <a href="?VARHELP=privacy/sender/reject_these_nonmembers"
  641. # >rejected (bounced), and <a
  642. # href="?VARHELP=privacy/sender/discard_these_nonmembers" >discarded
  643. # addresses. If no match is found, then this action is taken.
  644. #
  645. # legal values are:
  646. # 0 = "Accept"
  647. # 1 = "Hold"
  648. # 2 = "Reject"
  649. # 3 = "Discard"
  650. generic_nonmember_action = 1
  651. # Should messages from non-members, which are automatically discarded,
  652. # be forwarded to the list moderator?
  653. #
  654. # legal values are:
  655. # 0 = "No"
  656. # 1 = "Yes"
  657. forward_auto_discards = 1
  658. ## Privacy options
  659. #
  660. # This section allows you to configure various filters based on the
  661. # recipient of the message.
  662. # Many (in fact, most) spams do not explicitly name their myriad
  663. # destinations in the explicit destination addresses - in fact often the
  664. # To: field has a totally bogus address for obfuscation. The constraint
  665. # applies only to the stuff in the address before the '@' sign, but
  666. # still catches all such spams.
  667. #
  668. # The cost is that the list will not accept unhindered any postings
  669. # relayed from other addresses, unless
  670. #
  671. #
  672. # The relaying address has the same name, or
  673. #
  674. # The relaying address name is included on the options that specifies
  675. # acceptable aliases for the list.
  676. #
  677. #
  678. #
  679. # legal values are:
  680. # 0 = "No"
  681. # 1 = "Yes"
  682. require_explicit_destination = 1
  683. # Alternate addresses that are acceptable when
  684. # `require_explicit_destination' is enabled. This option takes a list
  685. # of regular expressions, one per line, which is matched against every
  686. # recipient address in the message. The matching is performed with
  687. # Python's re.match() function, meaning they are anchored to the start
  688. # of the string.
  689. #
  690. # For backwards compatibility with Mailman 1.1, if the regexp does not
  691. # contain an `@', then the pattern is matched against just the local
  692. # part of the recipient address. If that match fails, or if the pattern
  693. # does contain an `@', then the pattern is matched against the entire
  694. # recipient address.
  695. #
  696. # Matching against the local part is deprecated; in a future release,
  697. # the pattern will always be matched against the entire recipient
  698. # address.
  699. acceptable_aliases = ''
  700. # If a posting has this number, or more, of recipients, it is held for
  701. # admin approval. Use 0 for no ceiling.
  702. max_num_recipients = 10
  703. ## Privacy options
  704. #
  705. # This section allows you to configure various anti-spam filters posting
  706. # filters, which can help reduce the amount of spam your list members
  707. # end up receiving.
  708. #
  709. # Each header filter rule has two parts, a list of regular expressions,
  710. # one per line, and an action to take. Mailman matches the message's
  711. # headers against every regular expression in the rule and if any match,
  712. # the message is rejected, held, or discarded based on the action you
  713. # specify. Use Defer to temporarily disable a rule.
  714. #
  715. # You can have more than one filter rule for your list. In that case,
  716. # each rule is matched in turn, with processing stopped after the first
  717. # match.
  718. header_filter_rules = []
  719. # Use this option to prohibit posts according to specific header values.
  720. # The target value is a regular-expression for matching against the
  721. # specified header. The match is done disregarding letter case. Lines
  722. # beginning with '#' are ignored as comments.
  723. #
  724. # For example:to: .*@public.com says to hold all postings with a To:
  725. # mail header containing '@public.com' anywhere among the addresses.
  726. #
  727. # Note that leading whitespace is trimmed from the regexp. This can be
  728. # circumvented in a number of ways, e.g. by escaping or bracketing it.
  729. bounce_matching_headers = """
  730. # Lines that *start* with a '#' are comments.
  731. to: friend@public.com
  732. message-id: relay.comanche.denmark.eu
  733. from: list@listme.com
  734. from: .*@uplinkpro.com"""
  735. ## Bounce options
  736. #
  737. # These policies control the automatic bounce processing system in
  738. # Mailman. Here's an overview of how it works.
  739. #
  740. # <p>When a bounce is received, Mailman tries to extract two pieces of
  741. # information from the message: the address of the member the message
  742. # was intended for, and the severity of the problem causing the bounce.
  743. # The severity can be either <em>hard</em> or <em>soft</em> meaning
  744. # either a fatal error occurred, or a transient error occurred. When in
  745. # doubt, a hard severity is used.
  746. #
  747. # <p>If no member address can be extracted from the bounce, then the
  748. # bounce is usually discarded. Otherwise, each member is assigned a
  749. # <em>bounce score</em> and every time we encounter a bounce from this
  750. # member we increment the score. Hard bounces increment by 1 while soft
  751. # bounces increment by 0.5. We only increment the bounce score once per
  752. # day, so even if we receive ten hard bounces from a member per day,
  753. # their score will increase by only 1 for that day.
  754. #
  755. # <p>When a member's bounce score is greater than the <a
  756. # href="?VARHELP=bounce/bounce_score_threshold">bounce score
  757. # threshold</a>, the subscription is disabled. Once disabled, the
  758. # member will not receive any postings from the list until their
  759. # membership is explicitly re-enabled (either by the list administrator
  760. # or the user). However, they will receive occasional reminders that
  761. # their membership has been disabled, and these reminders will include
  762. # information about how to re-enable their membership.
  763. #
  764. # <p>You can control both the <a
  765. # href="?VARHELP=bounce/bounce_you_are_disabled_warnings">number of
  766. # reminders</a> the member will receive and the <a
  767. # href="?VARHELP=bounce/bounce_you_are_disabled_warnings_interval"
  768. # >frequency</a> with which these reminders are sent.
  769. #
  770. # <p>There is one other important configuration variable; after a
  771. # certain period of time -- during which no bounces from the member are
  772. # received -- the bounce information is <a
  773. # href="?VARHELP=bounce/bounce_info_stale_after">considered stale</a>
  774. # and discarded. Thus by adjusting this value, and the score threshold,
  775. # you can control how quickly bouncing members are disabled. You should
  776. # tune both of these to the frequency and traffic volume of your list.
  777. # By setting this value to No, you disable all automatic bounce
  778. # processing for this list, however bounce messages will still be
  779. # discarded so that the list administrator isn't inundated with them.
  780. #
  781. # legal values are:
  782. # 0 = "No"
  783. # 1 = "Yes"
  784. bounce_processing = 1
  785. # Each subscriber is assigned a bounce score, as a floating point
  786. # number. Whenever Mailman receives a bounce from a list member, that
  787. # member's score is incremented. Hard bounces (fatal errors) increase
  788. # the score by 1, while soft bounces (temporary errors) increase the
  789. # score by 0.5. Only one bounce per day counts against a member's
  790. # score, so even if 10 bounces are received for a member on the same
  791. # day, their score will increase by just 1.
  792. #
  793. # This variable describes the upper limit for a member's bounce score,
  794. # above which they are automatically disabled, but not removed from the
  795. # mailing list.
  796. bounce_score_threshold = 5.0
  797. # The number of days after which a member's bounce information is
  798. # discarded, if no new bounces have been received in the interim. This
  799. # value must be an integer.
  800. bounce_info_stale_after = 7
  801. # How many Your Membership Is Disabled warnings a disabled member should
  802. # get before their address is removed from the mailing list. Set to 0
  803. # to immediately remove an address from the list once their bounce score
  804. # exceeds the threshold. This value must be an integer.
  805. bounce_you_are_disabled_warnings = 3
  806. # The number of days between sending the Your Membership Is Disabled
  807. # warnings. This value must be an integer.
  808. bounce_you_are_disabled_warnings_interval = 7
  809. # While Mailman's bounce detector is fairly robust, it's impossible to
  810. # detect every bounce format in the world. You should keep this
  811. # variable set to Yes for two reasons: 1) If this really is a permanent
  812. # bounce from one of your members, you should probably manually remove
  813. # them from your list, and 2) you might want to send the message on to
  814. # the Mailman developers so that this new format can be added to its
  815. # known set.
  816. #
  817. # If you really can't be bothered, then set this variable to No and all
  818. # non-detected bounces will be discarded without further processing.
  819. #
  820. # Note: This setting will also affect all messages sent to your list's
  821. # -admin address. This address is deprecated and should never be used,
  822. # but some people may still send mail to this address. If this happens,
  823. # and this variable is set to No those messages too will get discarded.
  824. # You may want to set up an autoresponse message for email to the -owner
  825. # and -admin address.
  826. #
  827. # legal values are:
  828. # 0 = "No"
  829. # 1 = "Yes"
  830. bounce_unrecognized_goes_to_list_owner = 1
  831. # By setting this value to No, you turn off notification messages that
  832. # are normally sent to the list owners when a member's delivery is
  833. # disabled due to excessive bounces. An attempt to notify the member
  834. # will always be made.
  835. #
  836. # legal values are:
  837. # 0 = "No"
  838. # 1 = "Yes"
  839. bounce_notify_owner_on_disable = 1
  840. # By setting this value to No, you turn off notification messages that
  841. # are normally sent to the list owners when a member is unsubscribed due
  842. # to excessive bounces. An attempt to notify the member will always be
  843. # made.
  844. #
  845. # legal values are:
  846. # 0 = "No"
  847. # 1 = "Yes"
  848. bounce_notify_owner_on_removal = 1
  849. ## Archive options
  850. #
  851. # List traffic archival policies.
  852. # Archive messages?
  853. #
  854. # legal values are:
  855. # 0 = "No"
  856. # 1 = "Yes"
  857. archive = 1
  858. # Is archive file source for public or private archival?
  859. #
  860. # legal values are:
  861. # 0 = "public"
  862. # 1 = "private"
  863. archive_private = 0
  864. # How often should a new archive volume be started?
  865. #
  866. # legal values are:
  867. # 0 = "Yearly"
  868. # 1 = "Monthly"
  869. # 2 = "Quarterly"
  870. # 3 = "Weekly"
  871. # 4 = "Daily"
  872. archive_volume_frequency = 1
  873. ## Gateway options
  874. #
  875. # Mail-to-News and News-to-Mail gateway services.
  876. # This value may be either the name of your news server, or optionally
  877. # of the format name:port, where port is a port number.
  878. #
  879. # The news server is not part of Mailman proper. You have to already
  880. # have access to an NNTP server, and that NNTP server must recognize the
  881. # machine this mailing list runs on as a machine capable of reading and
  882. # posting news.
  883. nntp_host = ''
  884. # The name of the Usenet group to gateway to and/or from.
  885. linked_newsgroup = ''
  886. # Should new posts to the mailing list be sent to the newsgroup?
  887. #
  888. # legal values are:
  889. # 0 = "No"
  890. # 1 = "Yes"
  891. gateway_to_news = 0
  892. # Should new posts to the newsgroup be sent to the mailing list?
  893. #
  894. # legal values are:
  895. # 0 = "No"
  896. # 1 = "Yes"
  897. gateway_to_mail = 0
  898. # This setting determines the moderation policy of the newsgroup and its
  899. # interaction with the moderation policy of the mailing list. This only
  900. # applies to the newsgroup that you are gatewaying to, so if you are
  901. # only gatewaying from Usenet, or the newsgroup you are gatewaying to is
  902. # not moderated, set this option to None.
  903. #
  904. # If the newsgroup is moderated, you can set this mailing list up to be
  905. # the moderation address for the newsgroup. By selecting Moderated, an
  906. # additional posting hold will be placed in the approval process. All
  907. # messages posted to the mailing list will have to be approved before
  908. # being sent on to the newsgroup, or to the mailing list membership.
  909. #
  910. # Note that if the message has an Approved header with the list's
  911. # administrative password in it, this hold test will be bypassed,
  912. # allowing privileged posters to send messages directly to the list and
  913. # the newsgroup.
  914. #
  915. # Finally, if the newsgroup is moderated, but you want to have an open
  916. # posting policy anyway, you should select Open list, moderated group.
  917. # The effect of this is to use the normal Mailman moderation facilities,
  918. # but to add an Approved header to all messages that are gatewayed to
  919. # Usenet.
  920. #
  921. # legal values are:
  922. # 0 = "None"
  923. # 1 = "Open list, moderated group"
  924. # 2 = "Moderated"
  925. news_moderation = 0
  926. # Mailman prefixes Subject: headers with text you can customize and
  927. # normally, this prefix shows up in messages gatewayed to Usenet. You
  928. # can set this option to No to disable the prefix on gated messages. Of
  929. # course, if you turn off normal Subject: prefixes, they won't be
  930. # prefixed for gated messages either.
  931. #
  932. # legal values are:
  933. # 0 = "No"
  934. # 1 = "Yes"
  935. news_prefix_subject_too = 1
  936. ## Autoreply options
  937. #
  938. # Auto-responder characteristics.<p>
  939. #
  940. # In the text fields below, string interpolation is performed with the
  941. # following key/value substitutions: <p><ul> <li><b>listname</b> -
  942. # <em>gets the name of the mailing list</em> <li><b>listurl</b> -
  943. # <em>gets the list's listinfo URL</em> <li><b>requestemail</b> -
  944. # <em>gets the list's -request address</em> <li><b>owneremail</b> -
  945. # <em>gets the list's -owner address</em> </ul>
  946. #
  947. # <p>For each text field, you can either enter the text directly into
  948. # the text box, or you can specify a file on your local system to upload
  949. # as the text.
  950. # Should Mailman send an auto-response to mailing list posters?
  951. #
  952. # legal values are:
  953. # 0 = "No"
  954. # 1 = "Yes"
  955. autorespond_postings = 0
  956. # Auto-response text to send to mailing list posters.
  957. autoresponse_postings_text = ''
  958. # Should Mailman send an auto-response to emails sent to the -owner
  959. # address?
  960. #
  961. # legal values are:
  962. # 0 = "No"
  963. # 1 = "Yes"
  964. autorespond_admin = 0
  965. # Auto-response text to send to -owner emails.
  966. autoresponse_admin_text = ''
  967. # Should Mailman send an auto-response to emails sent to the -request
  968. # address? If you choose yes, decide whether you want Mailman to
  969. # discard the original email, or forward it on to the system as a normal
  970. # mail command.
  971. #
  972. # legal values are:
  973. # 0 = "No"
  974. # 1 = "Yes, w/discard"
  975. # 2 = "Yes, w/forward"
  976. autorespond_requests = 0
  977. # Auto-response text to send to -request emails.
  978. autoresponse_request_text = ''
  979. # Number of days between auto-responses to either the mailing list or
  980. # -request/-owner address from the same poster. Set to zero (or
  981. # negative) for no grace period (i.e. auto-respond to every message).
  982. autoresponse_graceperiod = 90
  983. ## Contentfilter options
  984. #
  985. # Policies concerning the content of list traffic.
  986. #
  987. # <p>Content filtering works like this: when a message is received by
  988. # the list and you have enabled content filtering, the individual
  989. # attachments are first compared to the <a
  990. # href="?VARHELP=contentfilter/filter_mime_types">filter types</a>. If
  991. # the attachment type matches an entry in the filter types, it is
  992. # discarded.
  993. #
  994. # <p>Then, if there are <a
  995. # href="?VARHELP=contentfilter/pass_mime_types">pass types</a> defined,
  996. # any attachment type that does <em>not</em> match a pass type is also
  997. # discarded. If there are no pass types defined, this check is skipped.
  998. #
  999. # <p>After this initial filtering, any <tt>multipart</tt> attachments
  1000. # that are empty are removed. If the outer message is left empty after
  1001. # this filtering, then the whole message is discarded. Then, each
  1002. # <tt>multipart/alternative</tt> section will be replaced by just the
  1003. # first alternative that is non-empty after filtering.
  1004. #
  1005. # <p>Finally, any <tt>text/html</tt> parts that are left in the message
  1006. # may be converted to <tt>text/plain</tt> if <a
  1007. # href="?VARHELP=contentfilter/convert_html_to_plaintext"
  1008. # >convert_html_to_plaintext</a> is enabled and the site is configured
  1009. # to allow these conversions.
  1010. # Should Mailman filter the content of list traffic according to the
  1011. # settings below?
  1012. #
  1013. # legal values are:
  1014. # 0 = "No"
  1015. # 1 = "Yes"
  1016. filter_content = 0
  1017. # Use this option to remove each message attachment that matches one of
  1018. # these content types. Each line should contain a string naming a MIME
  1019. # type/subtype, e.g. image/gif. Leave off the subtype to remove all
  1020. # parts with a matching major content type, e.g. image.
  1021. #
  1022. # Blank lines are ignored.
  1023. #
  1024. # See also <a href="?VARHELP=contentfilter/pass_mime_types"
  1025. # >pass_mime_types for a content type whitelist.
  1026. filter_mime_types = ''
  1027. # Use this option to remove each message attachment that does not have a
  1028. # matching content type. Requirements and formats are exactly like <a
  1029. # href="?VARHELP=contentfilter/filter_mime_types" >filter_mime_types.
  1030. #
  1031. # Note: if you add entries to this list but don't add multipart to this
  1032. # list, any messages with attachments will be rejected by the pass
  1033. # filter.
  1034. pass_mime_types = """multipart/mixed
  1035. multipart/alternative
  1036. text/plain"""
  1037. # Should Mailman convert text/html parts to plain text? This conversion
  1038. # happens after MIME attachments have been stripped.
  1039. #
  1040. # legal values are:
  1041. # 0 = "No"
  1042. # 1 = "Yes"
  1043. convert_html_to_plaintext = 1
  1044. # One of these actions is take when the message matches one of the
  1045. # content filtering rules, meaning, the top-level content type matches
  1046. # one of the <a href="?VARHELP=contentfilter/filter_mime_types"
  1047. # >filter_mime_types, or the top-level content type does not match one
  1048. # of the <a href="?VARHELP=contentfilter/pass_mime_types"
  1049. # >pass_mime_types, or if after filtering the subparts of the message,
  1050. # the message ends up empty.
  1051. #
  1052. # Note this action is not taken if after filtering the message still
  1053. # contains content. In that case the message is always forwarded on to
  1054. # the list membership.
  1055. #
  1056. # When messages are discarded, a log entry is written containing the
  1057. # Message-ID of the discarded message. When messages are rejected or
  1058. # forwarded to the list owner, a reason for the rejection is included in
  1059. # the bounce message to the original author. When messages are
  1060. # preserved, they are saved in a special queue directory on disk for the
  1061. # site administrator to view (and possibly rescue) but otherwise
  1062. # discarded. This last option is only available if enabled by the site
  1063. # administrator.
  1064. #
  1065. # legal values are:
  1066. # 0 = "Discard"
  1067. # 1 = "Reject"
  1068. # 2 = "Forward to List Owner"
  1069. # 3 = "Preserve"
  1070. filter_action = 0
  1071. ## Topics options
  1072. #
  1073. # List topic keywords
  1074. # The topic filter categorizes each incoming email message according to
  1075. # <a href="http://www.python.org/doc/current/lib/module-re.html">regular
  1076. # expression filters you specify below. If the message's Subject: or
  1077. # Keywords: header contains a match against a topic filter, the message
  1078. # is logically placed into a topic bucket. Each user can then choose to
  1079. # only receive messages from the mailing list for a particular topic
  1080. # bucket (or buckets). Any message not categorized in a topic bucket
  1081. # registered with the user is not delivered to the list.
  1082. #
  1083. # Note that this feature only works with regular delivery, not digest
  1084. # delivery.
  1085. #
  1086. # The body of the message can also be optionally scanned for Subject:
  1087. # and Keywords: headers, as specified by the <a
  1088. # href="?VARHELP=topics/topics_bodylines_limit">topics_bodylines_limit
  1089. # configuration variable.
  1090. #
  1091. # legal values are:
  1092. # 0 = "Disabled"
  1093. # 1 = "Enabled"
  1094. topics_enabled = 0
  1095. # The topic matcher will scan this many lines of the message body
  1096. # looking for topic keyword matches. Body scanning stops when either
  1097. # this many lines have been looked at, or a non-header-like body line is
  1098. # encountered. By setting this value to zero, no body lines will be
  1099. # scanned (i.e. only the Keywords: and Subject: headers will be
  1100. # scanned). By setting this value to a negative number, then all body
  1101. # lines will be scanned until a non-header-like line is encountered.
  1102. #
  1103. topics_bodylines_limit = 5
  1104. # Each topic keyword is actually a regular expression, which is matched
  1105. # against certain parts of a mail message, specifically the Keywords:
  1106. # and Subject: message headers. Note that the first few lines of the
  1107. # body of the message can also contain a Keywords: and Subject: "header"
  1108. # on which matching is also performed.
  1109. topics = []