Outlook 365 1808 - Autodiscover with Postfix/DovecotOutlook IMAP Sent messages in wrong folderHow to get a list of Dovecot IMAP usersDovecot handshake failure, on Postfix successIMAP TLS connection to Dovecot failsPOP3 and IMAP: Setup Gmail & ZohoPostfix + Dovecot + IMAP SSL: imap-login: Aborted loginManual autodiscover implementation failing. Why?Autodiscover additional POP accountHow do I Clear the Windows Mail Autodiscover Cache?Autodiscover in new Outlook 2016 setup not working

Early arrival in Australia, early hotel check in not available

What does a comma mean inside an 'if' statement?

What to do if SUS scores contradict qualitative feedback?

SSD - Disk is OK, one bad sector

Why do Thanos's punches not kill Captain America or at least cause some mortal injuries?

How does noise-cancellation work in Mac laptops?

Is the schwa sound consistent?

Why is this int array not passed as an object vararg array?

What are the implications of the new alleged key recovery attack preprint on SIMON?

Meaning of「〜てみたいと思います」

Create a list of all possible Boolean configurations of three constraints

Anatomically Correct Carnivorous Tree

Surely they can fit?

How are one-time password generators like Google Authenticator different from having two passwords?

Does kinetic energy warp spacetime?

Why was Endgame Thanos so different than Infinity War Thanos?

Exception propagation: When should I catch exceptions?

Understanding integration over Orthogonal Group

Why does getw return -1 when trying to read a character?

Should these notes be played as a chord or one after another?

How to compact two the parabol commands in the following example?

Extracting sublists that contain similar elements

List software from restricted, multiverse separately

What stroke width Instagram is using for its icons and how to get same results?



Outlook 365 1808 - Autodiscover with Postfix/Dovecot


Outlook IMAP Sent messages in wrong folderHow to get a list of Dovecot IMAP usersDovecot handshake failure, on Postfix successIMAP TLS connection to Dovecot failsPOP3 and IMAP: Setup Gmail & ZohoPostfix + Dovecot + IMAP SSL: imap-login: Aborted loginManual autodiscover implementation failing. Why?Autodiscover additional POP accountHow do I Clear the Windows Mail Autodiscover Cache?Autodiscover in new Outlook 2016 setup not working






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















The situation is :



  • I have a mail server with Postfix, Dovecot and Apache2 for the autodiscover URL. Mail server is set up for TLS only (465, 993 and 995)

  • the domain is controlled by myself (SRV record is setted up for autodiscover)

  • Mail client is Outlook 365 with the lastest update (1808)

The first issue is when I try to add a new mail account, I'm not asking for the password and Outlook returns a error and I have to choose POP or IMAP account type.



Then, the second issue is coming. It found the autodiscover.xml file, but it only read the IMAP or the POP section, never the SMTP. And it always says : there are an error with SMTP server.



Here is my autodiscover.xml file :



<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>IMAP</Type>
<TTL>1</TTL>
<Server>imap.domain.tld</Server>
<Port>993</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>POP3</Type>
<TTL>1</TTL>
<Server>pop.domain.tld</Server>
<Port>995</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>SMTP</Type>
<TTL>1</TTL>
<Server>smtp.domain.tld</Server>
<Port>465</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
</Response>
</Autodiscover>


Does someone have an idea?










share|improve this question
























  • Use Microsoft Remote Connectivity Analyzer to test Outlook Autodiscover and you may get some clues here.

    – Manu Meng
    Sep 17 '18 at 9:18











  • I know this tool and i have already use it. No problem with it.... But my outlook find some

    – DSX
    Sep 17 '18 at 13:10

















1















The situation is :



  • I have a mail server with Postfix, Dovecot and Apache2 for the autodiscover URL. Mail server is set up for TLS only (465, 993 and 995)

  • the domain is controlled by myself (SRV record is setted up for autodiscover)

  • Mail client is Outlook 365 with the lastest update (1808)

The first issue is when I try to add a new mail account, I'm not asking for the password and Outlook returns a error and I have to choose POP or IMAP account type.



Then, the second issue is coming. It found the autodiscover.xml file, but it only read the IMAP or the POP section, never the SMTP. And it always says : there are an error with SMTP server.



Here is my autodiscover.xml file :



<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>IMAP</Type>
<TTL>1</TTL>
<Server>imap.domain.tld</Server>
<Port>993</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>POP3</Type>
<TTL>1</TTL>
<Server>pop.domain.tld</Server>
<Port>995</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>SMTP</Type>
<TTL>1</TTL>
<Server>smtp.domain.tld</Server>
<Port>465</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
</Response>
</Autodiscover>


Does someone have an idea?










share|improve this question
























  • Use Microsoft Remote Connectivity Analyzer to test Outlook Autodiscover and you may get some clues here.

    – Manu Meng
    Sep 17 '18 at 9:18











  • I know this tool and i have already use it. No problem with it.... But my outlook find some

    – DSX
    Sep 17 '18 at 13:10













1












1








1


1






The situation is :



  • I have a mail server with Postfix, Dovecot and Apache2 for the autodiscover URL. Mail server is set up for TLS only (465, 993 and 995)

  • the domain is controlled by myself (SRV record is setted up for autodiscover)

  • Mail client is Outlook 365 with the lastest update (1808)

The first issue is when I try to add a new mail account, I'm not asking for the password and Outlook returns a error and I have to choose POP or IMAP account type.



Then, the second issue is coming. It found the autodiscover.xml file, but it only read the IMAP or the POP section, never the SMTP. And it always says : there are an error with SMTP server.



Here is my autodiscover.xml file :



<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>IMAP</Type>
<TTL>1</TTL>
<Server>imap.domain.tld</Server>
<Port>993</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>POP3</Type>
<TTL>1</TTL>
<Server>pop.domain.tld</Server>
<Port>995</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>SMTP</Type>
<TTL>1</TTL>
<Server>smtp.domain.tld</Server>
<Port>465</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
</Response>
</Autodiscover>


Does someone have an idea?










share|improve this question
















The situation is :



  • I have a mail server with Postfix, Dovecot and Apache2 for the autodiscover URL. Mail server is set up for TLS only (465, 993 and 995)

  • the domain is controlled by myself (SRV record is setted up for autodiscover)

  • Mail client is Outlook 365 with the lastest update (1808)

The first issue is when I try to add a new mail account, I'm not asking for the password and Outlook returns a error and I have to choose POP or IMAP account type.



Then, the second issue is coming. It found the autodiscover.xml file, but it only read the IMAP or the POP section, never the SMTP. And it always says : there are an error with SMTP server.



Here is my autodiscover.xml file :



<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
<Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>IMAP</Type>
<TTL>1</TTL>
<Server>imap.domain.tld</Server>
<Port>993</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>POP3</Type>
<TTL>1</TTL>
<Server>pop.domain.tld</Server>
<Port>995</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
<Account>
<AccountType>email</AccountType>
<Action>settings</Action>
<Protocol>
<Type>SMTP</Type>
<TTL>1</TTL>
<Server>smtp.domain.tld</Server>
<Port>465</Port>
<DomainRequired>on</DomainRequired>
<DomainName>domain.tld</DomainName>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
</Account>
</Response>
</Autodiscover>


Does someone have an idea?







email postfix dovecot outlook autodiscover






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 16 '18 at 15:24









Nisse Engström

19815




19815










asked Sep 15 '18 at 19:51









DSXDSX

237




237












  • Use Microsoft Remote Connectivity Analyzer to test Outlook Autodiscover and you may get some clues here.

    – Manu Meng
    Sep 17 '18 at 9:18











  • I know this tool and i have already use it. No problem with it.... But my outlook find some

    – DSX
    Sep 17 '18 at 13:10

















  • Use Microsoft Remote Connectivity Analyzer to test Outlook Autodiscover and you may get some clues here.

    – Manu Meng
    Sep 17 '18 at 9:18











  • I know this tool and i have already use it. No problem with it.... But my outlook find some

    – DSX
    Sep 17 '18 at 13:10
















Use Microsoft Remote Connectivity Analyzer to test Outlook Autodiscover and you may get some clues here.

– Manu Meng
Sep 17 '18 at 9:18





Use Microsoft Remote Connectivity Analyzer to test Outlook Autodiscover and you may get some clues here.

– Manu Meng
Sep 17 '18 at 9:18













I know this tool and i have already use it. No problem with it.... But my outlook find some

– DSX
Sep 17 '18 at 13:10





I know this tool and i have already use it. No problem with it.... But my outlook find some

– DSX
Sep 17 '18 at 13:10










1 Answer
1






active

oldest

votes


















0














We had the same problem (just issue one) with Outlook365 and a pop3s autodiscover config.
it works with OL2016, but OL365 need the to choose the account type pop.



is there a way to set the account type automatically to pop3s ?






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "2"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f931087%2foutlook-365-1808-autodiscover-with-postfix-dovecot%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    We had the same problem (just issue one) with Outlook365 and a pop3s autodiscover config.
    it works with OL2016, but OL365 need the to choose the account type pop.



    is there a way to set the account type automatically to pop3s ?






    share|improve this answer



























      0














      We had the same problem (just issue one) with Outlook365 and a pop3s autodiscover config.
      it works with OL2016, but OL365 need the to choose the account type pop.



      is there a way to set the account type automatically to pop3s ?






      share|improve this answer

























        0












        0








        0







        We had the same problem (just issue one) with Outlook365 and a pop3s autodiscover config.
        it works with OL2016, but OL365 need the to choose the account type pop.



        is there a way to set the account type automatically to pop3s ?






        share|improve this answer













        We had the same problem (just issue one) with Outlook365 and a pop3s autodiscover config.
        it works with OL2016, but OL365 need the to choose the account type pop.



        is there a way to set the account type automatically to pop3s ?







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 2 at 8:40









        Johannes FuchsJohannes Fuchs

        11




        11



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Server Fault!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f931087%2foutlook-365-1808-autodiscover-with-postfix-dovecot%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

            What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company