The expected use is to write out RFC822 style headers to an output stream.
newline = new byte[2]; newline[0] = (byte)'\r"; newline[1] = (byte)'\n"; super(out);
try { byte[] bytes = ASCIIUtility.getBytes(s); out.write(bytes); out.write(newline); } catch (Exception ex) { throw new MessagingException("IOException", ex); }
try { out.write(newline); } catch (Exception ex) { throw new MessagingException("IOException", ex); }