| Author |  | 
      
        | rttrey Newbie
 
  
 
 Joined: 21 February 2009
 Online Status: Offline
 Posts: 3
 | 
          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).
           | Posted: 21 February 2009 at 6:58am | IP Logged |   |  
           | 
 |  
 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: 6167
 | 
          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).
           | Posted: 21 February 2009 at 3:24pm | IP Logged |   |  
           | 
 |  
 Regards,
 Igor
 | 
       
        | Back to Top |     | 
       
       
        |  | 
        | rttrey Newbie
 
  
 
 Joined: 21 February 2009
 Online Status: Offline
 Posts: 3
 | 
          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.
           | Posted: 23 February 2009 at 9:42am | IP Logged |   |  
           | 
 |  
 
 | 
       
        | Back to Top |     | 
       
       
        |  | 
        | rttrey Newbie
 
  
 
 Joined: 21 February 2009
 Online Status: Offline
 Posts: 3
 | 
          WebMail Lite PHP version that is.
           | Posted: 23 February 2009 at 10:19am | IP Logged |   |  
           | 
 |  | 
       
        | Back to Top |     | 
       
       
        |  | 
        | Igor AfterLogic Support
 
  
 
 Joined: 24 June 2008
 Location: United States
 Online Status: Offline
 Posts: 6167
 | 
          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:
           | Posted: 24 February 2009 at 2:54am | IP Logged |   |  
           | 
 |  
 
 
| 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
 | 
          Hello experts!
           | Posted: 12 January 2011 at 8:09am | IP Logged |   |  
           | 
 |  
 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
 | 
          Hi Admin,
           | Posted: 11 October 2012 at 2:08am | IP Logged |   |  
           | 
 |  
 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: 6167
 | 
          Not sure how that's related to MailBee components, please elaborate.
           | Posted: 11 October 2012 at 2:12am | IP Logged |   |  
           | 
 |  
 --
 Regards,
 Igor, AfterLogic Support
 | 
       
        | Back to Top |     | 
       
       
        |  |