From: Vsevolod Stakhov Date: Mon, 4 Jan 2016 18:09:36 +0000 (+0000) Subject: Add doc strings for regexp module X-Git-Tag: 1.1.0~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6cfb01702a5c03af500acea1e375f46a8bf76dd;p=thirdparty%2Frspamd.git Add doc strings for regexp module --- diff --git a/src/plugins/regexp.c b/src/plugins/regexp.c index efee83e350..ddabe672ee 100644 --- a/src/plugins/regexp.c +++ b/src/plugins/regexp.c @@ -102,6 +102,18 @@ regexp_module_init (struct rspamd_config *cfg, struct module_ctx **ctx) *ctx = (struct module_ctx *)regexp_module_ctx; + rspamd_rcl_add_doc_by_path (cfg, NULL, + "Regular expressions rules plugin", + "regexp", UCL_OBJECT, NULL, 0); + + rspamd_rcl_add_doc_by_path (cfg, + "regexp", + "Maximum size of data chunk scanned with any regexp (further data is truncated)", + "max_size", + UCL_INT, + NULL, + 0); + return 0; }