From 9056bf9dbbff4dda558b50bfb8da3091a4f30570 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Wed, 5 Jul 2017 18:18:45 -0700 Subject: [PATCH] set Reply-To and Content-Type in done and forward --- scripts/process | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/process b/scripts/process index 2e0e003..95d933d 100755 --- a/scripts/process +++ b/scripts/process @@ -503,6 +503,8 @@ if ($codeletter eq 'D' || $codeletter eq 'F') "X-$gProject-PR-Keywords" => $data->{keywords}, # Only have a X-$gProject-PR-Source when we know the source package (defined($source_package) and length($source_package))?("X-$gProject-PR-Source" => $source_package):(), + "Reply-To" => "$ref\@$gEmailDomain", + "Content-Type" => 'text/plain; charset="utf-8"', ],message_body_template('mail/process_mark_as_forwarded', {date => $header{date}, messageid => $header{'message-id'}, @@ -526,6 +528,8 @@ if ($codeletter eq 'D' || $codeletter eq 'F') "X-$gProject-PR-Keywords" => $data->{keywords}, # Only have a X-$gProject-PR-Source when we know the source package (defined($source_package) and length($source_package))?("X-$gProject-PR-Source" => $source_package):(), + "Reply-To" => "$ref\@$gEmailDomain", + "Content-Type" => 'text/plain; charset="utf-8"', ],message_body_template('mail/process_mark_as_done', {date => $header{date}, messageid => $header{'message-id'}, -- 2.39.2