Uses of Class
org.apache.mailet.MailAddress

Packages that use MailAddress
org.apache.james   
org.apache.james.core Implementations of core James services and concepts. 
org.apache.james.services A set of interfaces for commonly used, generic James concepts. 
org.apache.james.transport.mailets Core mailets for use with the Mailet API. 
org.apache.james.transport.matchers Core matchers for use with the Mailet API. 
org.apache.james.userrepository Implementations of user repositories for use in James. 
org.apache.mailet The classes that constitute the Mailet API. 
 

Uses of MailAddress in org.apache.james
 

Methods in org.apache.james that return MailAddress
 MailAddress James.getPostmaster()
          Returns the address of the postmaster for this server.
 

Methods in org.apache.james with parameters of type MailAddress
 void James.sendMail(MailAddress sender, Collection recipients, MimeMessage message)
          Place a mail on the spool for processing
 void James.sendMail(MailAddress sender, Collection recipients, MimeMessage message, String state)
          Place a mail on the spool for processing
 void James.sendMail(MailAddress sender, Collection recipients, InputStream msg)
          Place a mail on the spool for processing
 void James.bounce(Mail mail, String message, MailAddress bouncer)
          This generates a response to the Return-Path address, or the address of the message's sender if the Return-Path is not available.
 void James.storeMail(MailAddress sender, MailAddress recipient, MimeMessage message)
           
 void James.storeMail(MailAddress sender, MailAddress recipient, MimeMessage message)
           
 

Uses of MailAddress in org.apache.james.core
 

Methods in org.apache.james.core that return MailAddress
 MailAddress MailImpl.getSender()
          Get the sender of this MailImpl.
 

Methods in org.apache.james.core with parameters of type MailAddress
 void MailImpl.setSender(MailAddress sender)
          Set the sender of this MailImpl.
 

Constructors in org.apache.james.core with parameters of type MailAddress
MailImpl(String name, MailAddress sender, Collection recipients)
          A constructor that creates a MailImpl with the specified name, sender, and recipients.
MailImpl(String name, MailAddress sender, Collection recipients, InputStream messageIn)
          A constructor that creates a MailImpl with the specified name, sender, recipients, and message data.
MailImpl(String name, MailAddress sender, Collection recipients, MimeMessage message)
          A constructor that creates a MailImpl with the specified name, sender, recipients, and MimeMessage.
 

Uses of MailAddress in org.apache.james.services
 

Methods in org.apache.james.services that return MailAddress
 MailAddress JamesUser.getForwardingDestination()
          Return the destination to which email should be forwarded
 

Methods in org.apache.james.services with parameters of type MailAddress
 boolean JamesUser.setForwardingDestination(MailAddress address)
          Set destination for forwading mail TODO: Should we use a MailAddress?
 void MailServer.sendMail(MailAddress sender, Collection recipients, MimeMessage msg)
          Pass a MimeMessage to this MailServer for processing
 void MailServer.sendMail(MailAddress sender, Collection recipients, InputStream msg)
          Pass a MimeMessage to this MailServer for processing
 

Uses of MailAddress in org.apache.james.transport.mailets
 

Fields in org.apache.james.transport.mailets declared as MailAddress
protected  MailAddress JDBCListserv.listservAddress
           
 

Methods in org.apache.james.transport.mailets that return MailAddress
 MailAddress Redirect.getReplyTo()
          Returns the reply to address as a string.
 MailAddress Redirect.getSender()
          returns the senders address, as a MailAddress
 MailAddress JDBCListserv.getListservAddress()
          The email address that this listserv processes on.
 MailAddress GenericListserv.getListservAddress()
          The email address that this listserv processes on.
 

Methods in org.apache.james.transport.mailets with parameters of type MailAddress
abstract  boolean GenericListservManager.addAddress(MailAddress address)
          Adds an address to the listserv.
abstract  boolean GenericListservManager.removeAddress(MailAddress address)
          Removes an address from the listserv.
abstract  boolean GenericListservManager.existsAddress(MailAddress address)
          Indicates whether an address already exists on the listserv.
 boolean AvalonListservManager.addAddress(MailAddress address)
          Add an address to the list.
 boolean AvalonListservManager.removeAddress(MailAddress address)
          Remove an address from the list.
 boolean AvalonListservManager.existsAddress(MailAddress address)
           
 

Uses of MailAddress in org.apache.james.transport.matchers
 

Methods in org.apache.james.transport.matchers with parameters of type MailAddress
 boolean UserIs.matchRecipient(MailAddress recipient)
           
 boolean RecipientIsLocal.matchRecipient(MailAddress recipient)
           
 boolean RecipientIs.matchRecipient(MailAddress recipient)
           
 boolean HostIsLocal.matchRecipient(MailAddress recipient)
           
 boolean HostIs.matchRecipient(MailAddress recipient)
           
 boolean CommandForListserv.matchRecipient(MailAddress recipient)
           
 

Uses of MailAddress in org.apache.james.userrepository
 

Methods in org.apache.james.userrepository that return MailAddress
 MailAddress DefaultJamesUser.getForwardingDestination()
          Get the destination address to which mail to this user will be forwarded.
 

Methods in org.apache.james.userrepository with parameters of type MailAddress
 boolean DefaultJamesUser.setForwardingDestination(MailAddress address)
          Set the destination address to which mail to this user will be forwarded.
 

Uses of MailAddress in org.apache.mailet
 

Methods in org.apache.mailet that return MailAddress
 MailAddress Mail.getSender()
          The sender of the message, as specified by the MAIL FROM header, or internally defined
 MailAddress MailetContext.getPostmaster()
          Returns the postmaster's address for this mailet context.
 

Methods in org.apache.mailet with parameters of type MailAddress
abstract  boolean GenericRecipientMatcher.matchRecipient(MailAddress recipient)
          Simple check to match exclusively on the email address (not message information).
 void MailetContext.bounce(Mail mail, String message, MailAddress bouncer)
          Bounces the email message using the provided email address as the sender of the bounce.
 void MailetContext.sendMail(MailAddress sender, Collection recipients, MimeMessage msg)
          Send an outgoing message to the top of this mailet container's root queue.
 void MailetContext.sendMail(MailAddress sender, Collection recipients, MimeMessage msg, String state)
          Send an outgoing message to the top of this mailet container queue for the appropriate processor that is specified.
 void MailetContext.storeMail(MailAddress sender, MailAddress recipient, MimeMessage msg)
          Stores mail into local accounts (POP3 by default)
 void MailetContext.storeMail(MailAddress sender, MailAddress recipient, MimeMessage msg)
          Stores mail into local accounts (POP3 by default)
 



"Copyright © 1999-2002 Apache Jakarta Project. All Rights Reserved."