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;
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
add a comment |
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
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
add a comment |
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
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
email postfix dovecot outlook autodiscover
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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 ?
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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 ?
add a comment |
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 ?
add a comment |
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 ?
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 ?
answered May 2 at 8:40
Johannes FuchsJohannes Fuchs
11
11
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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