write( MESSAGE_OK );
if( log.isDebugEnabled() ) { log.debug( "RCTP TO: " + address.getAddress() + " accepted." ); }
}
else {
if( log.isInfoEnabled() ) log.info( "Invalid delivery address for incoming mail: " + toAddress + " from client: " + clientIp + " / " + message.getFromAddress() );
throw new InvalidAddressException();
}
}
catch( InvalidAddressException iae ) {
write( MESSAGE_USER_NOT_LOCAL );
log.debug( "RCTP TO: " + toAddress + " rejected." );