From b64cb0ef4685038fff4e902d592fcbe9937c3abf Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 28 Apr 2015 15:25:10 +0100 Subject: [PATCH] Try to guess url_tld if it is not specified. --- src/libserver/cfg_utils.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/libserver/cfg_utils.c b/src/libserver/cfg_utils.c index 450bde0a7..900914535 100644 --- a/src/libserver/cfg_utils.c +++ b/src/libserver/cfg_utils.c @@ -383,6 +383,27 @@ rspamd_config_post_load (struct rspamd_config *cfg) cfg->default_metric = def_metric; + if (cfg->tld_file == NULL) { + /* Try to guess tld file */ + GString *fpath = g_string_new (NULL); + + rspamd_printf_gstring (fpath, "%s%c%s", RSPAMD_PLUGINSDIR, + G_DIR_SEPARATOR, "effective_tld_names.dat"); + + if (access (fpath->str, R_OK)) { + msg_warn ("url_tld option is not specified but %s is available," + " therefore this file is assumed as TLD file for URL" + " extraction", fpath->str); + cfg->tld_file = rspamd_mempool_strdup (cfg->cfg_pool, fpath->str); + } + else { + msg_err ("no url_tld option has been specified, URL's detection " + "will be awfully broken"); + } + + g_string_free (fpath, TRUE); + } + /* Lua options */ (void)rspamd_lua_post_load_config (cfg); init_dynamic_config (cfg); -- 2.39.5