]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix DKIM signing logging
authorAndrew Lewis <nerf@judo.za.org>
Mon, 5 Feb 2018 12:36:23 +0000 (14:36 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Mon, 12 Feb 2018 11:14:56 +0000 (13:14 +0200)
lualib/dkim_sign_tools.lua

index afe34ff5787916ef1ae446e08384bff8e6beabf6..442b4a52bdff890130ef7e21402124fb0eb2f8ea 100644 (file)
@@ -82,18 +82,21 @@ local function prepare_dkim_signing(N, task, settings)
 
   if settings.use_domain_sign_networks and is_sign_networks then
     dkim_domain = get_dkim_domain('use_domain_sign_networks')
+    rspamd_logger.debugm(N, task, 'sign_networks: use domain(%s) for signature: %s',
+      settings.use_domain_sign_networks, dkim_domain)
   elseif settings.use_domain_local and is_local then
     dkim_domain = get_dkim_domain('use_domain_local')
+    rspamd_logger.debugm(N, task, 'local: use domain(%s) for signature: %s',
+      settings.use_domain_local, dkim_domain)
   else
     dkim_domain = get_dkim_domain('use_domain')
+    rspamd_logger.debugm(N, task, 'use domain(%s) for signature: %s',
+      settings.use_domain, dkim_domain)
   end
 
   if not dkim_domain then
     rspamd_logger.debugm(N, task, 'could not extract dkim domain')
     return false,{}
-  else
-    rspamd_logger.debugm(N, task, 'use domain(%s) for signature: %s',
-      settings.use_domain, dkim_domain)
   end
 
   if settings.use_esld then