sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit a3a6c6ba7fd83bbe91ee963dd7e2ebe4eb9dc786
parent eaf5092354898761051864edf0b825a81715297c
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Thu, 23 Aug 2007 17:21:05 +0000

encoding bugfix thanks to jeff covey

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@542 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/util.rb | 2 ++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/lib/sup/util.rb b/lib/sup/util.rb
@@ -77,6 +77,8 @@ module RMail
           [IO.read(fn)].pack "m"
         when "quoted-printable"
           [IO.read(fn)].pack "M"
+        when "7bit", "8bit"
+          IO.read(fn)
         else
           raise EncodingUnsupportedError, t.encoding
         end