mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-10 01:15:00 +02:00
rspamd: disable checks for authenticated users (#3440)
Co-authored-by: Casper <casperklein@users.noreply.github.com> Co-authored-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
parent
b001f5a140
commit
f28fce9cc4
8 changed files with 77 additions and 8 deletions
|
@ -338,6 +338,15 @@ The purpose of this setting is to opt-out of starting an internal Redis instance
|
|||
- 0 => Disabled
|
||||
- 1 => Enabled
|
||||
|
||||
##### RSPAMD_CHECK_AUTHENTICATED
|
||||
|
||||
This settings controls whether checks should be performed on emails coming from authenticated users (i.e. most likely outgoing emails). The default value is `0` in order to align better with SpamAssassin. **We recommend** reading through [the Rspamd documentation on scanning outbound emails][rspamd-scanning-outbound] though to decide for yourself whether you need and want this feature.
|
||||
|
||||
- **0** => No checks will be performed for authenticated users
|
||||
- 1 => All default checks will be performed for authenticated users
|
||||
|
||||
[rspamd-scanning-outbound]: https://rspamd.com/doc/tutorials/scanning_outbound.html
|
||||
|
||||
##### RSPAMD_GREYLISTING
|
||||
|
||||
Controls whether the [Rspamd Greylisting module][rspamd-greylisting-module] is enabled. This module can further assist in avoiding spam emails by [greylisting] e-mails with a certain spam score.
|
||||
|
|
|
@ -21,11 +21,12 @@ The following environment variables are related to Rspamd:
|
|||
|
||||
1. [`ENABLE_RSPAMD`](../environment.md#enable_rspamd)
|
||||
2. [`ENABLE_RSPAMD_REDIS`](../environment.md#enable_rspamd_redis)
|
||||
3. [`RSPAMD_GREYLISTING`](../environment.md#rspamd_greylisting)
|
||||
4. [`RSPAMD_HFILTER`](../environment.md#rspamd_hfilter)
|
||||
5. [`RSPAMD_HFILTER_HOSTNAME_UNKNOWN_SCORE`](../environment.md#rspamd_hfilter_hostname_unknown_score)
|
||||
6. [`RSPAMD_LEARN`](../environment.md#rspamd_learn)
|
||||
7. [`MOVE_SPAM_TO_JUNK`](../environment.md#move_spam_to_junk)
|
||||
3. [`RSPAMD_CHECK_AUTHENTICATED`](../environment.md#rspamd_check_authenticated)
|
||||
4. [`RSPAMD_GREYLISTING`](../environment.md#rspamd_greylisting)
|
||||
5. [`RSPAMD_HFILTER`](../environment.md#rspamd_hfilter)
|
||||
6. [`RSPAMD_HFILTER_HOSTNAME_UNKNOWN_SCORE`](../environment.md#rspamd_hfilter_hostname_unknown_score)
|
||||
7. [`RSPAMD_LEARN`](../environment.md#rspamd_learn)
|
||||
8. [`MOVE_SPAM_TO_JUNK`](../environment.md#move_spam_to_junk)
|
||||
|
||||
With these variables, you can enable Rspamd itself and you can enable / disable certain features related to Rspamd.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue