about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-06-23 03:39:08 +0000
committerEric Wong <e@80x24.org>2017-06-23 03:39:08 +0000
commit31c516e54a6fd9df6122aaf3383f95ce9fc06834 (patch)
treeec726d2525288dabec7473f4c713ec30abedbc88
parent666844ae42b5b17fd2e9b7ea6cf04727487b5322 (diff)
downloadpublic-inbox-31c516e54a6fd9df6122aaf3383f95ce9fc06834.tar.gz
Sigh, yet another place to handle obfuscation for misguided
people who expect it.  Maybe this will do something to prevent
spammers from getting addresses, while still allowing the
"curl $URL | git am" use case to work.
-rw-r--r--lib/PublicInbox/Mbox.pm8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm
index 2565ea58..88daba75 100644
--- a/lib/PublicInbox/Mbox.pm
+++ b/lib/PublicInbox/Mbox.pm
@@ -12,8 +12,12 @@ require Email::Simple;
 sub emit1 {
         my ($ctx, $msg) = @_;
         $msg = Email::Simple->new($msg);
-        # single message should be easily renderable in browsers
-        [200, ['Content-Type', 'text/plain'], [ msg_str($ctx, $msg)] ]
+
+        # single message should be easily renderable in browsers,
+        # unless obfuscation is enabled :<
+        [ 200, [ 'Content-Type',
+          $ctx->{-inbox}->{obfuscate} ? 'application/mbox' : 'text/plain' ],
+         [ msg_str($ctx, $msg)] ]
 }
 
 sub msg_str {