doc:appunti:linux:sa:rspamd_spamassassin
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
doc:appunti:linux:sa:rspamd_spamassassin [2024/01/26 15:22] – [ClamAV on TCP socket in Debian 12] niccolo | doc:appunti:linux:sa:rspamd_spamassassin [2024/07/17 18:23] (current) – [Whitelist-From using the multimap module] niccolo | ||
---|---|---|---|
Line 500: | Line 500: | ||
===== Custom regexp rule with multimap ===== | ===== Custom regexp rule with multimap ===== | ||
- | To add a custom rule using some regular expressions, | + | To add a custom rule using some regular expressions, |
< | < | ||
Line 532: | Line 532: | ||
/second example string/gi | /second example string/gi | ||
</ | </ | ||
+ | |||
+ | If the map file is updated, it will be reloaded automatically. | ||
If **prefilter** is true, we have to define the //action//. In case of match the action is executed and no filters will be applied. | If **prefilter** is true, we have to define the //action//. In case of match the action is executed and no filters will be applied. | ||
Line 553: | Line 555: | ||
The **message** is eventually used if the mail matches this rule and the action is set to //reject// or //soft reject//. In this case the sender MTA will be notified with this message in reply to end of DATA command. The SMTP message code will be 554 for reject or 451 for soft reject. | The **message** is eventually used if the mail matches this rule and the action is set to //reject// or //soft reject//. In this case the sender MTA will be notified with this message in reply to end of DATA command. The SMTP message code will be 554 for reject or 451 for soft reject. | ||
+ | |||
+ | ===== Whitelist-From using the multimap module ===== | ||
+ | |||
+ | It is possibile replicate the **whitelist_from** option found in **SpamAssassin** using the multimap module of **rspamd**. In the **/ | ||
+ | |||
+ | < | ||
+ | WHITELIST_FROM { | ||
+ | description = " | ||
+ | type = " | ||
+ | regexp = true; | ||
+ | map = " | ||
+ | prefilter = true; | ||
+ | action = " | ||
+ | score = -100; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | In the file **/ | ||
+ | |||
+ | Standard regex **meta-characters** can be used, e.g. (see '' | ||
+ | |||
+ | ^ %%^%% | Matches the start of the line. | | ||
+ | ^ %%$%% | Matches the end of the line. | | ||
+ | ^ %%.%% | Matches a single character. | ||
+ | ^ %%\.%% | ||
+ | ^ %%\b%% | ||
+ | |||
+ | The regex must be enclosed into a pair of **%%/%%** chars and the standard **flags** can be used: | ||
+ | |||
+ | ^ %%i%% | Case insensitive match. | ||
+ | |||
+ | Here are an example to whitelist a single email address and an entire mail domain (NOTICE: if the map is updated, it will be reloaded automatically): | ||
+ | |||
+ | < | ||
+ | / | ||
+ | / | ||
+ | </ | ||
+ | |||
===== Customizing the headers ===== | ===== Customizing the headers ===== |
doc/appunti/linux/sa/rspamd_spamassassin.1706278964.txt.gz · Last modified: 2024/01/26 15:22 by niccolo