]> source.dussan.org Git - rspamd.git/commitdiff
[Conf] Add more ways to extend Rspamd configuration
authorVsevolod Stakhov <vsevolod@rspamd.com>
Wed, 6 Nov 2024 13:44:19 +0000 (13:44 +0000)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Wed, 6 Nov 2024 13:44:19 +0000 (13:44 +0000)
+ Add examples of all that we can do

conf/local.d/module.conf.example [new file with mode: 0644]
conf/modules.conf
conf/modules.local.d/module.conf.example [new file with mode: 0644]
conf/override.d/module.conf.example [new file with mode: 0644]

diff --git a/conf/local.d/module.conf.example b/conf/local.d/module.conf.example
new file mode 100644 (file)
index 0000000..ba3d0b7
--- /dev/null
@@ -0,0 +1,20 @@
+# Define local parameters that you need to merge with the main configuration from
+# either modules.d (for the modules shipped with Rspamd) or modules.local.d (for
+# the modules that you have written).
+#
+# !!! Ensure NOT to enclose your configuration in the outer block with the module
+
+# DON'T DO THIS:
+# module_name { <--- Don't do this
+#   param = "other_value";
+# }
+
+# Just define your parameters here:
+
+param = "other_value";
+
+# Merge with the default complex param
+complex_param {
+  key = "new_value";
+}
+
index b37da06d5988febc3a2b434f42bfbdf3ee10d1c6..f99eab8dcbdf80f551064d75c9fd0574e0434d28 100644 (file)
@@ -14,4 +14,5 @@
 #
 # See https://rspamd.com/doc/tutorials/writing_rules.html for details
 
-.include(glob=true) "${CONFDIR}/modules.d/*.conf"
\ No newline at end of file
+.include(glob=true) "${CONFDIR}/modules.d/*.conf"
+.include(glob=true) "${CONFDIR}/modules.local.d/*.conf"
\ No newline at end of file
diff --git a/conf/modules.local.d/module.conf.example b/conf/modules.local.d/module.conf.example
new file mode 100644 (file)
index 0000000..9e6ba20
--- /dev/null
@@ -0,0 +1,21 @@
+# This directory is scanned for *.conf files to define configuration for the
+# modules that are not shipped by Rspamd by default.
+# So you can add your own configuration for the modules you have written.
+# Please bear in mind, that each file *MUST* have the outer block with
+# the actual module name, e.g.:
+
+module_name {
+  param = "value";
+  complex_param = {
+    key = "value";
+    other_key = "other value";
+    flag = false;
+  };
+  limit = 10;
+  duration = 10d;
+
+  # If you want to redefine something alternatively
+  .include(try=true,priority=5) "${DBDIR}/dynamic/module_name.conf"
+  .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/module_name.conf"
+  .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/module_name.conf"
+}
\ No newline at end of file
diff --git a/conf/override.d/module.conf.example b/conf/override.d/module.conf.example
new file mode 100644 (file)
index 0000000..2028a94
--- /dev/null
@@ -0,0 +1,18 @@
+# Define local parameters that you need to override the main configuration from
+# either modules.d (for the modules shipped with Rspamd) or modules.local.d (for
+# the modules that you have written).
+#
+# !!! Ensure NOT to enclose your configuration in the outer block with the module
+
+# DON'T DO THIS:
+# module_name { <--- Don't do this
+#   complex_param = null;
+# }
+
+# Just define your parameters here:
+
+# Redefine the whole complex param instead of merging like in `local.d`
+# All other keys in `complex_param` will be removed
+complex_param {
+  key = "new_value";
+}
\ No newline at end of file