user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] view: adjust wording for reply-to-list configs
@ 2018-01-29 11:49 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2018-01-29 11:49 UTC (permalink / raw)
  To: meta

This makes the wording less confusing when showing archives
for lists where the convention is reply-to-list.
I still hate reply-to-list, but it's still better than no
archives or list at all.
---
 lib/PublicInbox/Reply.pm | 9 ++++++---
 lib/PublicInbox/View.pm  | 9 +++++----
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/lib/PublicInbox/Reply.pm b/lib/PublicInbox/Reply.pm
index 0cd36fd..07288aa 100644
--- a/lib/PublicInbox/Reply.pm
+++ b/lib/PublicInbox/Reply.pm
@@ -32,7 +32,8 @@ my $reply_headers = join('|', @reply_headers);
 sub mailto_arg_link {
 	my ($ibx, $hdr) = @_;
 	my $cc = {}; # everyone else
-	my $to; # this is the From address by default
+	my $to; # this is the From address by defaultq
+	my $reply_to_all = 'reply-to-all'; # the only good default :P
 
 	foreach my $rt (split(/\s*,\s*/, $ibx->{replyto} || ':all')) {
 		if ($rt eq ':all') {
@@ -43,8 +44,10 @@ sub mailto_arg_link {
 				add_addrs(\$to, $cc, @addrs);
 			}
 		} elsif ($rt eq ':list') {
+			$reply_to_all = 'reply-to-list';
 			add_addrs(\$to, $cc, $ibx->{-primary_address});
 		} elsif ($rt =~ /\A(?:$reply_headers)\z/io) {
+			# ugh, this is weird...
 			my $v = $hdr->header($rt);
 			if (defined($v) && ($v ne '')) {
 				my @addrs = PublicInbox::Address::emails($v);
@@ -91,13 +94,13 @@ sub mailto_arg_link {
 	# I'm not sure if address obfuscation and mailto: links can
 	# be made compatible; and address obfuscation is misguided,
 	# anyways.
-	return (\@arg, '') if $obfs;
+	return (\@arg, '', $reply_to_all) if $obfs;
 
 	# order matters, Subject is the least important header,
 	# so it is last in case it's lost/truncated in a copy+paste
 	my $href = "mailto:$to?In-Reply-To=$irt${cc}&Subject=$subj";
 
-	(\@arg, ascii_html($href));
+	(\@arg, ascii_html($href), $reply_to_all);
 }
 
 1;
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 81e83d9..70e38a6 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -61,7 +61,8 @@ sub msg_reply {
 		$info = qq(\n  List information: <a\nhref="$url">$url</a>\n);
 	}
 
-	my ($arg, $link) = PublicInbox::Reply::mailto_arg_link($ibx, $hdr);
+	my ($arg, $link, $reply_to_all) =
+			PublicInbox::Reply::mailto_arg_link($ibx, $hdr);
 
 	# mailto: link only works if address obfuscation is disabled
 	if ($link) {
@@ -83,15 +84,15 @@ href=#t>this message</a> 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: <a
+  and $reply_to_all from there: <a
 href=raw>mbox</a>
 
   Avoid top-posting and favor interleaved quoting:
   <a
 href="$p_url">$p_url</a>
 $info
-* Reply to all the recipients using the <b>--to</b>, <b>--cc</b>,
-  and <b>--in-reply-to</b> switches of git-send-email(1):
+* Reply using the <b>--to</b>, <b>--cc</b>, and <b>--in-reply-to</b>
+  switches of git-send-email(1):
 
   git send-email$arg
 
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-01-29 11:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-29 11:49 [PATCH] view: adjust wording for reply-to-list configs Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

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).