Package | Description |
---|---|
i2p.susi.webmail |
The SusiMail webapp, which implements a webmail interface,
POP3 and SMTP client-side protocols, and local caching of email.
|
i2p.susi.webmail.encoding |
Modifier and Type | Method and Description |
---|---|
ReadBuffer |
MailPart.decode(int offset) |
Constructor and Description |
---|
MailPart(String uidl,
ReadBuffer readBuffer) |
MailPart(String uidl,
ReadBuffer readBuffer,
int offset,
int length) |
Modifier and Type | Method and Description |
---|---|
ReadBuffer |
Encoding.decode(byte[] in)
This implementation just calls decode(in, 0, in.length).
|
ReadBuffer |
HeaderLine.decode(byte[] in,
int offset,
int length)
Decode all the header lines, up through \r\n\r\n,
and puts them in the ReadBuffer, including the \r\n\r\n
|
ReadBuffer |
Base64.decode(byte[] in,
int offset,
int length) |
ReadBuffer |
EightBit.decode(byte[] in,
int offset,
int length) |
ReadBuffer |
HTML.decode(byte[] in,
int offset,
int length) |
ReadBuffer |
SevenBit.decode(byte[] in,
int offset,
int length) |
abstract ReadBuffer |
Encoding.decode(byte[] in,
int offset,
int length) |
ReadBuffer |
EightBit.decode(ReadBuffer in) |
ReadBuffer |
Encoding.decode(ReadBuffer in)
This implementation just calls decode(in.content, in.offset, in.length).
|
ReadBuffer |
Encoding.decode(String str)
This implementation just converts the string to a byte array
and then calls encode(byte[]).
|