Jump to content

Rspamd: Disable Greylisting

From Wiki
Revision as of 14:21, 11 February 2023 by Kangtain (talk | contribs) (Created page with "Just a quick FYI on disabling rspamd's greylisting module. This is something you will want to go if you run OpenBSD's spamd because it is still the king of first line of defense against spam. <syntaxhighlight lang="bash"> # /etc/rspamd/local.d/greylist.conf enabled = false; </syntaxhighlight> Then restart rspamd. ==Source== *[https://www.mail-archive.com/misc@opensmtpd.org/msg04673.html mail-archive.com]")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Just a quick FYI on disabling rspamd's greylisting module. This is something you will want to go if you run OpenBSD's spamd because it is still the king of first line of defense against spam.

# /etc/rspamd/local.d/greylist.conf
enabled = false;

Then restart rspamd.

Source