]> git.cworth.org Git - sup/commitdiff
whoops, don't want to downcase or replying breaks
authorwmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Sat, 6 Jan 2007 19:37:23 +0000 (19:37 +0000)
committerwmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Sat, 6 Jan 2007 19:37:23 +0000 (19:37 +0000)
git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@221 5c8cc53c-5e98-4d25-b20a-d8db53a31250

lib/sup/mbox.rb

index f173defecf75aa77dedda135262f42998d3546c4..7086a798c0b73a0888837d362c90ec669042c9c3 100644 (file)
@@ -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