From 87dd70bbd7b5bb5ea0d446f8cdb2552f8fb57600 Mon Sep 17 00:00:00 2001 From: "Jannis M. Hoffmann" Date: Sat, 11 Mar 2023 14:25:33 +0100 Subject: bugfixes and minor version bump --- lib/JWebmail/Controller/Webmail.pm | 2 +- lib/JWebmail/Plugin/RenderMail.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/JWebmail') diff --git a/lib/JWebmail/Controller/Webmail.pm b/lib/JWebmail/Controller/Webmail.pm index fd1c499..8325050 100644 --- a/lib/JWebmail/Controller/Webmail.pm +++ b/lib/JWebmail/Controller/Webmail.pm @@ -221,7 +221,7 @@ sub raw { my $content = $self->users->raw($auth, '', $mid, $path); $self->res->headers->content_disposition(qq[attachment; filename="$content->{head}{filename}"]) - if $content->{head}{content_disposition}; + if lc $content->{head}{content_disposition} eq 'attachment'; my $ct = $self->to_mime_type($content->{head}); if ($ct eq 'text/plain') { $ct .= '; charset=UTF-8' } $self->res->headers->content_type($ct); diff --git a/lib/JWebmail/Plugin/RenderMail.pm b/lib/JWebmail/Plugin/RenderMail.pm index 4417fae..22edbbd 100644 --- a/lib/JWebmail/Plugin/RenderMail.pm +++ b/lib/JWebmail/Plugin/RenderMail.pm @@ -69,8 +69,8 @@ sub render_multipart { } elsif (lc $_->{head}{content_disposition} eq 'attachment') { $R .= '

'; - $R .= $c->link_to($c->url_for(raw => id => $c->stash('id'))->query(path => join('.', @$path, $i))->to_abs, (download => $_->{head}{filename}) => sub { - 'Attachment ' . xml_escape($_->{head}{filename}) . ' of type ' . to_mime_type($c, $_->{head}); + $R .= $c->link_to($c->url_for(raw => id => $c->stash('id'))->query(path => join('.', @$path, $i)), (download => $_->{head}{filename}) => sub { + 'Attachment ' . xml_escape($_->{head}{filename}) . ' of type ' . to_mime_type($_->{head}); }); $R .= "

\n"; } -- cgit v1.2.3