Browse Source

[Rspamd] Fix prio for includes in overrides

andryyy 5 years ago
parent
commit
e5f0e1da44

+ 1 - 1
data/conf/rspamd/override.d/worker-controller.inc

@@ -4,4 +4,4 @@ secure_ip = "127.0.0.1";
 secure_ip = "::1";
 bind_socket = "/var/lib/rspamd/rspamd.sock mode=0666 owner=nobody";
 .include(try=true; priority=10) "$CONFDIR/override.d/worker-controller-password.inc"
-.include(try=true; priority=20) "$CONFDIR/override.d/worker-controller.custom.inc" 
+.include(try=true; priority=30) "$CONFDIR/override.d/worker-controller.custom.inc" 

+ 1 - 1
data/conf/rspamd/override.d/worker-normal.inc

@@ -1,4 +1,4 @@
 bind_socket = "*:11333";
 task_timeout = 12s;
 count = 1;
-.include(try=true; priority=20) "$CONFDIR/override.d/worker-normal.custom.inc"
+.include(try=true; priority=30) "$CONFDIR/override.d/worker-normal.custom.inc"

+ 1 - 1
data/conf/rspamd/override.d/worker-proxy.inc

@@ -6,4 +6,4 @@ upstream "local" {
   hosts = "rspamd:11333"
 }
 reject_message = "This message does not meet our delivery requirements";
-.include(try=true; priority=20) "$CONFDIR/override.d/worker-proxy.custom.inc"
+.include(try=true; priority=30) "$CONFDIR/override.d/worker-proxy.custom.inc"