* [pmg-devel] [PATCH pmg-api] RuleDB/Notify: properly en-/decode the mail subject
@ 2022-10-05 7:49 Dominik Csapak
2022-10-05 16:27 ` Stoiko Ivanov
2022-10-05 16:36 ` [pmg-devel] applied: " Thomas Lamprecht
0 siblings, 2 replies; 3+ messages in thread
From: Dominik Csapak @ 2022-10-05 7:49 UTC (permalink / raw)
To: pmg-devel
we need to mime decode the subject after reading it, so that we get
the 'real' subject instead of the (possibly) mime encoded one (which
might be base64 or quoted-printable encoded). To get a proper subject in
the notification mail again, we have to encode it again before passing
it MIME::Entity->build
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
src/PMG/RuleDB/Notify.pm | 3 ++-
src/bin/pmg-smtp-filter | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/PMG/RuleDB/Notify.pm b/src/PMG/RuleDB/Notify.pm
index 6b964a6..af853a3 100644
--- a/src/PMG/RuleDB/Notify.pm
+++ b/src/PMG/RuleDB/Notify.pm
@@ -6,6 +6,7 @@ use DBI;
use MIME::Body;
use MIME::Head;
use MIME::Entity;
+use MIME::Words qw(encode_mimewords);
use Encode qw(decode encode);
use PVE::SafeSyslog;
@@ -228,7 +229,7 @@ sub execute {
Charset => 'UTF-8',
From => $from,
To => $to,
- Subject => encode('UTF-8', $subject),
+ Subject => encode_mimewords(encode('UTF-8', $subject), "Charset" => "UTF-8"),
Data => encode('UTF-8', $body));
if ($self->{attach} eq 'O') {
diff --git a/src/bin/pmg-smtp-filter b/src/bin/pmg-smtp-filter
index 45eb125..eaecd21 100755
--- a/src/bin/pmg-smtp-filter
+++ b/src/bin/pmg-smtp-filter
@@ -9,6 +9,7 @@ use Time::HiRes qw (usleep gettimeofday tv_interval);
use POSIX qw(:sys_wait_h errno_h signal_h);
use MIME::Parser;
+use MIME::WordDecoder qw(mime_to_perl_string);
use File::Path;
use Net::Server::PreFork;
use Net::Server::SIG qw(register_sig check_sigs);
@@ -152,7 +153,7 @@ sub get_prox_vars {
} if !$spaminfo;
my $vars = {
- 'SUBJECT' => $entity->head->get ('subject', 0) || 'No Subject',
+ 'SUBJECT' => mime_to_perl_string($entity->head->get ('subject', 0) || 'No Subject'),
'RULE' => $rule->{name},
'RULE_INFO' => $msginfo->{rule_info},
'SENDER' => $msginfo->{sender},
--
2.30.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [pmg-devel] [PATCH pmg-api] RuleDB/Notify: properly en-/decode the mail subject
2022-10-05 7:49 [pmg-devel] [PATCH pmg-api] RuleDB/Notify: properly en-/decode the mail subject Dominik Csapak
@ 2022-10-05 16:27 ` Stoiko Ivanov
2022-10-05 16:36 ` [pmg-devel] applied: " Thomas Lamprecht
1 sibling, 0 replies; 3+ messages in thread
From: Stoiko Ivanov @ 2022-10-05 16:27 UTC (permalink / raw)
To: Dominik Csapak; +Cc: pmg-devel
huge thanks for addressing this so quickly!
after quickly diving into the docs of the used perl-modules - seems like
the best approach here and works in my tests!
tiny nit/question:
On Wed, 5 Oct 2022 09:49:41 +0200
Dominik Csapak <d.csapak@proxmox.com> wrote:
> we need to mime decode the subject after reading it, so that we get
> the 'real' subject instead of the (possibly) mime encoded one (which
> might be base64 or quoted-printable encoded). To get a proper subject in
> the notification mail again, we have to encode it again before passing
> it MIME::Entity->build
>
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
> src/PMG/RuleDB/Notify.pm | 3 ++-
> src/bin/pmg-smtp-filter | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/src/PMG/RuleDB/Notify.pm b/src/PMG/RuleDB/Notify.pm
> index 6b964a6..af853a3 100644
> --- a/src/PMG/RuleDB/Notify.pm
> +++ b/src/PMG/RuleDB/Notify.pm
> @@ -6,6 +6,7 @@ use DBI;
> use MIME::Body;
> use MIME::Head;
> use MIME::Entity;
> +use MIME::Words qw(encode_mimewords);
> use Encode qw(decode encode);
>
> use PVE::SafeSyslog;
> @@ -228,7 +229,7 @@ sub execute {
> Charset => 'UTF-8',
> From => $from,
> To => $to,
> - Subject => encode('UTF-8', $subject),
> + Subject => encode_mimewords(encode('UTF-8', $subject), "Charset" => "UTF-8"),
> Data => encode('UTF-8', $body));
>
> if ($self->{attach} eq 'O') {
> diff --git a/src/bin/pmg-smtp-filter b/src/bin/pmg-smtp-filter
> index 45eb125..eaecd21 100755
> --- a/src/bin/pmg-smtp-filter
> +++ b/src/bin/pmg-smtp-filter
> @@ -9,6 +9,7 @@ use Time::HiRes qw (usleep gettimeofday tv_interval);
> use POSIX qw(:sys_wait_h errno_h signal_h);
>
> use MIME::Parser;
> +use MIME::WordDecoder qw(mime_to_perl_string);
> use File::Path;
> use Net::Server::PreFork;
> use Net::Server::SIG qw(register_sig check_sigs);
> @@ -152,7 +153,7 @@ sub get_prox_vars {
> } if !$spaminfo;
>
> my $vars = {
> - 'SUBJECT' => $entity->head->get ('subject', 0) || 'No Subject',
> + 'SUBJECT' => mime_to_perl_string($entity->head->get ('subject', 0) || 'No Subject'),
any reason why 'No Subject' is inside the mime_to_perl_string call?
Works either way - and I'm fine with both options - but stumbled upon
reading it
> 'RULE' => $rule->{name},
> 'RULE_INFO' => $msginfo->{rule_info},
> 'SENDER' => $msginfo->{sender},
with or without the potential change:
Tested-By: Stoiko Ivanov <s.ivanov@proxmox.com>
Reviewed-By: Stoiko Ivanov <s.ivanov@proxmox.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [pmg-devel] applied: [PATCH pmg-api] RuleDB/Notify: properly en-/decode the mail subject
2022-10-05 7:49 [pmg-devel] [PATCH pmg-api] RuleDB/Notify: properly en-/decode the mail subject Dominik Csapak
2022-10-05 16:27 ` Stoiko Ivanov
@ 2022-10-05 16:36 ` Thomas Lamprecht
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Lamprecht @ 2022-10-05 16:36 UTC (permalink / raw)
To: Dominik Csapak, pmg-devel
Am 05/10/2022 um 09:49 schrieb Dominik Csapak:
> we need to mime decode the subject after reading it, so that we get
> the 'real' subject instead of the (possibly) mime encoded one (which
> might be base64 or quoted-printable encoded). To get a proper subject in
> the notification mail again, we have to encode it again before passing
> it MIME::Entity->build
>
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
> src/PMG/RuleDB/Notify.pm | 3 ++-
> src/bin/pmg-smtp-filter | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
>
applied, with Stoiko's T-b & R-b tags, thanks!
(I didn't bother for the placement of the "No Subject" nit too much, albeit,
fwiw, it got my attetion to initially - @Stoiko just fix it up if you directly
if you like it better the other way)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-10-05 16:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-05 7:49 [pmg-devel] [PATCH pmg-api] RuleDB/Notify: properly en-/decode the mail subject Dominik Csapak
2022-10-05 16:27 ` Stoiko Ivanov
2022-10-05 16:36 ` [pmg-devel] applied: " Thomas Lamprecht
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox