From 20eabae194f34982c50efaee7789deabdb82d448 Mon Sep 17 00:00:00 2001 From: wmorgan Date: Sat, 6 Jan 2007 19:37:23 +0000 Subject: [PATCH] whoops, don't want to downcase or replying breaks git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@221 5c8cc53c-5e98-4d25-b20a-d8db53a31250 --- lib/sup/mbox.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/sup/mbox.rb b/lib/sup/mbox.rb index f173def..7086a79 100644 --- a/lib/sup/mbox.rb +++ b/lib/sup/mbox.rb @@ -27,11 +27,10 @@ module MBox /^(In-Reply-To):\s+(.*)$/i, /^(Reply-To):\s+(.*)$/i, /^(List-Post):\s+(.*)$/i, - /^(Status):\s+(.*)$/i: header[last = $1.downcase] = $2 + /^(Status):\s+(.*)$/i: header[last = $1] = $2 ## these next three can occur multiple times, and we want the ## first one - when /^(Delivered-To):\s+(.*)$/i, /^(X-Original-To):\s+(.*)$/i, /^(Envelope-To):\s+(.*)$/i: header[last = $1.downcase] ||= $2 -- 2.45.2