25 lines
934 B
Django/Jinja
25 lines
934 B
Django/Jinja
# For a fully commented sample config file see policyd-spf.conf.commented
|
|
|
|
debugLevel = {{ postfix_spf_policy_debug_level }}
|
|
defaultSeedOnly = {{ postfix_spf_policy_default_seed }}
|
|
|
|
HELO_reject = {{ postfix_spf_policy_helo_reject }}
|
|
Mail_From_reject = {{ postfix_spf_policy_mail_from_reject }}
|
|
|
|
PermError_reject = {{ postfix_spf_perm_error_reject }}
|
|
TempError_Defer = {{ postfix_spf_temp_error_defer }}
|
|
|
|
skip_addresses = {{ postfix_spf_policy_skip_addresses}}
|
|
{% if postfix_spf_policy_whitelist != '' %}
|
|
Whitelist = {{ postfix_spf_policy_whitelist }}
|
|
{% endif %}
|
|
{% if postfix_spf_policy_domain_whitelist != '' %}
|
|
Domain_Whitelist = {{ postfix_spf_policy_domain_whitelist }}
|
|
{% endif %}
|
|
{% if postfix_spf_policy_reject_not_pass_domains != '' %}
|
|
Reject_Not_Pass_Domains = {{ postfix_spf_policy_reject_not_pass_domains }}
|
|
{% endif %}
|
|
|
|
Lookup_Time = {{ postfix_spf_policy_lookup_time }}
|
|
Void_Limit = {{ postfix_spf_policy_void_limit }}
|