blob: 4fac27fd91b3aa87fe3d4b58bdbf70f4f9f851ac [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001# If false, messages with empty envelope from are not signed
2allow_envfrom_empty = true;
3# If true, envelope/header domain mismatch is ignored
4allow_hdrfrom_mismatch = true;
5# If true, multiple from headers are allowed (but only first is used)
6allow_hdrfrom_multiple = true;
7# If true, username does not need to contain matching domain
8allow_username_mismatch = true;
9# If false, messages from authenticated users are not selected for signing
10sign_authenticated = true;
11# Default path to key, can include '$domain' and '$selector' variables
12path = "/data/dkim/keys/$domain.dkim";
13# Default selector to use
14selector = "dkim";
15# If false, messages from local networks are not selected for signing
16sign_local = true;
17# Symbol to add when message is signed
18symbol = "DKIM_SIGNED";
19# Whether to fallback to global config
20try_fallback = true;
21# Domain to use for DKIM signing: can be "header" or "envelope"
22use_domain = "envelope";
23# Whether to normalise domains to eSLD
24use_esld = false;
25# Whether to get keys from Redis
26use_redis = true;
27# Hash for DKIM keys in Redis
28key_prefix = "DKIM_PRIV_KEYS";
29# Selector map
30selector_prefix = "DKIM_SELECTORS";
31# Sieve is in sign_networks only
32# forwards are arc signed, rejects are dkim signed
33sign_networks = "/etc/rspamd/custom/dovecot_trusted.map";
34use_domain_sign_networks = "header";
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020035sign_headers = "from:sender:reply-to:subject:date:message-id:to:cc:mime-version:content-type:content-transfer-encoding:content-language:resent-to:resent-cc:resent-from:resent-sender:resent-message-id:in-reply-to:references:list-id:list-help:list-owner:list-unsubscribe:list-subscribe:list-post:list-unsubscribe-post:disposition-notification-to:disposition-notification-options:original-recipient:openpgp:autocrypt";