From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22056 invoked from network); 12 May 2004 16:28:11 -0000 Received: from unknown (HELO monty-python.gnu.org) (199.232.76.173) by sourceware.org with SMTP; 12 May 2004 16:28:11 -0000 Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BNwY1-0004Bq-LO for listarch-gnats-devel@sources.redhat.com; Wed, 12 May 2004 12:25:33 -0400 Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BNwXr-0004BV-J0 for help-gnats@gnu.org; Wed, 12 May 2004 12:25:23 -0400 Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BNwQi-0002sH-3m for help-gnats@gnu.org; Wed, 12 May 2004 12:18:41 -0400 Received: from [193.72.144.2] (helo=mail.elca.ch) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BNwJ8-0001O3-GB for help-gnats@gnu.org; Wed, 12 May 2004 12:10:10 -0400 Received: from exchange.elca.ch (unverified) by mail.elca.ch (Content Technologies SMTPRS 4.3.10) with ESMTP id for ; Wed, 12 May 2004 18:10:07 +0200 Received: by exchange.elca.ch with Internet Mail Service (5.5.2653.19) id ; Wed, 12 May 2004 18:10:02 +0200 Message-ID: From: Dieperink Alwin To: help-gnats@gnu.org Date: Thu, 13 May 2004 08:47:00 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="ISO-8859-1" Subject: Patch for Gnatsweb v4.00: Reporter's email not changed X-BeenThere: help-gnats@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: General discussion about GNU GNATS List-Archive: List-Post: List-Help: List-Subscribe: , Sender: help-gnats-bounces+listarch-gnats-devel=sources.redhat.com@gnu.org Errors-To: help-gnats-bounces+listarch-gnats-devel=sources.redhat.com@gnu.org X-SW-Source: 2004-q2/txt/msg00109.txt.bz2 Hello, This patch in gnatsweb v4.00 corrects the problem, that the Reporter's e-mail was not changed in the PR. Regards -- Alwin @@ -1780,15 +1780,15 @@ # If Reply-To changed, we need to splice the change into the envelope. if($fields{'Reply-To'} ne $oldfields{'Reply-To'}) { - if ($fields{'envelope'} =~ /^'Reply-To':/m) + if ($fields{'envelope'} =~ /^Reply-To:/m) { # Replace existing header with new one. - $fields{'envelope'} =~ s/^'Reply-To':.*$/'Reply-To': $fields{'Reply-To'}/m; + $fields{'envelope'} =~ s/^Reply-To:.*$/Reply-To: $fields{'Reply-To'}/m; } else { # Insert new header at end (blank line). Keep blank line at end. - $fields{'envelope'} =~ s/^$/'Reply-To': $fields{'Reply-To'}\n/m; + $fields{'envelope'} =~ s/^$/Reply-To: $fields{'Reply-To'}\n/m; } } _______________________________________________ Help-gnats mailing list Help-gnats@gnu.org http://mail.gnu.org/mailman/listinfo/help-gnats