From 9fe25544c17cd49039ec55b858c38520bb8b7413 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 5 Aug 2026 11:04:56 +0200 Subject: [PATCH] Email settings: Fix DMARC warning (#6452) --- src/pretix/control/views/mailsetup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/views/mailsetup.py b/src/pretix/control/views/mailsetup.py index 63abf33882..075fd62354 100644 --- a/src/pretix/control/views/mailsetup.py +++ b/src/pretix/control/views/mailsetup.py @@ -269,8 +269,8 @@ class MailSettingsSetupView(TemplateView): if settings.MAIL_CUSTOM_SENDER_DMARC_REQUIRED: dmarc_record = get_dmarc_record(hostname) if not dmarc_record: - spf_warning = _( - 'We did not find DMARC record for your domain. This means that there is a very high chance ' + dmarc_warning = _( + 'We did not find a DMARC record for your domain. This means that there is a very high chance ' 'most of the emails will be rejected or marked as spam. You should update the DNS settings ' 'of your domain.' )