File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -392,14 +392,13 @@ source: |
392392 )
393393 )
394394
395- // negate highly trusted sender domains unless they fail DMARC authentication
396- and (
397- coalesce(sender.email.domain.root_domain in $high_trust_sender_root_domains
398- and not headers.auth_summary.dmarc.pass,
399- false
400- )
401- or sender.email.domain.root_domain not in $high_trust_sender_root_domains
395+
396+ // negate highly trusted sender domains if they pass DMARC authentication
397+ and not (
398+ sender.email.domain.root_domain in $high_trust_sender_root_domains
399+ and coalesce(headers.auth_summary.dmarc.pass, false)
402400 )
401+
403402 // negation for messages traversing docusign.net
404403 // happens with custom sender domains
405404 and not (
You can’t perform that action at this time.
0 commit comments