]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei q|lcat: support "-f reply" output format
authorEric Wong <e@80x24.org>
Sat, 11 Sep 2021 08:33:19 +0000 (08:33 +0000)
committerEric Wong <e@80x24.org>
Sat, 11 Sep 2021 21:12:40 +0000 (21:12 +0000)
When composing replies in "git format-patch" cover letters,
I'd been relying on "lei q -f text ...", but that still requires
several steps to make it suitable for composing a reply:

* s/^/> / to quote the body
* drop existing In-Reply-To+References
* s/^Message-ID:/In-Reply-To:/;
* add an attribute line
...

"lei q -f reply" takes care of most of that and users will
only have to trim "From " lines, unnecessary results and
over-quoted text (and trimming is likely less error-prone
than doing all the steps above manually).

This should also be a good replacement for
"git format-patch --in-reply-to=...", since copying long
Message-IDs can be error-prone (and this lets you include
quoted text in replies).

Documentation/lei-lcat.pod
Documentation/lei-q.pod
lib/PublicInbox/LeiToMail.pm
lib/PublicInbox/LeiViewText.pm
t/lei-lcat.t

index 656df489f3b5ad93ee51ea22c9bc5213370bbb6c..b7887b6c40fb5a26321df2ab3e40c81d56f7a09c 100644 (file)
@@ -20,9 +20,19 @@ Message-ID or link from surrounding text (e.g., a "Link: $URL" line).
 =head1 OPTIONS
 
 The following options, described in L<lei-q(1)>, are supported.
+One deviation from L<lei-q(1)> is the default output format is
+C<-f text> when writing to stdout.
 
 =over
 
+=item --format=FORMAT
+
+=item -f FORMAT
+
+Most commonly C<text> (the default) or C<reply> to
+display the message(s) in a format suitable for trimming
+and sending as a email reply.
+
 =item --[no-]remote
 
 =item --no-local
index 69a6cdf251edc321ec9481315b1761f8945b2cc1..1d9e66cdb7e4e18942d6a75497748c8884c593ab 100644 (file)
@@ -60,7 +60,7 @@ Default: C<-> (stdout)
 
 Format of results to stdout.  This option exists as a convenient
 way to specify the format for the default stdout destination.
-C<text>, C<json>, C<jsonl>, or C<concatjson> are all supported,
+C<reply>, C<text>, C<json>, C<jsonl>, or C<concatjson> are all supported,
 as are the various mbox variants described in L</--output>.
 
 When a format isn't specified, it's chosen based on the
@@ -72,7 +72,7 @@ preferred when not writing to stdout.
 
 =item --no-color
 
-Disable color (for C<--format=text>).
+Disable color (for C<-f reply> and C<-f text>).
 
 =item --pretty
 
@@ -241,6 +241,13 @@ Default: C<auto>
 
 =back
 
+=head1 TIPS
+
+C<-f reply> is intended to aid in turning a cover letter
+into a reply (since using C<git format-patch --in-reply-to=...>
+is tedious).  Results (including "From " lines) should be edited
+and trimmed in your favorite C<$EDITOR> before sending.
+
 =head1 CONTACT
 
 Feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
index dbf58df9a21a2fcef96adafba6931810f4f63f12..15729bdafe57c45f3eab749dd5a8079b4d20cb01 100644 (file)
@@ -410,9 +410,9 @@ sub new {
                $lei->{net} = $net;
                $self->{base_type} = 'imap';
                $lei->{opt}->{save} //= \1 if $lei->{cmd} eq 'q';
-       } elsif ($fmt eq 'text') {
+       } elsif ($fmt eq 'text' || $fmt eq 'reply') {
                require PublicInbox::LeiViewText;
-               $lei->{lvt} = PublicInbox::LeiViewText->new($lei);
+               $lei->{lvt} = PublicInbox::LeiViewText->new($lei, $fmt);
                $self->{base_type} = 'text';
                @conflict = qw(mua save);
        } elsif ($fmt eq 'v2') {
index 340a66481225fbcc0a25867a95ff83933de06435..3461271191bce865a4e8c48d1d2e6a495fa8f558 100644 (file)
@@ -13,6 +13,8 @@ use PublicInbox::Hval;
 use PublicInbox::ViewDiff;
 use PublicInbox::Spawn qw(popen_rd);
 use Term::ANSIColor;
+use POSIX ();
+use PublicInbox::Address;
 
 sub _xs {
        # xhtml_map works since we don't search for HTML ([&<>'"])
@@ -66,8 +68,9 @@ sub my_colored {
 sub uncolored { ${$_[0]->{obuf}} .= $_[2] }
 
 sub new {
-       my ($cls, $lei) = @_;
+       my ($cls, $lei, $fmt) = @_;
        my $self = bless { %{$lei->{opt}}, -colored => \&uncolored }, $cls;
+       $self->{-quote_reply} = 1 if $fmt eq 'reply';
        return $self unless $self->{color} //= -t $lei->{1};
        my $cmd = [ qw(git config -z --includes -l) ];
        my ($r, $pid) = popen_rd($cmd, undef, { 2 => $lei->{2} });
@@ -83,6 +86,45 @@ sub new {
        $self;
 }
 
+sub quote_hdr_buf ($$) {
+       my ($self, $eml) = @_;
+       my $hbuf = '';
+       my $to = $eml->header_raw('Reply-To') //
+               $eml->header_raw('From') //
+               $eml->header_raw('Sender');
+       my $cc = '';
+       for my $f (qw(To Cc)) {
+               for my $v ($eml->header_raw($f)) {
+                       next if $v !~ /\S/;
+                       $cc .= $v;
+                       $to //= $v;
+               }
+       }
+       PublicInbox::View::fold_addresses($to);
+       PublicInbox::View::fold_addresses($cc);
+       _xs($to);
+       _xs($cc);
+       $hbuf .= "To: $to\n" if defined $to && $to =~ /\S/;
+       $hbuf .= "Cc: $cc\n" if $cc =~ /\S/;
+       my $s = $eml->header_str('Subject') // 'your mail';
+       _xs($s);
+       substr($s, 0, 0, 'Re: ') if $s !~ /\bRe:/i;
+       $hbuf .= "Subject: $s\n";
+       if (defined(my $irt = $eml->header_raw('Message-ID'))) {
+               _xs($irt);
+               $hbuf .= "In-Reply-To: $irt\n";
+       }
+       $self->{-colored}->($self, 'hdrdefault', $hbuf);
+       my ($n) = PublicInbox::Address::names($eml->header_str('From') //
+                                       $eml->header_str('Sender') //
+                                       $eml->header_str('Reply-To') //
+                                       'unknown sender');
+       my $d = $eml->header_raw('Date') // 'some unknown date';
+       _xs($d);
+       _xs($n);
+       ${delete $self->{obuf}} . "\nOn $d, $n wrote:\n";
+}
+
 sub hdr_buf ($$) {
        my ($self, $eml) = @_;
        my $hbuf = '';
@@ -224,25 +266,43 @@ sub add_text_buf { # callback for Eml->each_part
        }
 }
 
-# returns an arrayref suitable for $lei->out or print
+# returns a stringref suitable for $lei->out or print
 sub eml_to_text {
        my ($self, $smsg, $eml) = @_;
        local $Term::ANSIColor::EACHLINE = "\n";
        $self->{obuf} = \(my $obuf = '');
        $self->{-smsg} = $smsg;
        $self->{-max_cols} = ($self->{columns} //= 80) - 8; # for header wrap
-       my @h = ();
-       for my $f (qw(blob pct)) {
-               push @h, "$f:$smsg->{$f}" if defined $smsg->{$f};
+       my $h = [];
+       if ($self->{-quote_reply}) {
+               my $blob = $smsg->{blob} // 'unknown-blob';
+               my $pct = $smsg->{pct} // 'unknown';
+               my $t = POSIX::asctime(gmtime($smsg->{ts} // $smsg->{ds} // 0));
+               $h->[0] = "From $blob\@$pct $t";
+       } else {
+               for my $f (qw(blob pct)) {
+                       push @$h, "$f:$smsg->{$f}" if defined $smsg->{$f};
+               }
+               @$h = ("# @$h\n") if @$h;
+               for my $f (qw(kw L)) {
+                       my $v = $smsg->{$f} or next;
+                       push @$h, "# $f:".join(',', @$v)."\n" if @$v;
+               }
        }
-       @h = ("# @h\n") if @h;
-       for my $f (qw(kw L)) {
-               my $v = $smsg->{$f} or next;
-               push @h, "# $f:".join(',', @$v)."\n" if @$v;
+       $h = join('', @$h);
+       $self->{-colored}->($self, 'status', $h);
+       my $quote_hdr;
+       if ($self->{-quote_reply}) {
+               $quote_hdr = ${delete $self->{obuf}};
+               $quote_hdr .= quote_hdr_buf($self, $eml);
+       } else {
+               hdr_buf($self, $eml);
        }
-       $self->{-colored}->($self, 'status', join('', @h));
-       hdr_buf($self, $eml);
        $eml->each_part(\&add_text_buf, $self, 1);
+       if (defined $quote_hdr) {
+               ${$self->{obuf}} =~ s/^/> /sgm;
+               substr(${$self->{obuf}}, 0, 0, $quote_hdr);
+       }
        delete $self->{obuf};
 }
 
index e5f00706385464a265d084b9a4cc1fa2a3911562..31a84744d5b00d694ea104c8ad9085b65206b6ec 100644 (file)
@@ -11,6 +11,20 @@ test_lei(sub {
        lei_ok('import', 't/plack-qp.eml');
        lei_ok([qw(lcat --stdin)], undef, { 0 => \$in, %$lei_opt });
        like($lei_out, qr/qp\@example\.com/, 'got a result');
+
+       # test Link:, -f reply, and implicit --stdin:
+       my $prev = $lei_out;
+       $in = "\nLink: https://example.com/foo/qp\@example.com/\n";
+       lei_ok([qw(lcat -f reply)], undef, { 0 => \$in, %$lei_opt});
+       my $exp = <<'EOM';
+To: qp@example.com
+Subject: Re: QP
+In-Reply-To: <qp@example.com>
+
+On some unknown date, qp wrote:
+> hi = bye
+EOM
+       like($lei_out, qr/\AFrom [^\n]+\n\Q$exp\E/sm, '-f reply works');
 });
 
 done_testing;