mirror of
https://github.com/mjl-/mox.git
synced 2025-07-10 07:54:40 +03:00
store rejects for 14 days, and don't keep them as neutral by default so they won't cause outright rejects for repeated delivery attempts of spam messages
the previous default, marking the messages as junk had the interesting effect of training the junk filter. rejecting could have been the result of the sending IP being in the DNSBL. so the DNSBL helped to automatically train the junk filter. perhaps we can keep that in the future and just not take messages from the rejects mailbox into account when evaluating the reputation for incoming deliveries.
This commit is contained in:
@ -435,16 +435,17 @@ describe-static" and "mox config describe-domains":
|
||||
AutomaticJunkFlags:
|
||||
|
||||
# If enabled, flags will be set automatically if they match a regular expression
|
||||
# below. When two lists are set, the empty list will match all remaining messages.
|
||||
# Messages are matched in the order specified and the search stops on the first
|
||||
# match. Mailboxes are lowercased before matching.
|
||||
# below. When two of the three mailbox regular expressions are set, the remaining
|
||||
# one will match all unmatched messages. Messages are matched in the order
|
||||
# specified and the search stops on the first match. Mailboxes are lowercased
|
||||
# before matching.
|
||||
Enabled: false
|
||||
|
||||
# Example: ^(junk|spam|rejects). (optional)
|
||||
# Example: ^(junk|spam). (optional)
|
||||
JunkMailboxRegexp:
|
||||
|
||||
# Example: ^(inbox|neutral|postmaster|dmarc|tlsrpt), and you may wish to add trash
|
||||
# depending on how you use it, or leave this empty. (optional)
|
||||
# Example: ^(inbox|neutral|postmaster|dmarc|tlsrpt|rejects), and you may wish to
|
||||
# add trash depending on how you use it, or leave this empty. (optional)
|
||||
NeutralMailboxRegexp:
|
||||
|
||||
# Example: .* or an empty string. (optional)
|
||||
|
Reference in New Issue
Block a user