mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-08 00:14:56 +02:00
19 lines
492 B
Text
19 lines
492 B
Text
|
# In addition to `policies_group.conf`, this file contains
|
||
|
# symbols that are applied when certain other symbols are
|
||
|
# applied (or not applied).
|
||
|
#
|
||
|
# We are especially interested in the `policy` field, because
|
||
|
# there are cases in which `remove_weight` is undesirable.
|
||
|
|
||
|
# When neither SPF, DKIM, nor DMARC are available, we want
|
||
|
# to increase the base score so we apply at least greylisting.
|
||
|
AUTH_NA {
|
||
|
score = 2.5;
|
||
|
policy = "leave";
|
||
|
}
|
||
|
|
||
|
AUTH_NA_OR_FAIL {
|
||
|
score = 1;
|
||
|
policy = "leave";
|
||
|
}
|