From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 3/1] mbox: show application/mbox for obfuscated inboxes
Date: Fri, 23 Jun 2017 03:41:28 +0000 [thread overview]
Message-ID: <20170623034128.GA30418@dcvr> (raw)
In-Reply-To: <20170623023433.GA4155@dcvr>
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.
---
lib/PublicInbox/Mbox.pm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm
index 2565ea5..88daba7 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 {
--
:<
next prev parent reply other threads:[~2017-06-23 3:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-23 2:34 [PATCH] view: implement optional address obfuscation Eric Wong
2017-06-23 2:34 ` [PATCH] reply: handle address obfuscation :< Eric Wong
2017-06-23 3:41 ` Eric Wong [this message]
2017-06-23 9:54 ` [PATCH 4/1] view: add newline before mailto: instructions in reply Eric Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://public-inbox.org/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170623034128.GA30418@dcvr \
--to=e@80x24.org \
--cc=meta@public-inbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).