Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

  1. #1
    ReneZ is offline Junior Member
    Join Date
    Feb 2010
    Posts
    1

    Default SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    Hello everybody,

    I've got a problem with sugar 5.5.1RC1 Outgoing Mail Configuration. Although I configured smtp to not use authentication I recieve the following error, whent I trie to test the smtp settings:
    Code:
    Thu Feb  4 14:54:58 2010 [1319][20e728be-c403-2bbc-20c9-4b4f026f9659][FATAL] SMTP -> ERROR:AUTH not accepted from server. Code: 503 Reply: 503 5.5.1 Error: authentication not enabled
    
    Thu Feb  4 14:54:58 2010 [1319][20e728be-c403-2bbc-20c9-4b4f026f9659][FATAL] SugarPHPMailer encountered an error: SMTP Error: Could not authenticate.
    Thu Feb  4 14:54:58 2010 [1319][20e728be-c403-2bbc-20c9-4b4f026f9659][FATAL] SugarPHPMailer encountered an error: SMTP Error: Could not connect to SMTP host.
    Thu Feb  4 14:54:58 2010 [1319][20e728be-c403-2bbc-20c9-4b4f026f9659][FATAL] SugarPHPMailer encountered an error: The outbound mail server selected for the mail account you are using is invalid.  Check the settings or select a different mail server for the mail account.
    Our mail server is configured to relay all mails from our domain from internal network without authentification. When I use the settings in the Emails modul I can send mails without any problems.

    Any suggestions? Thanks for your help!

  2. #2
    GT
    GT is offline Junior Member
    Join Date
    Feb 2010
    Posts
    1

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    I am having a similar problem with CE 5.5.1 RC1 ... all local system email works fine. Our network email service is working fine. I've unchecked the "Use SMTP Authentication" box so I assume it is something within the PHP mailer that's ignoring this flag and still insisting on using AUTH.

    From sugarcrm log ...
    Sat Feb 06 13:42:47 2010 [26425][1][FATAL] SMTP -> ERROR:AUTH not accepted from server. Code: 500 Reply: 500 5.5.1 Command unrecognized: "AUTH LOGIN"

    Sat Feb 06 13:42:47 2010 [26425][1][FATAL] SugarPHPMailer encountered an error: SMTP Error: Could not authenticate.
    Sat Feb 06 13:42:47 2010 [26425][1][FATAL] SugarPHPMailer encountered an error: SMTP Error: Could not connect to SMTP host.
    Sat Feb 06 13:42:47 2010 [26425][1][FATAL] SugarPHPMailer encountered an error: An outbound mail server is not configured for outoing email for the mail account that you are using. Please select or add an outbound mail server for the mail account.

    From mail server log:
    abc.foo.com [xxx.xxx.xxx.xxx] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA-v4

    Gary

  3. #3
    Enrico Weber is offline Senior Member
    Join Date
    Dec 2009
    Posts
    35

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    We have the same problem. Can any one help?

    Enrico

  4. #4
    mcmlxxii's Avatar
    mcmlxxii is offline Sugar Community Member
    Join Date
    Jul 2009
    Posts
    21

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    This [REGRESSION] bug is not fixed in RC2. Sugar should not be attempting to use AUTH when it's not enabled in the system settings.

  5. #5
    primesoftnz is offline Junior Member
    Join Date
    Mar 2010
    Posts
    4

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    Still having this issue with Sugar 5.5.1 RC3. Is there a link to the original bug report. Is there a work around?
    Where are the logs for SugarCRM?

  6. #6
    primesoftnz is offline Junior Member
    Join Date
    Mar 2010
    Posts
    4

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    Update: Over the weekend I uninstalled SUgar 5.5.1 RC3 and installed SUgar 5.5.1 GA and still get this issue

  7. #7
    silverstone is offline Member
    Join Date
    Mar 2010
    Posts
    5

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    Facing the same problem with 5.5.1 I could fix it by this workaround:

    open /include/phpmailer/class.phpmailer.php with your favourite editor and edit a part of function SmtpConnect() which starts at line 587 here. Change line 628 from
    PHP Code:
            if($this->SMTPAuth) { 
    to
    PHP Code:
            if(false) { 
    and save it at your own risk. With this change there will be no more authentication done. Restart httpd and email should work.

    HTH silver

  8. #8
    primesoftnz is offline Junior Member
    Join Date
    Mar 2010
    Posts
    4

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    Thanks Silverstone, that works, at least I can move forward on my project while it gets sorted permanently.

  9. #9
    mcmlxxii's Avatar
    mcmlxxii is offline Sugar Community Member
    Join Date
    Jul 2009
    Posts
    21

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    If this helps anyone there is a fix:

    Edit modules/EmailMan/testOutboundEmail.php line 57

    Change
    PHP Code:
    ($_REQUEST['mail_smtpauth_req'] == true 
    to
    PHP Code:
    ($_REQUEST['mail_smtpauth_req'] === true 

  10. #10
    dviruega is offline Member
    Join Date
    Dec 2010
    Posts
    5

    Default Re: SUgar 5.5.1 RC1: MTP -> ERROR:AUTH not accepted from server

    Thanks a lot!! We could fix our smtp problem with this post!!!

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 1
    Last Post: 2010-02-03, 08:50 PM
  2. Replies: 1
    Last Post: 2008-12-12, 06:14 PM
  3. Replies: 1
    Last Post: 2008-11-17, 02:34 PM
  4. ldap auth error..
    By g00s3m4n in forum Help
    Replies: 2
    Last Post: 2006-05-09, 01:42 PM
  5. Replies: 1
    Last Post: 2006-04-17, 03:08 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •