From 4a61ef1ad9eaecf7d70a122ad4b04febd4732974 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Thu, 2 May 2013 03:53:21 -0400 Subject: [PATCH] define positioning of Authentication-Results header --- lib/Qpsmtpd/SMTP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Qpsmtpd/SMTP.pm b/lib/Qpsmtpd/SMTP.pm index e9f857c..1589472 100644 --- a/lib/Qpsmtpd/SMTP.pm +++ b/lib/Qpsmtpd/SMTP.pm @@ -812,7 +812,7 @@ sub authentication_results { }; $self->log(LOGDEBUG, "adding auth results header" ); - $self->transaction->header->add('Authentication-Results', join('; ', @auth_list) ); + $self->transaction->header->add('Authentication-Results', join('; ', @auth_list), 0); }; sub clean_authentication_results {