* [pmg-devel] [PATCH pmg-api] utils: finalize_report: fix encoding for plain-text parts
@ 2026-01-23 9:40 Stoiko Ivanov
2026-01-23 10:46 ` Dominik Csapak
0 siblings, 1 reply; 2+ messages in thread
From: Stoiko Ivanov @ 2026-01-23 9:40 UTC (permalink / raw)
To: pmg-devel
the syntax for 8-bit encoding in the content-transfer-encoding is
'8bit' not '8-bit' - see RFC2045:
https://www.ietf.org/rfc/rfc2045.html#section-6
We did set the correct value when generating bounces in SMTP.pm (the
only other (non-comment) match for '8-?bit' in the pmg-api sources).
Noticed this while checking why listmonk[0] stumbled on some bounce
mails - it was the spam-reports in the mailbox.
Minimally tested by comparing the output of:
`pmgqm send --receiver xxx@test.domain --debug1`
without and with the patch applied.
[0] application for newsletter mailing lists
https://github.com/knadh/listmonk
Reported-by: Christian Ebner <c.ebner@proxmox.com>
Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
src/PMG/Utils.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/PMG/Utils.pm b/src/PMG/Utils.pm
index 52b98c01..b9c645eb 100644
--- a/src/PMG/Utils.pm
+++ b/src/PMG/Utils.pm
@@ -1374,7 +1374,7 @@ sub finalize_report {
$top->attach(
Data => $plaintext,
Type => 'text/plain; charset=utf-8',
- Encoding => '8-bit',
+ Encoding => '8bit',
);
}
if ($html) {
--
2.47.3
_______________________________________________
pmg-devel mailing list
pmg-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [pmg-devel] [PATCH pmg-api] utils: finalize_report: fix encoding for plain-text parts
2026-01-23 9:40 [pmg-devel] [PATCH pmg-api] utils: finalize_report: fix encoding for plain-text parts Stoiko Ivanov
@ 2026-01-23 10:46 ` Dominik Csapak
0 siblings, 0 replies; 2+ messages in thread
From: Dominik Csapak @ 2026-01-23 10:46 UTC (permalink / raw)
To: Stoiko Ivanov, pmg-devel
though i didn't test this, the change looks good
and makes sense when reading the MIME::Entity docs and
the linked RFC
Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>
On 1/23/26 10:40 AM, Stoiko Ivanov wrote:
> the syntax for 8-bit encoding in the content-transfer-encoding is
> '8bit' not '8-bit' - see RFC2045:
> https://www.ietf.org/rfc/rfc2045.html#section-6
>
> We did set the correct value when generating bounces in SMTP.pm (the
> only other (non-comment) match for '8-?bit' in the pmg-api sources).
>
> Noticed this while checking why listmonk[0] stumbled on some bounce
> mails - it was the spam-reports in the mailbox.
>
> Minimally tested by comparing the output of:
> `pmgqm send --receiver xxx@test.domain --debug1`
> without and with the patch applied.
>
> [0] application for newsletter mailing lists
> https://github.com/knadh/listmonk
> Reported-by: Christian Ebner <c.ebner@proxmox.com>
> Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
> ---
> src/PMG/Utils.pm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/PMG/Utils.pm b/src/PMG/Utils.pm
> index 52b98c01..b9c645eb 100644
> --- a/src/PMG/Utils.pm
> +++ b/src/PMG/Utils.pm
> @@ -1374,7 +1374,7 @@ sub finalize_report {
> $top->attach(
> Data => $plaintext,
> Type => 'text/plain; charset=utf-8',
> - Encoding => '8-bit',
> + Encoding => '8bit',
> );
> }
> if ($html) {
_______________________________________________
pmg-devel mailing list
pmg-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-23 10:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-23 9:40 [pmg-devel] [PATCH pmg-api] utils: finalize_report: fix encoding for plain-text parts Stoiko Ivanov
2026-01-23 10:46 ` Dominik Csapak
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.