diff options
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Utils.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 1cd1cdb7..e7eaa389 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -1209,15 +1209,15 @@ def IsDMARCProhibited(mlist, email): for entry in dmarcs: if re.search(r'\bp=reject\b', entry, re.IGNORECASE): syslog('vette', - 'DMARC lookup for %s (%s) found p=reject in %s = %s', - email, dmarc_domain, name, entry) + '%s: DMARC lookup for %s (%s) found p=reject in %s = %s', + mlist.real_name, email, dmarc_domain, name, entry) return True if (mlist.dmarc_quarantine_moderation_action and re.search(r'\bp=quarantine\b', entry, re.IGNORECASE)): syslog('vette', - 'DMARC lookup for %s (%s) found p=quarantine in %s = %s', - email, dmarc_domain, name, entry) + '%s: DMARC lookup for %s (%s) found p=quarantine in %s = %s', + mlist.real_name, email, dmarc_domain, name, entry) return True return False |