From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.4 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 8FBC71F910; Sat, 26 Nov 2022 09:05:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1669453516; bh=jmbrLk6yw9+IB3PZHJBG3wOsSwCkqblSsFsoRmvk9wA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZMZB7A7yYzjuSXFAbegzdJ7j+vc/Ngycb3OZXUmlIp9Zy6rjVuNXyFF0Qvbn49RKL bdxIKCvcnHRTKipRpMjUpdVBMqu21mHqUg2xK2ubPlv7NKsq1lVuwhKxgVcuFm9agM 06Chb0FtYhzL8MQsANOfakuN3XLjMjK/PQ4CJXUo= Date: Sat, 26 Nov 2022 09:05:15 +0000 From: Eric Wong To: Konstantin Ryabitsev Cc: meta@public-inbox.org Subject: Re: [PATCH] eml: header_raw converts octets to Perl UTF-8 Message-ID: <20221126090515.M637731@dcvr> References: <20221124153715.3nenjpjzj43vqxr2@meerkat.local> <20221124213155.M736847@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20221124213155.M736847@dcvr> List-Id: Eric Wong wrote: > IMAP envelope responses still needs raw bytes since the zlib > wrapper is designed for octets, Perl UTF-8 bytes. That should say: wrapper is designed for octets, not Perl UTF-8 chars. Fixed and pushed. Thanks for testing.