From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cc-smtpout1.netcologne.de (cc-smtpout1.netcologne.de [89.1.8.211]) by sourceware.org (Postfix) with ESMTPS id 5DC9D3858D29 for ; Tue, 8 Dec 2020 07:42:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5DC9D3858D29 Received: from cc-smtpin1.netcologne.de (cc-smtpin1.netcologne.de [89.1.8.201]) by cc-smtpout1.netcologne.de (Postfix) with ESMTP id C38E013347 for ; Tue, 8 Dec 2020 08:42:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by cc-smtpin1.netcologne.de (Postfix) with ESMTP id B701011EA8 for ; Tue, 8 Dec 2020 08:42:28 +0100 (CET) Received: from [2a0a:a540:3bed:0:be44:4e5a:e5e9:49b3] (helo=cc-smtpin1.netcologne.de) by localhost with ESMTP (eXpurgate 4.11.6) (envelope-from ) id 5fcf2e64-02f5-7f0000012729-7f000001a5b8-1 for ; Tue, 08 Dec 2020 08:42:28 +0100 Received: from linux-p51k.fritz.box (2a0a-a540-3bed-0-be44-4e5a-e5e9-49b3.ipv6dyn.netcologne.de [IPv6:2a0a:a540:3bed:0:be44:4e5a:e5e9:49b3]) (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 cc-smtpin1.netcologne.de (Postfix) with ESMTPSA for ; Tue, 8 Dec 2020 08:42:28 +0100 (CET) Subject: Correct my last name References: <5f1b4467-6d28-996b-c260-0cdb192bd79d@codesourcery.com> To: "overseers@gcc.gnu.org" From: Thomas Koenig X-Forwarded-Message-Id: <5f1b4467-6d28-996b-c260-0cdb192bd79d@codesourcery.com> Message-ID: Date: Tue, 8 Dec 2020 08:42:28 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.5.0 MIME-Version: 1.0 In-Reply-To: <5f1b4467-6d28-996b-c260-0cdb192bd79d@codesourcery.com> Content-Language: de-DE X-Spam-Status: No, score=1.5 required=5.0 tests=BAYES_00, BODY_8BITS, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, HTML_MESSAGE, KAM_SHORT, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPAM_BODY, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: overseers@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Overseers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Dec 2020 07:42:32 -0000 Hi, it seems that my last name is garbled for commits (see the mail below). Would it be possible to change that to the alternate spelling "Thomas Koenig"? Best regards     Thomas -------- Weitergeleitete Nachricht -------- Betreff: Re: git commits no longer visible on bugzilla? Datum: Mon, 7 Dec 2020 10:12:48 +0100 Von: Tobias Burnus An: Thomas Koenig , gcc mailing list Hi Thomas, On 07.12.20 09:27, Tobias Burnus wrote: > However, what puzzles me is > https://gcc.gnu.org/pipermail/gcc-cvs/2020-December/338684.html –this > is your commit. But while in the commit, I see "Koenig" for both > 'Author' and 'Commit', the 'From:' of that email shows (at least in > Pipermail) instead of 'oe' the Hindi letters 'tha' and 'Gh: '*थघ*'. Seemingly, the hook (→ https://github.com/AdaCore/git-hooks) takes the full name belonging to the user at gcc.gnu.org. And when Richard checked it for me, for your name it returns (for his locale): getent passwd tkoenig: 'Thomas Kथà¤'. or passed through 'od': …: T h o m a s K 340 244 245 340 244 230 n i g :… If I didn't make a mistake, those numbers convert to hex: E0 A3 A5 E0 A3 98 which I looks like garbage to me. At least it does not seem to make sense in neither UTF-8, UTF-16, UTF-32 and I also do not see any relation with the byte-order character. I think there are two issues: (a) Your name is wrong (should be 'ö' or safer 'oe') → I think you need to contact overseers via IRC or email overseers@ (b) Non-ASCII should probably be accepted in the flow; it looks as if the bugzilla email script mishandles/rejects this email even though it contains valid Hindi letters. Currently, the name comes from /hooks/updates/emails.py: self.email_from = '%s <%s@%s>' % (get_user_full_name(), get_user_name(), from_domain) (those functions come from the 'utils' module.) e_msg['From'] = sanitized_email_address(self.email_info.email_from) (and this does a RFC2047 encoding) Tobias ----------------- Mentor Graphics (Deutschland) GmbH, Arnulfstraße 201, 80634 München / Germany Registergericht München HRB 106955, Geschäftsführer: Thomas Heurung, Alexander Walter