e-mail workflow: Message-ID is spelled with ID in both capital letters
We used to write "Message-Id:" and "Message-ID:" pretty much interchangeably, and the header name is defined to be case insensitive by the RFCs, but the canonical form "Message-ID:" is used throughout the RFC documents, so let's imitate it ourselves. Signed-off-by: Junio C Hamano <gitster@pobox.com> Reviewed-by: Elijah Newren <newren@gmail.com>
This commit is contained in:
@ -440,7 +440,7 @@ void log_write_email_headers(struct rev_info *opt, struct commit *commit,
|
||||
fprintf(opt->diffopt.file, "From %s Mon Sep 17 00:00:00 2001\n", name);
|
||||
graph_show_oneline(opt->graph);
|
||||
if (opt->message_id) {
|
||||
fprintf(opt->diffopt.file, "Message-Id: <%s>\n", opt->message_id);
|
||||
fprintf(opt->diffopt.file, "Message-ID: <%s>\n", opt->message_id);
|
||||
graph_show_oneline(opt->graph);
|
||||
}
|
||||
if (opt->ref_message_ids && opt->ref_message_ids->nr > 0) {
|
||||
|
||||
Reference in New Issue
Block a user