I am having a challenge setting a working mail solution for my site. My mail provider is part of my corporation and they will not allow me to relay from their SMTP servers. My corporation controls the DNS configurations and have strict policies regarding what is allowed. I have setup an account with authSMTP and my DNN Administrator user is authorized to send messages via authSMTP. Under Host, SMTP, I set the host settings to the authSMTP servers and perform test, and the email works as my Host Email account is set to the authozed sender.
When I go to Log in, and forget password and have a password emailed to a user, the systems "envelope from" settings is using the Users email address, not the administrators address. Therefore authSMTP is not allowing this email to be transferred. There tech support sent me this message:
"You can either change the email settings so that the 'envelope from' address matches the 'from' address or you can register users email as an authorised sender for your AuthSMTP Account."
When I setup a localhost SMTP and send an email out to my account it generally works, but due to the MX records configurations I cannot rely on this setting as mail will become taged as spam, or registered under the Mail-Abuse. Here is my localhost headers when a successful email is sent:
Received: from unknown (HELO p3pismtp01-004.prod.phx3.secureserver.net) ([10.6.12.4])
(envelope-sender <rob@icecodeproductions.com>) <== Needs to changed to the Administrators account within DNN
by smtp24-01.prod.mesa1.secureserver.net (qmail-1.03) with SMTP
for <rob@icecodeproductions.com>; 27 Apr 2010 14:13:25 -0000
X-IronPort-Anti-Spam-Result: Ak8HAPuK1ktGIiB//2dsb2JhbACQOwEBizhYccBzgnMBBIIWBA
Received: from medicusint.com ([70.34.32.127])
by p3pismtp01-004.prod.phx3.secureserver.net with ESMTP; 27 Apr 2010 07:13:14 -0700
Received: from vps013 ([127.0.0.1]) by medicusint.com with MailEnable ESMTP; Tue, 27 Apr 2010 10:13:12 -0400
MIME-Version: 1.0
From: paul.helmstetter@mededgroup.com
Sender: rob@icecodeproductions.com
To: rob@icecodeproductions.com
When I create a new user and use my authorized email account, which is the same as the admin's account, I can get my password emailed to me. I have my system configured to allow nonunique emails.
Do I need to update the Mail Services code to resolve this issue ?