Methods Summary |
---|
public java.lang.String | getAlias()Get the user id for which this id is an alias.
return alias;
|
public boolean | getAliasing()Get whether this user id is an alias.
return aliasing;
|
public boolean | getForwarding()Get whether mail to this user is to be forwarded to another
email address.
return forwarding;
|
public org.apache.mailet.MailAddress | getForwardingDestination()Get the destination address to which mail to this user
will be forwarded.
return forwardingDestination;
|
public void | initialize()
forwarding = false;
forwardingDestination = null;
aliasing = false;
alias = "";
|
public boolean | setAlias(java.lang.String address)Set the user id for which this id is an alias.
/* TODO: Some verification would be good */
alias = address;
return true;
|
public void | setAliasing(boolean alias)Set whether this user id is an alias.
aliasing = alias;
|
public void | setForwarding(boolean forward)Set whether mail to this user is to be forwarded to another
email address
forwarding = forward;
|
public boolean | setForwardingDestination(org.apache.mailet.MailAddress address)Set the destination address to which mail to this user
will be forwarded.
/* TODO: Some verification would be good */
forwardingDestination = address;
return true;
|