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

            Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

            Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020