MarkCav2001 ha scritto: > JAMES 2.3.0 - Production system > > I'm seeing this in the james smtpserver log. > ERROR smtpserver: Error parsing recipient address: [to:[EMAIL PROTECTED] > (note: ive changed the email addr here to protect the real addr) > > The underscore in the domain name is causing james to raise an exception > back to the client application. > I'm assuming that _ is a valid character in email domain names these days, > how do i get james to sent this mail out ?
These days?? What is valid is defined in a well known RFC and everyone should keep following it: http://rfc.net/rfc1035.html#s2.3.1. So, basically, letters, digit and the dash. Nothing else is valid in a domain name (and you can't use digit at start and the dash can only be placed in the middle). me_uk.com is not a valid domain name. It is not about JAMES or any other mail server, but about DNS. > This is what i see in the client application (java) .... > javax.mail.SendFailedException: Invalid Addresses; > nested exception is: > com.sun.mail.smtp.SMTPAddressFailedException: 553 5.1.3 Syntax error in > recipient address > > at com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1196) > at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584) You're supposed to send mail to valid dns names. Stefano --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
