Open GoogleCodeExporter opened 9 years ago
Original comment by hontvari@flyordie.com
on 12 May 2013 at 12:48
Yes, I think it would be interesting to trace the message from the log.
Using the id generated by the server it is possible to make the relation
between
what was sent and what was received
Attached Patch
Original comment by chley...@gmail.com
on 4 Mar 2014 at 8:30
Attachments:
[deleted comment]
A more interesting solution would be to add the following in the SMTPServer
class.
public void setCommandHandler (CommandHandler CommandHandler) {
this.commandHandler = CommandHandler;
}
This would overload CommandRegistry CommandHandler classes and so define its
own controls.
MyDataCommand could be
@ Override
public void execute (String commandString, Session sess)
throws IOException {DropConnectionException
super.execute (commandString, sess);
log.info ("Message" + sess.getSessionId () + " queued for
delivery.");
}
Original comment by chley...@gmail.com
on 4 Mar 2014 at 9:32
Original issue reported on code.google.com by
ericparu...@gmail.com
on 17 Dec 2012 at 8:36