RE: servlet sending mail with javamail

2003-07-23 Thread Robert Koberg
Arrrggghh... That was it. Thanks again, Noel. Thanks, -Rob > -Original Message- > From: Noel J. Bergman [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 23, 2003 1:33 PM > To: James Users List > > Are you sure that > > new PasswordAuthentication("[EMAIL PROTECTED]", "testpasswd"); >

RE: servlet sending mail with javamail

2003-07-23 Thread Noel J. Bergman
Are you sure that new PasswordAuthentication("[EMAIL PROTECTED]", "testpasswd"); shouldn't be: new PasswordAuthentication("test", "testpasswd"); --- Noel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

RE: servlet sending mail with javamail

2003-07-23 Thread Robert Koberg
Hi, > -Original Message- > From: Noel J. Bergman [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 23, 2003 1:02 PM > To: James Users List > > > > I am trying to send an email from a servlet with javamail (on a dev > > machine not the james machine). I have SMTP AUTH on. I create the > >

RE: servlet sending mail with javamail

2003-07-23 Thread Noel J. Bergman
> I am trying to send an email from a servlet with javamail (on a dev > machine not the james machine). I have SMTP AUTH on. I create the > PasswordAuthentication with a plaintext username and password. > javax.mail.AuthenticationFailedException This means that the SMTP transport couldn't connec