1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Use the Debian-provided publicsuffix list by default
Author: Noah Meyerhans <noahm@debian.org>
Forwarded: not-needed
Index: libmail-dmarc-perl/share/mail-dmarc.ini
===================================================================
--- libmail-dmarc-perl.orig/share/mail-dmarc.ini
+++ libmail-dmarc-perl/share/mail-dmarc.ini
@@ -44,7 +44,13 @@ backend = perl
[dns]
timeout = 5
retrans = 5
-public_suffix_list = share/public_suffix_list
+; On Debian systems, the public suffix list is provided by the
+; publicsuffix package and is used here. If you prefer to use a
+; private copy of this file, update the path here and run
+; dmarc_update_public_suffix_list to install the current content from
+; https://publicsuffix.org/
+public_suffix_list = /usr/share/publicsuffix/public_suffix_list.dat
+
[smtp]
; hostname is the external FQDN of this MTA
|