in reply to Email::MIME bug?

Sounds like this. Maybe look at the mentioned PRs?


🦛

Replies are listed 'Best First'.
Re^2: Email::MIME bug?
by Arik123 (Beadle) on Jul 07, 2021 at 09:23 UTC

    Not exactly. His problem arised at new(), and my problem arised at filename(). My call to new() went without a problem, as my Email::MIME already contained his patch.

    However, following his example, I patched the filename() method, and my problem vanished. I changed

     my $dis = $self->header("Content-Disposition") || '';

    to:

     my $dis = $self->header_raw("Content-Disposition") || '';

    In my Email::MIME, it's in line 453.