Microsoft Office Outlook 2013 can't send verification email via port 465 (SSL), when autoconfig mode choosen.

Issue #314 resolved
Former user created an issue

But if i set port for SMTP to 587 (TLS) manually - all works fine...

Thank you!

Comments (2)

  1. Peter Franken

    I have a slightly customised configuration which I forgot to take into account when I provided the new autoconfig file previously, sorry about that!

    There's still an issue with the encryption as it's currently configured for SSL which - for me at least - should be TLS. I'm not entirely sure if this is dependent on encryption config.

    In my case with the built in LE, the SMTP section in autoconfig should be:

    <Protocol>
      <Type>SMTP</Type>
      <Server><?php echo $config['server_hostname'] ?></Server>
      <Port>587</Port>
      <DomainRequired>on</DomainRequired>
      <LoginName><?php echo $email_address[0] ?></LoginName>
      <SPA>off</SPA>
      <Encryption>tls</Encryption>
      <AuthRequired>on</AuthRequired>
      <UsePOPAuth>on</UsePOPAuth>
      <SMTPLast>off</SMTPLast>
    </Protocol>
    

    Note I replaced <SSL>on</SSL> with <Encryption>tls</Encryption>.

  2. Log in to comment