autodiscover for email settings for linux and windows
autodiscover for email settings for linux and windows
-
Csaba Németh commented
Custom hostname per mail domains would be good.
pop3 or imap service offering per mail domains would be also welcome -
Harald Dolderer commented
implementation seems smart, but documention of this feature is really very poor.
You need mod_proxy_http to work and nothing found about changing the default delivered mail client settings too. -
Patrick commented
It does not work for me and only returns HTTP/1.1 400 Bad Request. How to repair that feature?
-
Anonymous commented
Thank you for making this available! How about mobile users (Android and iOS)?
-
Oleg commented
Now that you implemented the ability to use domain specific security certificates for individual mail domain (thank you a lot for this!), the next logical step would be to implement autodiscover/autoconfig.
It's much important then server replication and other things. -
adino commented
in this case - cpanel is MUCH better, unfortunately
-
[Deleted User] commented
Any updates? This is kind off a must-have feature...
-
Robin Labadie commented
@David Roussel
I didn't mean to be rude, please take it easy.
I'm not actually making a criticism on your ability to dig but just tried to gently make you notice that you missed a good place to dig into.I keep seing complaints while I know there is the script provided in the thread (page 5 at the moment, before the project moved to Gitlab) so a refresh of the link was necessary.
-
David Roussel commented
@Robin Labadie dig better with 133 comments.... yeah you can do that yourself I've got more important things to do then to find something that I'll have <1% chance to find....
-
Robin Labadie commented
@David Roussel
Dig better because we already posted the link to our script that sets it up for you, for Outlook & Thunderbird, with a config tool for Apple devices in bonus!https://gitlab.haisoft.net/pub/Plesk_MailAutoconfig
I think Plesk devs could get some inspiration from it, we did 90% of the work (search and ideas for integration with Apache), it now only needs to be implemented in Plesk in PHP to make it available for everyone by default. :)
On a side note, be informed that HaiSoft servers (shared, VM, DS) are equiped with that exact feature :)
-
David Roussel commented
I've done some digging and you can do this yourself
https://developer.mozilla.org/en-US/docs/Mozilla/Thunderbird/Autoconfiguration#Configuration_server_at_ISPBut yes it would be nicer if this can be part of Plesk as its part of WHM/CPanel already.
-
Koert commented
Scenario: let the user fill in their email address and password.The rest should be added automatically (incoming and outgoing server, ports, SSL or not, authentication or not,...). I use the "hostname of the server" as incoming and outgoing mailserver for all domains (not the seperate domain names on the server)
-
Prakash Sungh commented
we unable to add mail with thunderbird and outlook.
-
Antal commented
Dont forget to alter the server address (3x) in the xml file.
-
Antal commented
Ah, i made a mistake, you should place the autodiscover file in a folder autodiscover. Also, try to browse to the link in the redirectmatch, you should see the contents of the xml file in your browser.
-
Anonymous commented
@antal;
Can you explain this a bit more? I placed the file at the /htdocs location and place a directive through service plan/plan/webserver and placed it in Additional directives for HTTP and Additional directives for HTTPS. But it is not working. -
Antal commented
replace the " with a normal quote, uservoice changed this
-
Antal commented
The easiest workaround is to set an Apache directive in your service plan so that it becomes active for all your domains as below. Of course change the server address to your own domain.
RewriteEngine on
RedirectMatch "^/autodiscover/autodiscover.xml" "https://pleskserver.domain.tld/autodiscover/autodiscover.xml"Then create a file /var/www/vhosts/default/htdocs/autodiscover.xml
<?xml version="1.0" encoding="utf-8" ?>
<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>POP3</Type>
<Server>pleskserver.domain.tld</Server>
<Port>995</Port>
<DomainRequired>on</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>IMAP</Type>
<Server>pleskserver.domain.tld</Server>
<Port>993</Port>
<DomainRequired>on</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
</Protocol>
<Protocol>
<Type>SMTP</Type>
<Server>pleskserver.domain.tld</Server>
<Port>587</Port>
<DomainRequired>on</DomainRequired>
<SPA>off</SPA>
<SSL>on</SSL>
<AuthRequired>on</AuthRequired>
<UsePOPAuth>off</UsePOPAuth>
<SMTPLast>off</SMTPLast>
</Protocol>
</Account>
</Response>
</Autodiscover> -
Fernando Lima commented
Yes. Great idea
-
Andrea Candian commented
Please bring autodiscover for single domain!