パッケージ | 説明 |
---|---|
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 | |
i2p.susi.webmail.pop3 |
修飾子とタイプ | フィールド | 説明 |
---|---|---|
ReadBuffer |
MailPart.buffer |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
ReadBuffer |
MailPart.decode(int offset) |
|
ReadBuffer |
Mail.getBody() |
This contains the header also.
|
ReadBuffer |
Mail.getHeader() |
This may or may not contain the body also.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
void |
Mail.setBody(ReadBuffer rb) |
|
void |
Mail.setHeader(ReadBuffer rb) |
コンストラクタ | 説明 |
---|---|
MailPart(java.lang.String uidl,
ReadBuffer readBuffer) |
|
MailPart(java.lang.String uidl,
ReadBuffer readBuffer,
int offset,
int length) |
修飾子とタイプ | メソッド | 説明 |
---|---|---|
ReadBuffer |
Base64.decode(byte[] in,
int offset,
int length) |
|
ReadBuffer |
EightBit.decode(byte[] in,
int offset,
int length) |
|
ReadBuffer |
EightBit.decode(ReadBuffer in) |
|
ReadBuffer |
Encoding.decode(byte[] in) |
This implementation just calls decode(in, 0, in.length).
|
abstract ReadBuffer |
Encoding.decode(byte[] in,
int offset,
int length) |
|
ReadBuffer |
Encoding.decode(ReadBuffer in) |
This implementation just calls decode(in.content, in.offset, in.length).
|
ReadBuffer |
Encoding.decode(java.lang.String str) |
This implementation just converts the string to a byte array
and then calls encode(byte[]).
|
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 |
HTML.decode(byte[] in,
int offset,
int length) |
|
ReadBuffer |
QuotedPrintable.decode(byte[] in,
int offset,
int length) |
|
ReadBuffer |
SevenBit.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 |
POP3MailBox.getBody(java.lang.String uidl) |
Fetch the body.
|
ReadBuffer |
POP3MailBox.getHeader(java.lang.String uidl) |
Fetch the header.
|
修飾子とタイプ | メソッド | 説明 |
---|---|---|
void |
POP3MailBox.FetchRequest.setBuffer(ReadBuffer buffer) |