about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/MboxGz.pm10
-rw-r--r--t/psgi_search.t6
2 files changed, 10 insertions, 6 deletions
diff --git a/lib/PublicInbox/MboxGz.pm b/lib/PublicInbox/MboxGz.pm
index 08e3c846..30074e4d 100644
--- a/lib/PublicInbox/MboxGz.pm
+++ b/lib/PublicInbox/MboxGz.pm
@@ -21,12 +21,10 @@ sub response {
         my ($class, $ctx, $cb, $fn) = @_;
         my $body = $class->new($ctx, $cb);
         # http://www.iana.org/assignments/media-types/application/gzip
-        my @h = qw(Content-Type application/gzip);
-        if (defined $fn && $fn ne '') {
-                $fn = to_filename($fn);
-                push @h, 'Content-Disposition', "inline; filename=$fn.mbox.gz";
-        }
-        [ 200, \@h, $body ];
+        $fn = defined($fn) && $fn ne '' ? to_filename($fn) : 'no-subject';
+        my $h = [ qw(Content-Type application/gzip),
+                'Content-Disposition', "inline; filename=$fn.mbox.gz" ];
+        [ 200, $h, $body ];
 }
 
 sub gzip_fail ($$) {
diff --git a/t/psgi_search.t b/t/psgi_search.t
index 56b42118..4ff25eb2 100644
--- a/t/psgi_search.t
+++ b/t/psgi_search.t
@@ -107,6 +107,12 @@ test_psgi(sub { $www->call(@_) }, sub {
                 'subject-less message linked from "/$INBOX/?q=..."');
         like($html, qr/\bhref="blank-subject[^>]+>\(no subject\)</,
                 'blank subject message linked from "/$INBOX/?q=..."');
+        $res = $cb->(GET('/test/no-subject-at-all@example.com/raw'));
+        like($res->header('Content-Disposition'),
+                qr/filename=no-subject\.txt/);
+        $res = $cb->(GET('/test/no-subject-at-all@example.com/t.mbox.gz'));
+        like($res->header('Content-Disposition'),
+                qr/filename=no-subject\.mbox\.gz/);
 });
 
 done_testing();