/**
* @category GETSET
*/
public void setCanonical(String mailbox) {
destination = new AliasDestination();
try {
destination.setRecipient(new MailAddressFactory()
.createRecipient(mailbox));
} catch (ParseException e) {
throw new RuntimeException(e);