[Dovecot] Offtopic: Mac Mail Autoconfigure
Hello,
i know its a little bit Offtopic, but i know many Mailadmins are reading here ;)
Does anybody know howto autoconfigure Mac Mail als ISP Provider. We have troubles with the default Settings of Mac Mail (POP3s with APOP) and want to change them via autodiscover.
Is there something simular to Thunderbirds Config Site: https://developer.mozilla.org/en/Thunderbird/Autoconfiguration
google just offers similar problems, but no solutions :( http://groups.google.com/group/macenterprise/browse_thread/thread/a8829433131a7bca/7d391ec890c8b988?lnk=raot&fwc=1&pli=1
thx for your help Stefan
Am 26.01.2011 13:15, schrieb stefan novak:
Hello,
i know its a little bit Offtopic, but i know many Mailadmins are reading here ;)
Does anybody know howto autoconfigure Mac Mail als ISP Provider. We have troubles with the default Settings of Mac Mail (POP3s with APOP) and want to change them via autodiscover.
Is there something simular to Thunderbirds Config Site: https://developer.mozilla.org/en/Thunderbird/Autoconfiguration
google just offers similar problems, but no solutions :( http://groups.google.com/group/macenterprise/browse_thread/thread/a8829433131a7bca/7d391ec890c8b988?lnk=raot&fwc=1&pli=1
thx for your help Stefan
ask apple, you paid for it
-- Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
Does anybody know howto autoconfigure Mac Mail als ISP Provider. We have troubles with the default Settings of Mac Mail (POP3s with APOP) and want to change them via autodiscover. I'm not sure if its the same "autodiscover", but if you're seeing HTTP get /
On Wed, 26 Jan 2011 04:15:24 am stefan novak wrote: put to autodiscover as a hostname, then its probably the microsoft mail autodiscover protocol.
That is document in MS-OXDISCO and MS-OXDSCLI specs, which you can download off MSDN. The first spec shows how to find what the query location is, and the other shows the XML blobs you send / parse. See http://tracker.openchange.org/projects/openchange/wiki/Autodiscover_investig... for an example.
So you can probably make your DNS and web server create the right XML blob for whatever configuration you'd like to give to the client (assuming that the client is something that knows how to do the microsoft autodiscover protocol).
Brad
Am 26.01.2011 15:37, schrieb Brad Hards:
Does anybody know howto autoconfigure Mac Mail als ISP Provider. We have troubles with the default Settings of Mac Mail (POP3s with APOP) and want to change them via autodiscover. I'm not sure if its the same "autodiscover", but if you're seeing HTTP get /
On Wed, 26 Jan 2011 04:15:24 am stefan novak wrote: put to autodiscover as a hostname, then its probably the microsoft mail autodiscover protocol.
That is document in MS-OXDISCO and MS-OXDSCLI specs, which you can download off MSDN. The first spec shows how to find what the query location is, and the other shows the XML blobs you send / parse. See http://tracker.openchange.org/projects/openchange/wiki/Autodiscover_investig... for an example.
So you can probably make your DNS and web server create the right XML blob for whatever configuration you'd like to give to the client (assuming that the client is something that knows how to do the microsoft autodiscover protocol).
Brad
last time i looked in this some iphone users reported not to work ( may changed now ) with active sync windows/microsoft mobile autodiscover working after all you check your auto setup here for outlook and win mobiles
https://www.testexchangeconnectivity.com/
in php this is something like this for outlook isp styled on apache vhosts with aliases ( or may use iis which should default layouts for this ), and related dns entries
<?php //get raw POST data so we can extract the email address $data = file_get_contents("php://input"); preg_match("/\<EMailAddress\>(.*?)\<\/EMailAddress\>/", $data, $matches); //set Content-Type header("Content-Type: application/xml"); ?>
<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> <Server>imap.mailspooler.com</Server> <Port>993</Port> <LoginName><?php echo $matches[1]; ?></LoginName> <DomainRequired>off</DomainRequired> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> <Protocol> <Type>POP3</Type> <Server>pop.mailspooler.com</Server> <Port>995</Port> <DomainRequired>off</DomainRequired> <DomainName></DomainName> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> <Protocol> <Type>SMTP</Type> <Server>smtp.mailspooler.com</Server> <Port>465</Port> <LoginName><?php echo $matches[1]; ?></LoginName> <DomainRequired>off</DomainRequired> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> <UsePOPAuth>on</UsePOPAuth> <SMTPLast>off</SMTPLast> </Protocol> </Account> </Response> </Autodiscover>
this is for mobile
<?php //get raw POST data so we can extract the email address $data = file_get_contents("php://input"); preg_match("/\<EMailAddress\>(.*?)\<\/EMailAddress\>/", $data, $matches); //set Content-Type header("Content-Type: application/xml"); ?>
<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> <Server>imap.mailspooler.com</Server> <Port>993</Port> <LoginName><?php echo $matches[1]; ?></LoginName> <DomainRequired>off</DomainRequired> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> <Protocol> <Type>POP3</Type> <Server>pop.mailspooler.com</Server> <Port>995</Port> <DomainRequired>off</DomainRequired> <DomainName></DomainName> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> </Protocol> <Protocol> <Type>SMTP</Type> <Server>smtp.mailspooler.com</Server> <Port>465</Port> <LoginName><?php echo $matches[1]; ?></LoginName> <DomainRequired>off</DomainRequired> <SPA>off</SPA> <SSL>on</SSL> <AuthRequired>on</AuthRequired> <UsePOPAuth>on</UsePOPAuth> <SMTPLast>off</SMTPLast> </Protocol> </Account> </Response> </Autodiscover>
-- Best Regards
MfG Robert Schetterer
Germany/Munich/Bavaria
participants (3)
-
Brad Hards
-
Robert Schetterer
-
stefan novak