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