Hi
I tried to do as described here to receive watchdog emails : https://community.mailcow.email/d/3613-dkim-signing-lua-dkim-toolslua195-mail-is-ineligible-for-signing/10 , but without success , I’m having trouble understanding what needs to be changed so that watchdod emails are delivered to the inbox without being rejected.
my mailcow server has an internal ipv4: 192.168.1.7 and an internal ipv6: fe80::92b1:1cff:fe9f:c214
and here are the modified files:
data/conf/postfix/extra.cf
myhostname = mail.seeboxs.com
smtpd_recipient_restrictions = check_recipient_mx_access proxy:mysql:/opt/postfix/conf/sql/mysql_mbr_access_maps.cf,
permit_sasl_authenticated,
permit_mynetworks,
check_recipient_access proxy:mysql:/opt/postfix/conf/sql/mysql_tls_enforce_in_policy.cf,
reject_invalid_helo_hostname,
reject_unauth_destination,
reject_rhsbl_sender XXXXXXXXXXXX.dbl.dq.spamhaus.net=127.0.1.[2..99],
reject_rhsbl_helo XXXXXXXXXXXX.dbl.dq.spamhaus.net=127.0.1.[2..99],
reject_rhsbl_reverse_client XXXXXXXXXXXX.dbl.dq.spamhaus.net=127.0.1.[2..99],
reject_rhsbl_sender XXXXXXXXXXXX.zrd.dq.spamhaus.net=127.0.2.[2..24],
reject_rhsbl_helo XXXXXXXXXXXX.zrd.dq.spamhaus.net=127.0.2.[2..24],
reject_rhsbl_reverse_client XXXXXXXXXXXX.zrd.dq.spamhaus.net=127.0.2.[2..24],
reject_rbl_client XXXXXXXXXXXX.zen.dq.spamhaus.net=127.0.0.[2..255],
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 [fe80::]/10 172.22.1.0/24 [fd4d:6169:6c63:6f77::]/64 192.168.1.0/24
and data/conf/rspamd/local.d/options.inc
dns {
enable_dnssec = true;
}
map_watch_interval = 30s;
disable_monitoring = true;
# In case a task times out (like DNS lookup), soft reject the message
# instead of silently accepting the message without further processing.
soft_reject_on_timeout = true;
#local_addrs = /etc/rspamd/custom/mailcow_networks.map;
local_addrs = [127.0.0.0/8, ::ffff:127.0.0.0/104, ::1/128, fe80::/10, 172.22.1.0/24, fd4d:6169:6c63:6f77::/64, 192.168.1.0/24];
With this configuration I no longer receive any mail ….. neither from watchdog nor elsewhere, so I returned to the original configuration.
There would not be a tutorial or other that clearly explains how to receive watchdog notifications, in the manual it specifies to have a dmarc, I already have a dmarc and an spf, so I am a little lost. Thank you for your help