Thread (3 messages) flat view 3 messages, 3 authors, 2016-06-15

Re: [PATCH 4/4] send-email: add support for mutt aliases files

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:42:22

Possibly related (same subject, not in this thread)

Eric Wong [off-list ref] writes:
More email clients/address book formats can easily be supported
in the future.
+if (my $mutt_aliases = `git-repo-config sendemail.muttaliases`) {
+    chomp $mutt_aliases;
+    open my $ma, '<', $mutt_aliases or die "opening $mutt_aliases: $!\n";
+    while (<$ma>) { if (/^alias\s+(\S+)\s+(.*)/) { $aliases{$1} = $2 } }
+    close $ma;
+}
+# aliases for more mail clients can be supported here:
+
I'd rather avoid proliferation of sendemail.{foo,bar,mutt,pine,...}aliases
variables.  Can we autodetect the alias file format and parse
the given file accordingly?
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help