-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support StartTLS for SMTP autoconfiguration #3
base: master
Are you sure you want to change the base?
Conversation
Hey @aspettl! I would not recommend anybody to use Outlook 2007 in 2018 😏It's fine to drop the support for clients that are outdated since about a decade. |
Hi @gronke, good :-) Do you want to merge this into your repository or are there some open points or doubts? If you want I can also update the |
Any update? |
Ping |
While i was reading trough http://interoperability.blob.core.windows.net/files/MS-OXDSCLI/[MS-OXDSCLI].pdf i found the mentioned Encryption, and SSL entries. BUT in the XSD that is presented in the PDF, and here: https://msdn.microsoft.com/en-us/library/ee202398(v=exchg.80).aspx Then i tried to find the current XSD, but found nothing, except a sample XML that being said to work up to but not including Outlook2016: https://msdn.microsoft.com/en-us/library/ee625072(v=exchg.80).aspx https://msdn.microsoft.com/en-us/library/ee160260(v=exchg.80).aspx |
So what was the final verdict? |
Hi @aspettl, I'm sorry for the silence due to urgent work on other projects. I have not been able to test and verify this changes yet, so it would be great if someone else could find time to give a thumbs up here. |
Doesn't really look like we get feedback from someone else :-( |
Wow, isn't it amazing that we've already had RFC's for all this for over 20 years, yet big players like Microsoft and Apple are unable to read and obey them? Oh and why are Microsoft, apple and ios devices unable to grab simple data from the already existing autoconfig xml that mozilla provides? Ooh was it too hard to use an open standard for these boot-licking capitalist freaks? |
Hello
I want to advertise the submission port (SMTP with STARTTLS and authentication, port 587) instead of SMTP via SSL (port 465). Reason: port 587 is the standard, port 465 is not RFC compliant.
I use the "socket" variable of "smtp" with the value "STARTTLS" for that. This is exactly the right format for "config-v1.1.xml".
Unfortunately, for "autodiscover.xml" it is not that simple: it seems that Outlook 2007 understands only the "SSL" tag. Since Outlook 2010, there is an "Encryption" tag superseding "SSL" (which can have the value "SSL" or "TLS", see also [1]). In this PR, I switch over to the "Encryption" tag completely. This means Outlook 2007 cannot understand the new format.
To remedy this for users staying with "SSL" and needing Outlook 2007 support, one could probably let the SSL tag remain as before (I can make that change if this is favored). According to the documentation in [1], the presence of "Encryption" should make "SSL" irrelevant for Outlook 2010 and later. However, I'm not sure if the presence of "Encryption" lets some schema validation fail in Outlook 2007...
Just for cross-reference, I'm using this in the context of [2].
[1] https://msdn.microsoft.com/en-us/library/cc463896(EXCHG.80).aspx
[2] https://github.com/johansmitsnl/docker-email-autodiscover/issues/2