Browse Source

Think I've got the encoding working - will experiment to test.

Jordan 11 years ago
parent
commit
2ce12aac80
1 changed files with 1 additions and 1 deletions
  1. 1 1
      email.go

+ 1 - 1
email.go

@@ -198,7 +198,7 @@ func quotePrintEncode(w io.Writer, s string) error {
 			continue
 		} else {
 			//non-printable.. encode it (TODO)
-			if _, err := fmt.Fprintf(w, "%s", string(c)); err != nil {
+			if _, err := fmt.Fprintf(w, "%s%X", "=", c); err != nil {
 				return err
 			}
 			mc++