Author |
|
rttrey Newbie
Joined: 21 February 2009
Online Status: Offline Posts: 3
|
Posted: 21 February 2009 at 6:58am | IP Logged
|
|
|
I understand that there is the option for SMTP Authentication; however, the issue I have is that the SMTP Authentication requires a different user name (without the @domain.com).
I was wondering if this is something that can be done by changing coding somewhere or if this is not possible?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 21 February 2009 at 3:24pm | IP Logged
|
|
|
Please let us know the name and version of the product you're referring to. In case if your question applies to AfterLogic WebMail, we need to know whether you use Lite or Pro version, as well as the platform (ASP.NET or PHP).
Regards,
Igor
|
Back to Top |
|
|
rttrey Newbie
Joined: 21 February 2009
Online Status: Offline Posts: 3
|
Posted: 23 February 2009 at 9:42am | IP Logged
|
|
|
O sorry I forgot to include that. I am using WebMail Lite for now and am thinking of upgrading to Pro once I have it working properly.
|
Back to Top |
|
|
rttrey Newbie
Joined: 21 February 2009
Online Status: Offline Posts: 3
|
Posted: 23 February 2009 at 10:19am | IP Logged
|
|
|
WebMail Lite PHP version that is.
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 24 February 2009 at 2:54am | IP Logged
|
|
|
In order to modify WebMail Lite PHP behavior to suit your needs, you should edit class_smtp.php file. Search for Send() function and perform the following modification in it:
Code:
if ($result && $account->MailOutAuthentication)
{
$result = CSmtp::ExecuteCommand($link, 'AUTH LOGIN', $log);
$mailOutLogin = ($account->MailOutLogin) ?
$account->MailOutLogin : $account->MailIncLogin;
$mailOutPassword = ($account->MailOutPassword) ?
$account->MailOutPassword : $account->MailIncPassword;
// add the following line
$mailOutLogin = trim(EmailAddress::GetAccountNameFromEmail($mailOutLogin));
if ($result)
{
$log->WriteLine('[SMTP] Sending encoded login');
$result = CSmtp::ExecuteCommand($link, base64_encode($mailOutLogin), $log);
} |
|
|
Regards,
Igor
|
Back to Top |
|
|
ninna765 Newbie
Joined: 12 January 2011 Location: Denmark
Online Status: Offline Posts: 3
|
Posted: 12 January 2011 at 8:09am | IP Logged
|
|
|
Hello experts!
Anybody knows if the danish "sol-mail" uses smtp?
Hope you can help,cause i have googled it and can not find the answer.
|
Back to Top |
|
|
mysendmail Newbie
Joined: 10 September 2012 Location: United States
Online Status: Offline Posts: 2
|
Posted: 11 October 2012 at 2:08am | IP Logged
|
|
|
Hi Admin,
How to fix a SMTP Email Server breakdown?
Can anyone of you please explain the simple method..
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 11 October 2012 at 2:12am | IP Logged
|
|
|
Not sure how that's related to MailBee components, please elaborate.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|