From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 73C38854E for ; Tue, 15 Nov 2022 15:19:21 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5CBF2428E for ; Tue, 15 Nov 2022 15:19:21 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Tue, 15 Nov 2022 15:19:20 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 8F02644C0C; Tue, 15 Nov 2022 15:19:20 +0100 (CET) Message-ID: <8df49fde-d500-646e-84c1-7f4b2a330b06@proxmox.com> Date: Tue, 15 Nov 2022 15:19:19 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:107.0) Gecko/20100101 Thunderbird/107.0 To: Stoiko Ivanov , pmg-devel@lists.proxmox.com References: <20221115092820.38890-1-s.ivanov@proxmox.com> Content-Language: en-US From: Dominik Csapak In-Reply-To: <20221115092820.38890-1-s.ivanov@proxmox.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-SPAM-LEVEL: Spam detection results: =?UTF-8?Q?0=0A=09?=AWL 0.066 Adjusted score from AWL reputation of From: =?UTF-8?Q?address=0A=09?=BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict =?UTF-8?Q?Alignment=0A=09?=NICE_REPLY_A -0.001 Looks like a legit reply (A) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF =?UTF-8?Q?Record=0A=09?=SPF_PASS -0.001 SPF: sender matches SPF =?UTF-8?Q?record=0A=09?=URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [pmgqm.pm] Subject: Re: [pmg-devel] [PATCH pmg-api] fix 4006: do not split from header on ', ' for spamreport mails X-BeenThere: pmg-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Mail Gateway development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2022 14:19:21 -0000 LGTM Tested-by: Dominik Csapak Reviewed-by: Dominik Csapak On 11/15/22 10:28, Stoiko Ivanov wrote: > This commit follows 0f123331c73bbcb73303f1f07b5318a68c83ad64, which > did the same change for the API calls. > > Signed-off-by: Stoiko Ivanov > --- > src/PMG/CLI/pmgqm.pm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/src/PMG/CLI/pmgqm.pm b/src/PMG/CLI/pmgqm.pm > index 1e21bf0..dbec8ef 100755 > --- a/src/PMG/CLI/pmgqm.pm > +++ b/src/PMG/CLI/pmgqm.pm > @@ -46,8 +46,7 @@ sub get_item_data { > $item->{subject} = PMG::Utils::rfc1522_to_html( > PVE::Tools::trim($head->get('subject')) || 'No Subject'); > > - my @fromarray = split('\s*,\s*', $head->get('from') || $ref->{sender}); > - my $from = PMG::Utils::rfc1522_to_html(PVE::Tools::trim($fromarray[0])); > + my $from = PMG::Utils::rfc1522_to_html(PVE::Tools::trim($head->get('from') // $ref->{sender})); > my $sender = PMG::Utils::rfc1522_to_html(PVE::Tools::trim($head->get('sender'))); > > if ($sender) {