keep MIME headers in a byte[] until requested
[org.ibex.mail.git] / src / org / ibex / mail / MIME.java
index e47b056..3258b6b 100644 (file)
@@ -173,6 +173,7 @@ public class MIME {
        private Hashtable head = new Hashtable();
         public final int lines;
         public final String raw;
+        public String toString() { return raw; }
         public Object get(Object s) { return head.get(((String)s).toLowerCase()); }
         public String gets(String s) { return (String)get(s); }
         public static String uncomment(String val) {