Stefano Bagnara escribió:
Álvaro Póliz ha scritto:
Hi,
Im using JAMES as mail server in my Java aplication. With my old mail
server, everytime I tried to send mails to unexistant addresses, I got an
exception. With JAMES, when I try the same, I never get exceptions, so I
dont realize user is introducing a fake address.
Do you know any configuration issue or whatever that can solucionate this?
JAMES Server does not send "failures" during the SMTP email submission.
Instead it will send you a bounce email with the error.
Stefano
Thanks for your help Stefano.
I would like to ask for some more help. Did anyone faced the same problem
and managed to solucionate it?
Here is a pseudocode of what I need to do. If somebody finds another way to
do this, I'll be glad to try his solution.
someOperations;
try {
sendMail();
catch ( Exception generated by mail unsent (Doesn't work with JAMES) ) {
undoSomeOperations;
}
Thank you very much.