[Rspamd] Use old ratelimit LUA until custom rl is fixed
[Web] Updated settings preset: Ratelimit was NOT applied when preset for settings map was used (added "RATELIMIT_UPDATE", "RATELIMIT_CHECK" to symbols_enabled) [Rspamd] v1.7.8master
parent
353af8e3a4
commit
c372b01909
|
@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y \
|
||||||
&& chown _rspamd:_rspamd /run/rspamd
|
&& chown _rspamd:_rspamd /run/rspamd
|
||||||
|
|
||||||
COPY settings.conf /etc/rspamd/modules.d/settings.conf
|
COPY settings.conf /etc/rspamd/modules.d/settings.conf
|
||||||
#COPY ratelimit.lua /usr/share/rspamd/lua/ratelimit.lua
|
COPY ratelimit.lua /usr/share/rspamd/lua/ratelimit.lua
|
||||||
#COPY lua_util.lua /usr/share/rspamd/lib/lua_util.lua
|
#COPY lua_util.lua /usr/share/rspamd/lib/lua_util.lua
|
||||||
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
||||||
COPY tini /sbin/tini
|
COPY tini /sbin/tini
|
||||||
|
|
|
@ -12,7 +12,7 @@ jQuery(function($){
|
||||||
$("#rspamd_preset_1").on('click', function(e) {
|
$("#rspamd_preset_1").on('click', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
$("form[data-id=rsetting]").find("#desc").val(lang.rsettings_preset_1);
|
$("form[data-id=rsetting]").find("#desc").val(lang.rsettings_preset_1);
|
||||||
$("form[data-id=rsetting]").find("#content").val('priority = 10;\nauthenticated = yes;\napply "default" {\n symbols_enabled = ["DKIM_SIGNED", "DYN_RL_CHECK", "HISTORY_SAVE", "MILTER_HEADERS", "ARC_SIGNED"];\n}');
|
$("form[data-id=rsetting]").find("#content").val('priority = 10;\nauthenticated = yes;\napply "default" {\n symbols_enabled = ["DKIM_SIGNED", "RATELIMIT_UPDATE", "RATELIMIT_CHECK", "DYN_RL_CHECK", "HISTORY_SAVE", "MILTER_HEADERS", "ARC_SIGNED"];\n}');
|
||||||
});
|
});
|
||||||
$("#rspamd_preset_2").on('click', function(e) {
|
$("#rspamd_preset_2").on('click', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
|
@ -78,7 +78,7 @@ services:
|
||||||
- clamd
|
- clamd
|
||||||
|
|
||||||
rspamd-mailcow:
|
rspamd-mailcow:
|
||||||
image: mailcow/rspamd:1.21
|
image: mailcow/rspamd:1.22
|
||||||
build: ./data/Dockerfiles/rspamd
|
build: ./data/Dockerfiles/rspamd
|
||||||
stop_grace_period: 30s
|
stop_grace_period: 30s
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|
Loading…
Reference in New Issue