- Joined
- Feb 27, 2003
- Messages
- 8,509
Thanks for the report.
I've added code for ESF 1.4.
New changes:
1) variables.conf has:
[/COLOR]which is used by the other configs to skip things, accordingly.
2) I've changed the check_dkim.conf file to "warn" instead of deny.
The variables.conf has a new setting:
and will add the score to the total:
which lets you set a lower score, rather than an immediate drop for DKIM Failures.
John
I've added code for ESF 1.4.
New changes:
1) variables.conf has:
Code:
[COLOR=#000000]EASY_SKIP_SENDERS = /etc/virtual/esf_skip_senders
[/COLOR][COLOR=#000000]EASY_SKIP_RECIPIENTS = /etc/virtual/esf_skip_recipients
[/COLOR][COLOR=#000000]addresslist esf_skip_senders = ${if exists{EASY_SKIP_SENDERS}{wildlsearch;EASY_SKIP_SENDERS}}
[/COLOR][COLOR=#000000]addresslist esf_skip_recipients = ${if exists{EASY_SKIP_RECIPIENTS}{wildlsearch;EASY_SKIP_RECIPIENTS}}
2) I've changed the check_dkim.conf file to "warn" instead of deny.
The variables.conf has a new setting:
Code:
[/FONT][FONT=Verdana]EASY_DKIM_FAIL = 100
Code:
[/FONT][FONT=Verdana] warn
[/FONT][FONT=Verdana] dkim_status = fail
[/FONT][FONT=Verdana] set acl_m_easy69 = ${eval:$acl_m_easy69+EASY_DKIM_FAIL}
[/FONT][FONT=Verdana] add_header = DKIMCheck: Server failed DKIM test, EASY_DKIM_FAIL Spam score
[/FONT][FONT=Verdana] log_message = DKIM: Failed. reason='$dkim_verify_reason'
John