Link to home
Start Free TrialLog in
Avatar of paulkatz
paulkatz

asked on

Unable to Relay - sending through smtp from IIS app

Our development group uses jira website and they have setup the smtp to our exchange server. It is able to send emails internally, but when they try to send to an external email address they get the following info in the log...

An error has occurred with sending the test email:
com.atlassian.mail.MailException: javax.mail.SendFailedException: Invalid Addresses;
  nested exception is:
      com.sun.mail.smtp.SMTPAddressFailedException: 550 5.7.1 Unable to relay

I have tried adding the server IP address to the connector, but it doesn't send out to an external email address. This stopped working once we found out we were an open relay with our default connector and turned that off.

We are using Exchange 2007
Avatar of stanley_stars
stanley_stars
Flag of United States of America image

Check your receive connectors Authentication and Permissions tab. I believe that for the authentication you can use Externally Secured only and for Permissions make sure Anonymous Users is selected at a minimum.
Avatar of GundogTrainer
GundogTrainer

can you prove you can connect to the server from command line from the server with the code running.
Also if its on the same server you may need to ad 127.0.0.1 as well as the actual IP.

(replace the server name below)
telnet <smtp server name here> 25
Avatar of Rick Fee
I would create a new receive connector called JRE Relay or something like that and follow the article:

http://msexchangeteam.com/archive/2006/12/28/432013.aspx

You will have to select anonymous for the connector if not authenticating and run shell command:  Get-ReceiveConnector "JRE Relay" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "ms-Exch-SMTP-Accept-Any-Recipient"
Avatar of paulkatz

ASKER

I set a receive connector to accept from only that server IP, set the authentication to externally secured and permissions to anonymous and exchange servers (which is needed), but still cannot relay.

The jira mail server configuration does ask for a "from address"; does this have to be a mailbox within our server (they set it up as jira-noreply@<ourdomain>.com)
Externally secured is not correct unless your using IPsec or something along these lines.   This is all internal correct?   Typically I leave the defaults like TLS, Basic Auth, Basic Auth only after TLS, Exchange Server auth, and intergrated auth....

you ran the shell command?

Get-ReceiveConnector "JRE Relay" | Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "ms-Exch-SMTP-Accept-Any-Recipient"
I followed the steps from the microsoft kb article and created a new receive connector, yet I still get the same error; what am I missing?
ASKER CERTIFIED SOLUTION
Avatar of Rick Fee
Rick Fee
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial