From: Paul Wise Date: Fri, 12 Mar 2021 00:56:36 +0000 (+0800) Subject: Fix default user for usertags X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=refs%2Fheads%2Fdebian Fix default user for usertags It needs to have the same processing as all user addresses, otherwise it will include the name and spaces etc. Fixes: commit f13b9b4b919d80e6e90acf905452f8788e2b8c40 --- diff --git a/scripts/process b/scripts/process index b403603..4db9180 100755 --- a/scripts/process +++ b/scripts/process @@ -699,7 +699,8 @@ if ($ref<0) { # new bug report $data->{msgid} = $header{'message-id'}; writebug($ref, $data); # Deal with usertags - my $current_user = $replyto; + my $current_user; + unshift @usertag_bits, ['user', $replyto]; for my $field (@usertag_bits) { my ($name, $value) = @$field; if ($name eq 'user') {