X-Git-Url: https://git.ralfj.de/ansible.git/blobdiff_plain/f01791c935972bc8fa351f719d24ac4aee1d4eff..34cf4db2749cb9993eb062f6f4a32c1f4067a6b3:/roles/email/files/mailman-check

diff --git a/roles/email/files/mailman-check b/roles/email/files/mailman-check
index 0a5d9de..09d2d00 100755
--- a/roles/email/files/mailman-check
+++ b/roles/email/files/mailman-check
@@ -10,5 +10,11 @@ if not ((mlist.dmarc_moderation_action in (1, 2) and mlist.dmarc_quarantine_mode
     print "List",mlist.real_name,"by",(', '.join(mlist.owner)),"is not configured to deal with DMARC."
 if mlist.reply_goes_to_list != 0 and not mlist.first_strip_reply_to:
     print "List",mlist.real_name,"by",(', '.join(mlist.owner)),"provides an inconsistent Reply-To treatment."
+if mlist.generic_nonmember_action == 2:
+    print "List",mlist.real_name,"by",(', '.join(mlist.owner)),"is prone to backscatter spam due to reject notifications"
+if mlist.generic_nonmember_action == 1 and mlist.respond_to_post_requests:
+    print "List",mlist.real_name,"by",(', '.join(mlist.owner)),"is prone to backscatter spam due to hold notifications"
+if mlist.bounce_unrecognized_goes_to_list_owner:
+    print "List",mlist.real_name,"by",(', '.join(mlist.owner)),"may spam the owner with unrecognized bounce notifications"
 EOF
 done