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

            RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

            How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

            Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos