commit 20eabae194f34982c50efaee7789deabdb82d448
parent a5d0e35bf168d4c216a7a7072ab0085b9a8cbb31
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date: Sat, 6 Jan 2007 19:37:23 +0000
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
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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