all lists on lists.proxmox.com
 help / color / mirror / Atom feed
From: Lukas Wagner <l.wagner@proxmox.com>
To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com
Subject: Re: [pve-devel] [PATCH proxmox v2 0/5] sys: email: always format 'Date' header with C locale
Date: Mon, 8 Jan 2024 11:42:45 +0100	[thread overview]
Message-ID: <35d1ebb5-4af7-44ba-96a2-2e43f3d90615@proxmox.com> (raw)
In-Reply-To: <20231211132908.267921-1-l.wagner@proxmox.com>


On 12/11/23 14:29, Lukas Wagner wrote:
> This patch series makes the formatting of the 'Date' header for sent emails
> independent of the system locale. Previously, strftime was used to generate
> the header, but since this function is locale-aware, invalid Date headers
> could be generated.
> As an example, if the locale was `de_DE.UTF-8`, then
> 
> Date: Di, 05 Dez 2023 12:05:50 +0100
>   instead of
> Date: Tue, 05 Dec 2023 12:05:50 +0100
> 
> would be generated, violating RFC2822 [1]. This trips up some email clients
> (e.g. KMail), making them fall back to Jan 1970 (epoch 0).
> 
> This is fixed by adding `strftime_l`, which allows passing a locale to
> used. Additionally, `epoch_to_rfc2822` was added, which formats a
> unix epoch value to a valid RFC2822 date string (with a fixed "C" locale).
> 
> Popped up in our forum:
> https://forum.proxmox.com/threads/pve-mail-notification-kein-datum-mehr-zum-korrekten-einsortieren.137556
> 
> The following projects need to be bumped and rebuilt:
>    - proxmox_sys, and therefore
>        - proxmox_notify, and therefore
>            - libpve-rs-perl
>            - proxmox-mail-forward
>        - proxmox-backup (uses proxmox_sys::email::sendmail directly)
> 
> [1] https://www.rfc-editor.org/rfc/rfc2822#section-3.3
> 
> Changes v1 -> v2:
>   - Fix TZ-dependent test case
> 
> Lukas Wagner (5):
>    time: posix: use strftime from the `libc` crate.
>    time: posix: inline vars in string formatting
>    time: posix: add bindings for strftime_l
>    time: posix: add epoch_to_rfc2822
>    sys: email: use `epoch_to_rfc2822` from proxmox_time
> 
>   proxmox-sys/src/email.rs  |   3 +-
>   proxmox-time/src/posix.rs | 151 +++++++++++++++++++++++++++++++-------
>   2 files changed, 126 insertions(+), 28 deletions(-)
> 

ping

-- 
- Lukas




WARNING: multiple messages have this Message-ID
From: Lukas Wagner <l.wagner@proxmox.com>
To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com
Subject: Re: [pbs-devel] [PATCH proxmox v2 0/5] sys: email: always format 'Date' header with C locale
Date: Mon, 8 Jan 2024 11:42:45 +0100	[thread overview]
Message-ID: <35d1ebb5-4af7-44ba-96a2-2e43f3d90615@proxmox.com> (raw)
In-Reply-To: <20231211132908.267921-1-l.wagner@proxmox.com>


On 12/11/23 14:29, Lukas Wagner wrote:
> This patch series makes the formatting of the 'Date' header for sent emails
> independent of the system locale. Previously, strftime was used to generate
> the header, but since this function is locale-aware, invalid Date headers
> could be generated.
> As an example, if the locale was `de_DE.UTF-8`, then
> 
> Date: Di, 05 Dez 2023 12:05:50 +0100
>   instead of
> Date: Tue, 05 Dec 2023 12:05:50 +0100
> 
> would be generated, violating RFC2822 [1]. This trips up some email clients
> (e.g. KMail), making them fall back to Jan 1970 (epoch 0).
> 
> This is fixed by adding `strftime_l`, which allows passing a locale to
> used. Additionally, `epoch_to_rfc2822` was added, which formats a
> unix epoch value to a valid RFC2822 date string (with a fixed "C" locale).
> 
> Popped up in our forum:
> https://forum.proxmox.com/threads/pve-mail-notification-kein-datum-mehr-zum-korrekten-einsortieren.137556
> 
> The following projects need to be bumped and rebuilt:
>    - proxmox_sys, and therefore
>        - proxmox_notify, and therefore
>            - libpve-rs-perl
>            - proxmox-mail-forward
>        - proxmox-backup (uses proxmox_sys::email::sendmail directly)
> 
> [1] https://www.rfc-editor.org/rfc/rfc2822#section-3.3
> 
> Changes v1 -> v2:
>   - Fix TZ-dependent test case
> 
> Lukas Wagner (5):
>    time: posix: use strftime from the `libc` crate.
>    time: posix: inline vars in string formatting
>    time: posix: add bindings for strftime_l
>    time: posix: add epoch_to_rfc2822
>    sys: email: use `epoch_to_rfc2822` from proxmox_time
> 
>   proxmox-sys/src/email.rs  |   3 +-
>   proxmox-time/src/posix.rs | 151 +++++++++++++++++++++++++++++++-------
>   2 files changed, 126 insertions(+), 28 deletions(-)
> 

ping

-- 
- Lukas




  parent reply	other threads:[~2024-01-08 10:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-11 13:29 Lukas Wagner
2023-12-11 13:29 ` [pbs-devel] " Lukas Wagner
2023-12-11 13:29 ` [pve-devel] [PATCH proxmox v2 1/5] time: posix: use strftime from the `libc` crate Lukas Wagner
2023-12-11 13:29   ` [pbs-devel] " Lukas Wagner
2023-12-11 13:29 ` [pve-devel] [PATCH proxmox v2 2/5] time: posix: inline vars in string formatting Lukas Wagner
2023-12-11 13:29   ` [pbs-devel] " Lukas Wagner
2023-12-11 13:29 ` [pve-devel] [PATCH proxmox v2 3/5] time: posix: add bindings for strftime_l Lukas Wagner
2023-12-11 13:29   ` [pbs-devel] " Lukas Wagner
2023-12-11 13:29 ` [pve-devel] [PATCH proxmox v2 4/5] time: posix: add epoch_to_rfc2822 Lukas Wagner
2023-12-11 13:29   ` [pbs-devel] " Lukas Wagner
2023-12-11 13:29 ` [pve-devel] [PATCH proxmox v2 5/5] sys: email: use `epoch_to_rfc2822` from proxmox_time Lukas Wagner
2023-12-11 13:29   ` [pbs-devel] " Lukas Wagner
2024-01-08 10:42 ` Lukas Wagner [this message]
2024-01-08 10:42   ` [pbs-devel] [PATCH proxmox v2 0/5] sys: email: always format 'Date' header with C locale Lukas Wagner
2024-01-08 11:13 ` [pve-devel] applied-series: " Wolfgang Bumiller
2024-01-08 11:13   ` [pbs-devel] " Wolfgang Bumiller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=35d1ebb5-4af7-44ba-96a2-2e43f3d90615@proxmox.com \
    --to=l.wagner@proxmox.com \
    --cc=pbs-devel@lists.proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal