• Resolved web02

    (@web02)


    Hi!
    Is it possible to change the type of md5 authentication a login? This is because my server does not allow MD5 attention, any idea or suggestion is welcome

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @web02,

    I apologize I’m not sure I understand your question. The plugin does not use md5() to encrypt your passwords. Could you please share more details with the mailer you’re using?

    Thanks!

    Thread Starter web02

    (@web02)

    No, the plugin uses md5 as the type of authentication, I need to change it to type “login”

    Plugin Author Slava Abakumov

    (@slaffik)

    Hey @web02

    Could you please try this code snippet?

    add_filter( 'wp_mail_smtp_custom_options', function( $phpmailer ) {
        $phpmailer->AuthType = 'LOGIN';
        return $phpmailer;
    } );
    

    Please get back to us with the results, whether it worked for you or not.

    Hi @web02 – We haven’t heard from you in about a week, so I’m going to go ahead and mark this ticket resolved. If you still have questions, though, please feel welcome to continue the conversation.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Change MD5 Authentication’ is closed to new replies.