[Rspamd] Do not try to index nil value

master
André 2017-10-26 12:51:30 +02:00
parent b80771240e
commit e5e2990cda
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ rspamd_config:register_symbol({
local tagged_rcpt = task:get_symbol("TAGGED_RCPT")
local mailcow_domain = task:get_symbol("RCPT_MAILCOW_DOMAIN")
if tagged_rcpt and mailcow_domain then
if tagged_rcpt and tagged_rcpt[1].options and mailcow_domain then
local tag = tagged_rcpt[1].options[1]
rspamd_logger.infox("found tag: %s", tag)
local action = task:get_metric_action('default')