| Package | Description | 
|---|---|
| org.columba.ristretto.message | 
 Datastructures associated with Messages. 
 | 
| org.columba.ristretto.parser | 
 Parsers for message parsing. 
 | 
| org.columba.ristretto.smtp | 
 Low level implementation of the SMTP Protocol as specified by RFC 2821. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Address[] | 
BasicHeader.getBcc()
Gets the field "Bcc" from the header and uses the  
AddressParser
 to return a parsed Address list | 
Address | 
BasicHeader.getBeenThere()
Gets the field "X-BeenThere" from the header and uses the
  
AddressParser to return a parsed Address list | 
Address[] | 
BasicHeader.getCc()
Gets the field "Cc" from the header and uses the  
AddressParser to
 return a parsed Address list | 
Address | 
BasicHeader.getFrom()
Gets the field "From" from the header and uses the  
AddressParser
 to return a parsed Address list | 
Address[] | 
BasicHeader.getReplyTo()
Gets the field "Reply-To" from the header and uses the
  
AddressParser to return a parsed Address list | 
Address | 
BasicHeader.getSender()
Gets the field "Sender" from the header and uses the
  
AddressParser to return a parsed Address list | 
Address[] | 
BasicHeader.getTo()
Gets the field "To" from the header and uses the  
AddressParser to
 return a parsed Address list | 
static Address | 
Address.parse(java.lang.CharSequence source)
Uses the  
AddressParser to parse the CharSequence. | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
Address.compareTo(Address arg0)  | 
void | 
BasicHeader.setBcc(Address[] addresses)
Sets the field "Bcc" of the header and uses  
EncodedWord to encode
 names if needed in UTF-8 using QuotedPrintable encoding. | 
void | 
BasicHeader.setCc(Address[] addresses)
Sets the field "Cc" of the header and uses  
EncodedWord to encode
 names if needed in UTF-8 using QuotedPrintable encoding. | 
void | 
BasicHeader.setFrom(Address address)
Sets the field "From" of the header and uses  
EncodedWord to
 encode names if needed in UTF-8 using QuotedPrintable encoding. | 
void | 
BasicHeader.setReplyTo(Address[] addresses)
Sets the field "Reply-To" of the header and uses  
EncodedWord to
 encode names if needed in UTF-8 using QuotedPrintable encoding. | 
void | 
BasicHeader.setTo(Address[] addresses)
Sets the field "To" of the header and uses  
EncodedWord to encode
 names if needed in UTF-8 using QuotedPrintable encoding. | 
| Modifier and Type | Method and Description | 
|---|---|
static Address | 
AddressParser.parseAddress(java.lang.CharSequence address)
Parses a address like specified in RFC 2822. 
 | 
static Address[] | 
AddressParser.parseMailboxList(java.lang.CharSequence mailboxList)
Parses a mailbox-list like specified in RFC 2822. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Address[] | 
SMTPProtocol.expand(Address mailinglist)
Expands a given mailinglist address to all members of that list. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Address[] | 
SMTPProtocol.expand(Address mailinglist)
Expands a given mailinglist address to all members of that list. 
 | 
void | 
SMTPProtocol.mail(Address from)
Sends a MAIL command which specifies the sender's email address and
 starts a new mail. 
 | 
void | 
SMTPProtocol.rcpt(Address address)
Sends a RCPT TO: command which specifies a recipient of the mail started
 by the MAIL command. 
 | 
void | 
SMTPProtocol.rcpt(int type,
    Address address)
Sends a RCPT command which specifies a recipient of the mail started by
 the MAIL command. 
 | 
Copyright © 2021. All Rights Reserved.