| | 38 | * デフォルト => /usr/lib/mailman/Mailman/Defaults.py |
| | 39 | |
| | 40 | * DEFAULT_ARCHIVE_PRIVATE = 0 |
| | 41 | {{{ |
| | 42 | # Are archives public or private by default? |
| | 43 | # 0=public, 1=private |
| | 44 | }}} |
| | 45 | * DEFAULT_NEW_MEMBER_OPTIONS = 256 |
| | 46 | {{{ |
| | 47 | # See "Bitfield for user options" below; make this a sum of those options, to |
| | 48 | # make all new members of lists start with those options flagged. We assume |
| | 49 | # by default that people don't want to receive two copies of posts. Note |
| | 50 | # however that the member moderation flag's initial value is controlled by the |
| | 51 | # list's config variable default_member_moderation. |
| | 52 | }}} |
| | 53 | {{{ |
| | 54 | # Bitfield for user options. See DEFAULT_NEW_MEMBER_OPTIONS above to set |
| | 55 | # defaults for all new lists. |
| | 56 | Digests = 0 # handled by other mechanism, doesn't need a flag. |
| | 57 | DisableDelivery = 1 # Obsolete; use set/getDeliveryStatus() |
| | 58 | DontReceiveOwnPosts = 2 # Non-digesters only |
| | 59 | AcknowledgePosts = 4 |
| | 60 | DisableMime = 8 # Digesters only |
| | 61 | ConcealSubscription = 16 |
| | 62 | SuppressPasswordReminder = 32 |
| | 63 | ReceiveNonmatchingTopics = 64 |
| | 64 | Moderate = 128 |
| | 65 | DontReceiveDuplicates = 256 |
| | 66 | }}} |
| | 67 | * DEFAULT_LIST_ADVERTISED = Yes |
| | 68 | * DEFAULT_MAX_NUM_RECIPIENTS = 10 |
| | 69 | * DEFAULT_MAX_MESSAGE_SIZE = 40 # KB |
| | 70 | {{{ |
| | 71 | # Should a list, by default be advertised? What is the default maximum number |
| | 72 | # of explicit recipients allowed? What is the default maximum message size |
| | 73 | # allowed? |
| | 74 | }}} |
| | 75 | * DEFAULT_SUBJECT_PREFIX = "[%(real_name)s] " |
| | 76 | * DEFAULT_MSG_HEADER = "" |
| | 77 | * DEFAULT_MSG_FOOTER |
| | 78 | {{{ |
| | 79 | DEFAULT_MSG_FOOTER = """_______________________________________________ |
| | 80 | %(real_name)s mailing list |
| | 81 | %(real_name)s@%(host_name)s |
| | 82 | %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s |
| | 83 | """ |
| | 84 | }}} |
| | 85 | {{{ |
| | 86 | # These format strings will be expanded w.r.t. the dictionary for the |
| | 87 | # mailing list instance. |
| | 88 | # DEFAULT_SUBJECT_PREFIX = "[%(real_name)s %%d]" # for numbering |
| | 89 | }}} |
| | 90 | * DEFAULT_ADMIN_NOTIFY_MCHANGES = No |
| | 91 | {{{ |
| | 92 | # Is the list owner notified of subscribes/unsubscribes? |
| | 93 | }}} |
| | 94 | * DEFAULT_SEND_REMINDERS = Yes |
| | 95 | {{{ |
| | 96 | # This variable controls whether monthly password reminders are sent. |
| | 97 | }}} |
| | 98 | * DEFAULT_REPLY_GOES_TO_LIST = 0 |
| | 99 | {{{ |
| | 100 | # Mailman can be configured to "munge" Reply-To: headers for any passing |
| | 101 | # messages. One the one hand, there are a lot of good reasons not to munge |
| | 102 | # Reply-To: but on the other, people really seem to want this feature. See |
| | 103 | # the help for reply_goes_to_list in the web UI for links discussing the |
| | 104 | # issue. |
| | 105 | # 0 - Reply-To: not munged |
| | 106 | # 1 - Reply-To: set back to the list |
| | 107 | # 2 - Reply-To: set to an explicit value (reply_to_address) |
| | 108 | }}} |
| | 109 | * DEFAULT_PRIVATE_ROSTER = 1 |
| | 110 | {{{ |
| | 111 | # Private_roster == 0: anyone can see, 1: members only, 2: admin only. |
| | 112 | }}} |
| | 113 | * 会員名簿のこと |
| | 114 | * PENDING_REQUEST_LIFE = days(3) |
| | 115 | {{{ |
| | 116 | # Default length of time a pending request is live before it is evicted from |
| | 117 | # the pending database. |
| | 118 | }}} |
| | 119 | * DELIVERY_RETRY_PERIOD = days(5) |
| | 120 | {{{ |
| | 121 | # How long should messages which have delivery failures continue to be |
| | 122 | # retried? After this period of time, a message that has failed recipients |
| | 123 | # will be dequeued and those recipients will never receive the message. |
| | 124 | }}} |