From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id CD1EB1F461; Sat, 18 May 2019 08:03:00 +0000 (UTC) Date: Sat, 18 May 2019 08:03:00 +0000 From: Eric Wong To: "Eric W. Biederman" Cc: meta@public-inbox.org Subject: Re: [PATCH] PublicInbox::Import Extend add with a optional raw message parameter Message-ID: <20190518080300.q2klxia2uymnoxyi@dcvr> References: <87h89tzvp5.fsf@xmission.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <87h89tzvp5.fsf@xmission.com> List-Id: "Eric W. Biederman" wrote: > > I don't trust the MIME type to not munge my email messages in horrible > ways upon occasion. Therefore allow for passing in the raw message > value instead of trusting the mime object to preserve it. > > Signed-off-by: "Eric W. Biederman" I've had the same concern in the past about Email::MIME and Email::Simple. But after reading the code for Email::MIME, Email::Simple and Email::{MIME,Simple}::Header, I don't think the implementation of Email::MIME->as_string and all methods it calls does anything unreasonable. The only notable munging they seem to do is make irrelevant whitespace changes in headers and maybe fix quoting in headers. No body changes AFAIK. > The context here is because the only copy of messages that I save > I save in public-inbox I don't want to have to worry about losing > information. So I just pass the raw email_str to add. > > I expect if I were to export these lists public I would want to do > some more but for now I am just putting them in public-inbox > so that I can read and archive the lists locally. I worry about public archives getting badly munged, too. > lib/PublicInbox/Import.pm | 10 +++++----- > lib/PublicInbox/V2Writable.pm | 8 ++++---- > 2 files changed, 9 insertions(+), 9 deletions(-) Did you have plans to modify -mda/-watch or another script to use this? > diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm > index 81a38fb6987d..0a63784414f2 100644 > --- a/lib/PublicInbox/Import.pm > +++ b/lib/PublicInbox/Import.pm > @@ -359,7 +359,7 @@ sub clean_tree_v2 ($$$) { > # returns undef on duplicate > # returns the :MARK of the most recent commit > sub add { > - my ($self, $mime, $check_cb) = @_; # mime = Email::MIME > + my ($self, $mime, $check_cb, $email_str) = @_; # mime = Email::MIME I usually place callback args at the end of the arg list so it's easy to write: $im->add($mime, sub { # ... }); So having a parameter after the sub{} is a bit ugly... If I had to support this, I think I'd accept $mime being a plain hashref: if (ref($mime) eq 'HASH') { $raw = $mime->{raw}; $mime = $mime->{mime}; } else { $raw = $mime->as_string; } But, I'm still on the fence about the idea... Side note: I'm also taking the opportunity to use "$raw" instead of "$str", because I've been bitten by the difference header_raw vs header_str in the Email::MIME API, so consistency with that API would be good, here.