mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
[DEFAULT]
|
|
|
|
# "bantime" is the number of seconds that a host is banned.
|
|
bantime = 1w
|
|
|
|
# A host is banned if it has generated "maxretry" during the last "findtime"
|
|
# seconds.
|
|
findtime = 1w
|
|
|
|
# "maxretry" is the number of failures before a host get banned.
|
|
maxretry = 2
|
|
|
|
# "ignoreip" can be a list of IP addresses, CIDR masks or DNS hosts. Fail2ban
|
|
# will not ban a host which matches an address in this list. Several addresses
|
|
# can be defined using space (and/or comma) separator.
|
|
ignoreip = 127.0.0.1/8
|
|
|
|
# default ban action
|
|
# nftables-multiport: block IP only on affected port
|
|
# nftables-allports: block IP on all ports
|
|
banaction = nftables-allports
|
|
|
|
[dovecot]
|
|
enabled = true
|
|
|
|
[postfix]
|
|
enabled = true
|
|
# See https://github.com/fail2ban/fail2ban/blob/27294c4b9ee5d5568a1d5f83af744ea39d5a1acb/config/filter.d/postfix.conf#L58
|
|
# `mode=aggressive` basically combines more filters to match more lines, and hence, apply rules
|
|
# more aggressively. The same goes for the `postfix-sasl` jail.
|
|
mode = aggressive
|
|
|
|
[postfix-sasl]
|
|
enabled = true
|
|
mode = aggressive
|
|
|
|
# This jail is used for manual bans.
|
|
# To ban an IP address use: setup.sh fail2ban ban <IP>
|
|
[custom]
|
|
enabled = true
|
|
bantime = 180d
|
|
port = smtp,pop3,pop3s,imap,imaps,submission,submissions,sieve
|