Exchange 2007 relay mail to internal address
We have a business parther who developed a application server for us. This application server will able to send an email to internal user. The application for sending mail require below settings:
SMTPSender Port Username Password Domain
I'm created a new mailbox for this application as
SMTP: Send.contoso.com Port:587 Username:SIS@contoso.com.my Password:xxxx Domain:contoso.com
They will above information to their application settings.
On Exchange part, I created a new RECEIVE Connector and add the application server IP address and Authentication as TLS and External Secured, Permission: Exchange servers group.
When they did sent test email from the application, there was error generated:
5.7.3 authentication unsuccessful 5.7.4 unrecognized authentication type
Please advice
5.7.3
September 22nd, 2010 5:52am
Their application require information like this link:http://www.codemeit.com/not-working/redmine-email-504-574-unrecognized-authentication-type.html
Free Windows Admin Tool Kit Click here and download it now
September 22nd, 2010 5:57am
Since we only discuss the Exchange issue on the pure Exchange product environment in this forum and we do not have any resource about the developed application server,
it’s highly recommended to contact the Partner for further assistance.
Thank you for your understanding.
Regards,Novak Wu-MSFT
September 23rd, 2010 9:58pm
I understand but I just need know how to give correct permission to "RECEIVE CONNECTOR" since you have internal application which we trusted the IP address and on coding side, it just put as below, it able to use Exchange to relay email
$this->smtpHost = 'send.contoso.com';
$this->smtpUser = '';
$this->smtpPass = '';
$this->smtpPort = '587';
$this->linkpath = 'http://ess-las_edited.contoso.com'; //test
$this->sendmailPath = '/usr/lib/sendmail -ti';
$this->mailType = 'smtp';
$this->mailAddress =
'sis@contoso.com';///email address for ess-las
//$this->smtpAuth = 'LOGIN';
$this->smtpAuth = 'NONE';
$this->smtpSecurity = 'NONE';
But if the developer use:, Exchange unable to replay the email.I need advice how permission should I assign so that the Exchange able to replay email for application that using SMTP settings which including username and password
config.action_mailer.smtp_settings = {
:address => "send.contoso.com",
:port => 587,
:domain => "contoso.com",
:authentication => :login,
:user_name => "SIS",
:password => "sapura2010",
}
http://msexchangeteam.com/archive/2006/12/28/432013.aspx
Free Windows Admin Tool Kit Click here and download it now
September 28th, 2010 9:39pm
I found this:
http://forums.kayako.com/f56/exchange-2007-configuration-sending-emails-supportsuite-17731/index2.html
Our mailserver is Exchange 2007 Standard SP1, and in the Exchange Management Console, make the following configuration changes:
Server Configuration > Hub Transport > Receive Connectors
create a new Receive Connector with the following configuration:
General > Name = SupportSuite
General > Protocol Logging Level = None
General > FQDN = <internal mailserver hostname>
General > Max message size = 10240
Network > local IP addresses = (All Available IPv4 addresses) port 25
Network > Receive email from IP addresses = <IP of my supportsuite server>
Authentication > check Basic Authentication
Authentication > check Integrated Windows Authentication
Permissions Groups > check Exchange Users
then in the SupportSuite Admin CP, make the following configuration changes:
under Settings > CPU Optimization & Server > SMTP settings, enter in your SMTP Auth credentials, and set "Use SMTP Authentication" to YES.
lastly, test connectivity from the server running SupportSuite to your Exchange server by using telnet (instructions below assume Windows O/S).
1.) start > run > cmd
2.) telnet <mail_server> 25
3.) ehlo <mail_server>
4.) AUTH LOGIN
5.) <base64_encoded_username>
6.) <base64_encoded_password>
At this point, I received the "235 2.7.0 Authentcation successful" message, and I was able to complete my email send through telnet.
After the "ehlo <mail_server>" command, I see the following returned to me:
250-<mail_server_hostname> Hello [<support_suite_IP_address>]
250-SIZE
250-PIPLINING
250-DSN
250-ENHANCEDSTATUSCODES
250-AUTH NTLM LOGIN
250-8BITMIME
250-BINARYMIME
250 CHUNKING
September 29th, 2010 1:51am
Hi,
I'm received an error from this application server:
Inbound authentication failed with error LogonDenied for Receive connector Client CARINA. The authentication mechanism is Login. The source IP address of the client who tried to authenticate to Microsoft Exchange is [192.168.58.150].
Please help
Free Windows Admin Tool Kit Click here and download it now
September 30th, 2010 5:27am