Datasets:
apcl
/

Modalities:
Text
Formats:
webdataset
Libraries:
Datasets
WebDataset
mcmillco's picture
init
e789b06
raw
history blame
579 Bytes
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>