mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-16 03:15:59 +00:00
Update Rspamd to 3.11.0 and enable SMTPUTF8 for outgoing mail (#6216)
* Update Rspamd to 3.11 * Enable SMTPUTF8 and hide it from SMTPD greeting * Update options.inc * compose: increased rspamd tag
This commit is contained in:
@@ -2,7 +2,7 @@ FROM debian:bookworm-slim
|
|||||||
LABEL maintainer="The Infrastructure Company GmbH <info@servercow.de>"
|
LABEL maintainer="The Infrastructure Company GmbH <info@servercow.de>"
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
ARG RSPAMD_VER=rspamd_3.10.2-1~b8a232043
|
ARG RSPAMD_VER=rspamd_3.11.0-1~90a175b45
|
||||||
ARG CODENAME=bookworm
|
ARG CODENAME=bookworm
|
||||||
ENV LC_ALL=C
|
ENV LC_ALL=C
|
||||||
|
|
||||||
|
|||||||
@@ -162,10 +162,9 @@ transport_maps = pcre:/opt/postfix/conf/custom_transport.pcre,
|
|||||||
proxy:mysql:/opt/postfix/conf/sql/mysql_relay_ne.cf,
|
proxy:mysql:/opt/postfix/conf/sql/mysql_relay_ne.cf,
|
||||||
proxy:mysql:/opt/postfix/conf/sql/mysql_transport_maps.cf
|
proxy:mysql:/opt/postfix/conf/sql/mysql_transport_maps.cf
|
||||||
smtp_sasl_auth_soft_bounce = no
|
smtp_sasl_auth_soft_bounce = no
|
||||||
postscreen_discard_ehlo_keywords = silent-discard, dsn, chunking
|
postscreen_discard_ehlo_keywords = chunking, silent-discard, smtputf8, dsn
|
||||||
smtpd_discard_ehlo_keywords = chunking, silent-discard
|
smtpd_discard_ehlo_keywords = chunking, silent-discard, smtputf8
|
||||||
compatibility_level = 3.7
|
compatibility_level = 3.7
|
||||||
smtputf8_enable = no
|
|
||||||
# Define protocols for SMTPS and submission service
|
# Define protocols for SMTPS and submission service
|
||||||
submission_smtpd_tls_mandatory_protocols = >=TLSv1.2
|
submission_smtpd_tls_mandatory_protocols = >=TLSv1.2
|
||||||
smtps_smtpd_tls_mandatory_protocols = >=TLSv1.2
|
smtps_smtpd_tls_mandatory_protocols = >=TLSv1.2
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ dns {
|
|||||||
}
|
}
|
||||||
map_watch_interval = 30s;
|
map_watch_interval = 30s;
|
||||||
task_timeout = 30s;
|
task_timeout = 30s;
|
||||||
|
enable_mime_utf = true;
|
||||||
disable_monitoring = true;
|
disable_monitoring = true;
|
||||||
# In case a task times out (like DNS lookup), soft reject the message
|
# In case a task times out (like DNS lookup), soft reject the message
|
||||||
# instead of silently accepting the message without further processing.
|
# instead of silently accepting the message without further processing.
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ services:
|
|||||||
- clamd
|
- clamd
|
||||||
|
|
||||||
rspamd-mailcow:
|
rspamd-mailcow:
|
||||||
image: mailcow/rspamd:1.99
|
image: mailcow/rspamd:2.0
|
||||||
stop_grace_period: 30s
|
stop_grace_period: 30s
|
||||||
depends_on:
|
depends_on:
|
||||||
- dovecot-mailcow
|
- dovecot-mailcow
|
||||||
|
|||||||
Reference in New Issue
Block a user