diff --git a/mailserver.env b/mailserver.env index 60416996..40045dc1 100644 --- a/mailserver.env +++ b/mailserver.env @@ -183,10 +183,10 @@ RSPAMD_HFILTER=1 # Default: 6 RSPAMD_HFILTER_HOSTNAME_UNKNOWN_SCORE=6 -# Can be used to enable or disable the neural module. +# Can be used to enable or disable the (still experimental) neural module. # -# - 0 => Disabled -# - **1** => Enabled +# - **0** => Disabled +# - 1 => Enabled RSPAMD_NEURAL=0 # Amavis content filter (used for ClamAV & SpamAssassin) diff --git a/target/scripts/startup/setup.d/security/rspamd.sh b/target/scripts/startup/setup.d/security/rspamd.sh index 41530dd7..3c733d23 100644 --- a/target/scripts/startup/setup.d/security/rspamd.sh +++ b/target/scripts/startup/setup.d/security/rspamd.sh @@ -286,11 +286,12 @@ function __rspamd__setup_hfilter_group() { # This function handles setup of the neural module (see -# https://www.rspamd.com/doc/modules/neural.html). This module is experimental +# https://www.rspamd.com/doc/modules/neural.html). This module is experimental # but can enhance anti-spam scoring possibly. function __rspamd__setup_neural() { if _env_var_expect_zero_or_one 'RSPAMD_NEURAL' && [[ ${RSPAMD_NEURAL} -eq 1 ]]; then - __rspamd__log 'debug' 'Disabling Neural module' + __rspamd__log 'debug' 'Enabling Neural module' + __rspamd__log 'warn' 'The Neural module is still experimental (in Rspamd) and hence not tested in DMS' else __rspamd__log 'debug' 'Neural module is disabled' rm -f "${RSPAMD_LOCAL_D}/neural.conf"