TDAT: protected void rejectRemoteRecipient(MailAddress recipient) throws MessagingException { | |
// Update the flags of the received message | |
if (!isLeaveRemoteRecipient()) | |
setMessageDeleted(); | |
if (isMarkRemoteRecipientSeen()) | |
setMessageSeen(); | |
StringBuilder messageBuffer = new StringBuilder("Rejected mail intended for remote recipient: "); | |
messageBuffer.append(recipient); | |
messageBuffer.append('.'); | |
logStatusInfo(messageBuffer.toString()); | |
} | |
COM: <s> method reject remote recipient </s> | |