From 0e614e874129a7d531e4209a092da53b9bb794ff Mon Sep 17 00:00:00 2001 From: Priyadi Iman Nurcahyo Date: Tue, 26 May 2015 16:13:08 +0000 Subject: [PATCH] Fix DMARC authentication-result string --- plugins/dmarc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dmarc b/plugins/dmarc index fde40c2..b9f9361 100644 --- a/plugins/dmarc +++ b/plugins/dmarc @@ -147,7 +147,7 @@ sub data_post_handler { my $disposition = $dmarc->result->disposition; my $auth_str = "dmarc=$disposition"; - $auth_str = " (p=" . $pol->p . ")" if $pol; + $auth_str .= " (p=" . $pol->p . ")" if $pol; if ( $dmarc->result->result eq 'pass' ) { $self->log(LOGINFO, "pass");