diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-04-29 14:53:40 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-04-29 14:53:40 +0100 |
commit | fea5bdc79758530a3c28970c9c19d05e9932de74 (patch) | |
tree | abb8b5076eedde73f59e00e50dbd65188c4109a5 /conf/rspamd.conf | |
parent | 2426e04a9aa304ad1d24cbceb91493f205bf5b57 (diff) | |
download | rspamd-fea5bdc79758530a3c28970c9c19d05e9932de74.tar.gz rspamd-fea5bdc79758530a3c28970c9c19d05e9932de74.zip |
[Conf] Add language detection configuration
Diffstat (limited to 'conf/rspamd.conf')
-rw-r--r-- | conf/rspamd.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/rspamd.conf b/conf/rspamd.conf index 115fa5403..8ce93441c 100644 --- a/conf/rspamd.conf +++ b/conf/rspamd.conf @@ -24,6 +24,12 @@ options { .include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/options.inc" } +lang_detection { + .include "$CONFDIR/lang_detection.inc" + .include(try=true; priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/lang_detection.inc" + .include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/lang_detection.inc" +} + .include(try=true; duplicate=merge) "$CONFDIR/cgp.inc" .include(try=true; priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/cgp.inc" |