From 031f39bc6cae9efb94cf2ec008e525b6890d637b Mon Sep 17 00:00:00 2001 From: William Morgan Date: Mon, 8 Jun 2009 17:03:07 -0700 Subject: [PATCH] fix reply-mode always selecting "Customized" Since an earlier patch changed parse_headers, or something, the emitted header needs to have the correct case. --- lib/sup/modes/reply-mode.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sup/modes/reply-mode.rb b/lib/sup/modes/reply-mode.rb index 6b9f559..c79c5db 100644 --- a/lib/sup/modes/reply-mode.rb +++ b/lib/sup/modes/reply-mode.rb @@ -126,7 +126,7 @@ EOS "To" => [], "Cc" => [], "Bcc" => [], - "In-Reply-To" => "<#{@m.id}>", + "In-reply-to" => "<#{@m.id}>", "Subject" => Message.reify_subj(@m.subj), "References" => refs, }.merge v -- 2.45.2