mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #691 from YunoHost/enh-email-rate-limit
[enh] Avoid to send simultaneously too much emails
This commit is contained in:
commit
d7a90d6704
1 changed files with 5 additions and 1 deletions
|
@ -159,8 +159,12 @@ smtpd_milters = inet:localhost:11332
|
|||
# Skip email without checking if milter has died
|
||||
milter_default_action = accept
|
||||
|
||||
# Avoid to send simultaneously too many emails
|
||||
smtp_destination_concurrency_limit = 1
|
||||
default_destination_rate_delay = 5s
|
||||
|
||||
# Avoid email adress scanning
|
||||
# By default it's possible to detect if the email adress exist
|
||||
# So it's easly possible to scan a server to know which email adress is valid
|
||||
# and after to send spam
|
||||
disable_vrfy_command = yes
|
||||
disable_vrfy_command = yes
|
Loading…
Add table
Reference in a new issue