10 "github.com/prometheus/client_golang/prometheus"
11 "github.com/prometheus/client_golang/prometheus/promauto"
14 "github.com/mjl-/mox/admin"
15 "github.com/mjl-/mox/dns"
16 "github.com/mjl-/mox/smtp"
20 metricAutoconf = promauto.NewCounterVec(
21 prometheus.CounterOpts{
22 Name: "mox_autoconf_request_total",
23 Help: "Number of autoconf requests.",
27 metricAutodiscover = promauto.NewCounterVec(
28 prometheus.CounterOpts{
29 Name: "mox_autodiscover_request_total",
30 Help: "Number of autodiscover requests.",
36// Autoconfiguration/Autodiscovery:
38// - Thunderbird will request an "autoconfig" xml file.
39// - Microsoft tools will request an "autodiscovery" xml file.
40// - In my tests on an internal domain, iOS mail only talks to Apple servers, then
41// does not attempt autoconfiguration. Possibly due to them being private DNS
42// names. Apple software can be provisioned with "mobileconfig" profile files,
43// which users can download after logging in.
45// DNS records seem optional, but autoconfig.<domain> and autodiscover.<domain>
46// (both CNAME or A) are useful, and so is SRV _autodiscovery._tcp.<domain> 0 0 443
47// autodiscover.<domain> (or just <hostname> directly).
49// Autoconf/discovery only works with valid TLS certificates, not with self-signed
50// certs. So use it on public endpoints with certs signed by common CA's, or run
51// your own (internal) CA and import the CA cert on your devices.
53// Also see https://roll.urown.net/server/mail/autoconfig.html
55// Autoconfiguration for Mozilla Thunderbird.
56// User should create a DNS record: autoconfig.<domain> (CNAME or A).
57// See https://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat
58func autoconfHandle(w http.ResponseWriter, r *http.Request) {
59 log := pkglog.WithContext(r.Context())
63 metricAutoconf.WithLabelValues(addrDom).Inc()
66 email := r.FormValue("emailaddress")
67 log.Debug("autoconfig request", slog.String("email", email))
70 email = "%EMAILADDRESS%"
71 // Declare this here rather than using := to avoid shadowing domain from
74 domain, err = dns.ParseDomain(r.Host)
76 http.Error(w, fmt.Sprintf("400 - bad request - invalid domain: %s", r.Host), http.StatusBadRequest)
79 domain.ASCII = strings.TrimPrefix(domain.ASCII, "autoconfig.")
80 domain.Unicode = strings.TrimPrefix(domain.Unicode, "autoconfig.")
82 addr, err := smtp.ParseAddress(email)
84 http.Error(w, "400 - bad request - invalid parameter emailaddress", http.StatusBadRequest)
90 socketType := func(tlsMode admin.TLSMode) (string, error) {
92 case admin.TLSModeImmediate:
94 case admin.TLSModeSTARTTLS:
95 return "STARTTLS", nil
96 case admin.TLSModeNone:
99 return "", fmt.Errorf("unknown tls mode %v", tlsMode)
103 var imapTLS, submissionTLS string
104 config, err := admin.ClientConfigDomain(domain)
106 imapTLS, err = socketType(config.IMAP.TLSMode)
109 submissionTLS, err = socketType(config.Submission.TLSMode)
112 http.Error(w, "400 - bad request - "+err.Error(), http.StatusBadRequest)
116 // Thunderbird doesn't seem to allow U-labels, always return ASCII names.
117 var resp autoconfigResponse
119 resp.EmailProvider.ID = domain.ASCII
120 resp.EmailProvider.Domain = domain.ASCII
121 resp.EmailProvider.DisplayName = email
122 resp.EmailProvider.DisplayShortName = domain.ASCII
124 // todo: specify SCRAM-SHA-256 once thunderbird and autoconfig supports it. or perhaps that will fall under "password-encrypted" by then.
125 // todo: let user configure they prefer or require tls client auth and specify "TLS-client-cert"
127 incoming := incomingServer{
129 config.IMAP.Host.ASCII,
133 "password-encrypted",
135 resp.EmailProvider.IncomingServers = append(resp.EmailProvider.IncomingServers, incoming)
136 if config.IMAP.EnabledOnHTTPS {
137 tlsMode, _ := socketType(admin.TLSModeImmediate)
138 incomingALPN := incomingServer{
140 config.IMAP.Host.ASCII,
144 "password-encrypted",
146 resp.EmailProvider.IncomingServers = append(resp.EmailProvider.IncomingServers, incomingALPN)
149 outgoing := outgoingServer{
151 config.Submission.Host.ASCII,
152 config.Submission.Port,
155 "password-encrypted",
157 resp.EmailProvider.OutgoingServers = append(resp.EmailProvider.OutgoingServers, outgoing)
158 if config.Submission.EnabledOnHTTPS {
159 tlsMode, _ := socketType(admin.TLSModeImmediate)
160 outgoingALPN := outgoingServer{
162 config.Submission.Host.ASCII,
166 "password-encrypted",
168 resp.EmailProvider.OutgoingServers = append(resp.EmailProvider.OutgoingServers, outgoingALPN)
171 // todo: should we put the email address in the URL?
172 resp.ClientConfigUpdate.URL = fmt.Sprintf("https://autoconfig.%s/mail/config-v1.1.xml", domain.ASCII)
174 w.Header().Set("Content-Type", "application/xml; charset=utf-8")
175 enc := xml.NewEncoder(w)
177 fmt.Fprint(w, xml.Header)
178 err = enc.Encode(resp)
179 log.Check(err, "write autoconfig xml response")
182// Autodiscover from Microsoft, also used by Thunderbird.
183// User should create a DNS record: _autodiscover._tcp.<domain> SRV 0 0 443 <hostname>
185// In practice, autodiscover does not seem to work wit microsoft clients. A
186// connectivity test tool for outlook is available on
187// https://testconnectivity.microsoft.com/, it has an option to do "Autodiscover to
188// detect server settings". Incoming TLS connections are all failing, with various
191// Thunderbird does understand autodiscover.
192func autodiscoverHandle(w http.ResponseWriter, r *http.Request) {
193 log := pkglog.WithContext(r.Context())
197 metricAutodiscover.WithLabelValues(addrDom).Inc()
200 if r.Method != "POST" {
201 http.Error(w, "405 - method not allowed - post required", http.StatusMethodNotAllowed)
205 var req autodiscoverRequest
206 if err := xml.NewDecoder(r.Body).Decode(&req); err != nil {
207 http.Error(w, "400 - bad request - parsing autodiscover request: "+err.Error(), http.StatusMethodNotAllowed)
211 log.Debug("autodiscover request", slog.String("email", req.Request.EmailAddress))
213 addr, err := smtp.ParseAddress(req.Request.EmailAddress)
215 http.Error(w, "400 - bad request - invalid parameter emailaddress", http.StatusBadRequest)
219 // tlsmode returns the "ssl" and "encryption" fields.
220 tlsmode := func(tlsMode admin.TLSMode) (string, string, error) {
222 case admin.TLSModeImmediate:
223 return "on", "TLS", nil
224 case admin.TLSModeSTARTTLS:
226 case admin.TLSModeNone:
227 return "off", "", nil
229 return "", "", fmt.Errorf("unknown tls mode %v", tlsMode)
233 var imapSSL, imapEncryption string
234 var submissionSSL, submissionEncryption string
235 config, err := admin.ClientConfigDomain(addr.Domain)
237 imapSSL, imapEncryption, err = tlsmode(config.IMAP.TLSMode)
240 submissionSSL, submissionEncryption, err = tlsmode(config.Submission.TLSMode)
243 http.Error(w, "400 - bad request - "+err.Error(), http.StatusBadRequest)
247 // The docs are generated and fragmented in many tiny pages, hard to follow.
248 // High-level starting point, https://learn.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxdscli/78530279-d042-4eb0-a1f4-03b18143cd19
249 // Request: https://learn.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxdscli/2096fab2-9c3c-40b9-b123-edf6e8d55a9b
250 // Response, protocol: https://learn.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxdscli/f4238db6-a983-435c-807a-b4b4a624c65b
251 // It appears autodiscover does not allow specifying SCRAM-SHA-256 as
252 // authentication method, or any authentication method that real clients actually
254 // https://learn.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxdscli/21fd2dd5-c4ee-485b-94fb-e7db5da93726
256 w.Header().Set("Content-Type", "application/xml; charset=utf-8")
258 // todo: let user configure they prefer or require tls client auth and add "AuthPackage" with value "certificate" to Protocol? see https://learn.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxdscli/21fd2dd5-c4ee-485b-94fb-e7db5da93726
260 resp := autodiscoverResponse{}
261 resp.XMLName.Local = "Autodiscover"
262 resp.XMLName.Space = "http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"
263 resp.Response.XMLName.Local = "Response"
264 resp.Response.XMLName.Space = "http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a"
265 resp.Response.Account = autodiscoverAccount{
266 AccountType: "email",
268 Protocol: []autodiscoverProtocol{
271 Server: config.IMAP.Host.ASCII,
272 Port: config.IMAP.Port,
273 LoginName: req.Request.EmailAddress,
275 Encryption: imapEncryption,
276 SPA: "off", // Override default "on", this is Microsofts proprietary authentication protocol.
281 Server: config.Submission.Host.ASCII,
282 Port: config.Submission.Port,
283 LoginName: req.Request.EmailAddress,
285 Encryption: submissionEncryption,
286 SPA: "off", // Override default "on", this is Microsofts proprietary authentication protocol.
291 enc := xml.NewEncoder(w)
293 fmt.Fprint(w, xml.Header)
294 err = enc.Encode(resp)
295 log.Check(err, "marshal autodiscover xml response")
298// Thunderbird requests these URLs for autoconfig/autodiscover:
299// https://autoconfig.example.org/mail/config-v1.1.xml?emailaddress=user%40example.org
300// https://autodiscover.example.org/autodiscover/autodiscover.xml
301// https://example.org/.well-known/autoconfig/mail/config-v1.1.xml?emailaddress=user%40example.org
302// https://example.org/autodiscover/autodiscover.xml
303type incomingServer struct {
304 Type string `xml:"type,attr"`
305 Hostname string `xml:"hostname"`
306 Port int `xml:"port"`
307 SocketType string `xml:"socketType"`
308 Username string `xml:"username"`
309 Authentication string `xml:"authentication"`
311type outgoingServer struct {
312 Type string `xml:"type,attr"`
313 Hostname string `xml:"hostname"`
314 Port int `xml:"port"`
315 SocketType string `xml:"socketType"`
316 Username string `xml:"username"`
317 Authentication string `xml:"authentication"`
319type autoconfigResponse struct {
320 XMLName xml.Name `xml:"clientConfig"`
321 Version string `xml:"version,attr"`
323 EmailProvider struct {
324 ID string `xml:"id,attr"`
325 Domain string `xml:"domain"`
326 DisplayName string `xml:"displayName"`
327 DisplayShortName string `xml:"displayShortName"`
329 IncomingServers []incomingServer `xml:"incomingServer"`
330 OutgoingServers []outgoingServer `xml:"outgoingServer"`
331 } `xml:"emailProvider"`
333 ClientConfigUpdate struct {
334 URL string `xml:"url,attr"`
335 } `xml:"clientConfigUpdate"`
338type autodiscoverRequest struct {
339 XMLName xml.Name `xml:"Autodiscover"`
341 EmailAddress string `xml:"EMailAddress"`
342 AcceptableResponseSchema string `xml:"AcceptableResponseSchema"`
346type autodiscoverResponse struct {
350 Account autodiscoverAccount
354type autodiscoverAccount struct {
357 Protocol []autodiscoverProtocol
360type autodiscoverProtocol struct {
368 Encryption string `xml:",omitempty"`
373// Serve a .mobileconfig file. This endpoint is not a standard place where Apple
374// devices look. We point to it from the account page.
375func mobileconfigHandle(w http.ResponseWriter, r *http.Request) {
376 log := pkglog.WithContext(r.Context())
378 if r.Method != "GET" {
379 http.Error(w, "405 - method not allowed - get required", http.StatusMethodNotAllowed)
382 addresses := r.FormValue("addresses")
383 fullName := r.FormValue("name")
387 err = fmt.Errorf("missing/empty field addresses")
389 l := strings.Split(addresses, ",")
391 buf, err = MobileConfig(l, fullName)
394 http.Error(w, "400 - bad request - "+err.Error(), http.StatusBadRequest)
399 filename = strings.ReplaceAll(filename, ".", "-")
400 filename = strings.ReplaceAll(filename, "@", "-at-")
401 filename = "email-account-" + filename + ".mobileconfig"
402 h.Set("Content-Disposition", fmt.Sprintf(`attachment; filename="%s"`, filename))
403 _, err = w.Write(buf)
404 log.Check(err, "writing mobileconfig response")
407// Serve a png file with qrcode with the link to the .mobileconfig file, should be
408// helpful for mobile devices.
409func mobileconfigQRCodeHandle(w http.ResponseWriter, r *http.Request) {
410 log := pkglog.WithContext(r.Context())
412 if r.Method != "GET" {
413 http.Error(w, "405 - method not allowed - get required", http.StatusMethodNotAllowed)
416 if !strings.HasSuffix(r.URL.Path, ".qrcode.png") {
421 // Compose URL, scheme and host are not set.
429 u.Path = strings.TrimSuffix(u.Path, ".qrcode.png")
431 code, err := qr.Encode(u.String(), qr.L)
433 http.Error(w, "500 - internal server error - generating qr-code: "+err.Error(), http.StatusInternalServerError)
437 h.Set("Content-Type", "image/png")
438 _, err = w.Write(code.PNG())
439 log.Check(err, "writing mobileconfig qr code")