Search The ForumSearch   RegisterRegister  LoginLogin

MailBee SMTP

 AfterLogic Forum : MailBee SMTP
Subject Topic: SMTP Authentication Issue Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
rttrey
Newbie
Newbie


Joined: 21 February 2009
Online Status: Offline
Posts: 3
Posted: 21 February 2009 at 6:58am | IP Logged Quote rttrey

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 View rttrey's Profile Search for other posts by rttrey
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6037
Posted: 21 February 2009 at 3:24pm | IP Logged Quote Igor

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 View Igor's Profile Search for other posts by Igor
 
rttrey
Newbie
Newbie


Joined: 21 February 2009
Online Status: Offline
Posts: 3
Posted: 23 February 2009 at 9:42am | IP Logged Quote rttrey

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 View rttrey's Profile Search for other posts by rttrey
 
rttrey
Newbie
Newbie


Joined: 21 February 2009
Online Status: Offline
Posts: 3
Posted: 23 February 2009 at 10:19am | IP Logged Quote rttrey

WebMail Lite PHP version that is.
Back to Top View rttrey's Profile Search for other posts by rttrey
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6037
Posted: 24 February 2009 at 2:54am | IP Logged Quote Igor

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 View Igor's Profile Search for other posts by Igor
 
ninna765
Newbie
Newbie
Avatar

Joined: 12 January 2011
Location: Denmark
Online Status: Offline
Posts: 3
Posted: 12 January 2011 at 8:09am | IP Logged Quote ninna765

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 View ninna765's Profile Search for other posts by ninna765
 
mysendmail
Newbie
Newbie
Avatar

Joined: 10 September 2012
Location: United States
Online Status: Offline
Posts: 2
Posted: 11 October 2012 at 2:08am | IP Logged Quote mysendmail

Hi Admin,

How to fix a SMTP Email Server breakdown?

Can anyone of you please explain the simple method..
Back to Top View mysendmail's Profile Search for other posts by mysendmail Visit mysendmail's Homepage
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6037
Posted: 11 October 2012 at 2:12am | IP Logged Quote Igor

Not sure how that's related to MailBee components, please elaborate.

--
Regards,
Igor, AfterLogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide