formatting fix
authoradam <adam@megacz.com>
Thu, 24 Jun 2004 01:28:04 +0000 (01:28 +0000)
committeradam <adam@megacz.com>
Thu, 24 Jun 2004 01:28:04 +0000 (01:28 +0000)
darcs-hash:20040624012804-5007d-6ad04c4cdcae742e4c0f97ec00d4121e9a35dd29.gz

src/org/ibex/mail/Message.java

index 2aa9331..3b3fe7a 100644 (file)
@@ -7,8 +7,10 @@ import java.util.*;
 import java.net.*;
 import java.io.*;
 
-// soft line limit (suggested): 78 chars /  hard line limit: 998 chars
+// FIXME this is important
 // folded headers: can insert CRLF anywhere that whitespace appears (before the whitespace)
+
+// soft line limit (suggested): 78 chars /  hard line limit: 998 chars
 // date/time parsing: see spec, 3.3
 
 // FIXME: messages must NEVER contain 8-bit binary data; this is a violation of IMAP
@@ -33,8 +35,8 @@ public class Message extends JSReflection {
 
     public final Date date;
     public final Address to;
-    public final Address from;        // if multiple From entries, this is sender
-    public final Address replyto;     // if none provided, this is equal to sender
+    public final Address from;                // if multiple From entries, this is sender
+    public final Address replyto;             // if none provided, this is equal to sender
     public final String subject;
     public final String messageid;
     public final Address[] cc;