1// Package webmail implements a webmail client, serving html/js and providing an API for message actions and SSE endpoint for receiving real-time updates.
4// todo: should we be serving the messages/parts on a separate (sub)domain for user-content? to limit damage if the csp rules aren't enough.
27 "golang.org/x/net/html"
29 "github.com/prometheus/client_golang/prometheus"
30 "github.com/prometheus/client_golang/prometheus/promauto"
32 "github.com/mjl-/bstore"
33 "github.com/mjl-/sherpa"
35 "github.com/mjl-/mox/message"
36 "github.com/mjl-/mox/metrics"
37 "github.com/mjl-/mox/mlog"
38 "github.com/mjl-/mox/mox-"
39 "github.com/mjl-/mox/moxio"
40 "github.com/mjl-/mox/store"
41 "github.com/mjl-/mox/webauth"
42 "github.com/mjl-/mox/webops"
45var pkglog = mlog.New("webmail", nil)
49// We pass the request to the sherpa handler so the TLS info can be used for
50// the Received header in submitted messages. Most API calls need just the
52var requestInfoCtxKey ctxKey = "requestInfo"
54type requestInfo struct {
57 Account *store.Account // Nil only for methods Login and LoginPrep.
58 SessionToken store.SessionToken
59 Response http.ResponseWriter
60 Request *http.Request // For Proto and TLS connection state during message submit.
63//go:embed webmail.html
70var webmailmsgHTML []byte
73var webmailmsgJS []byte
76var webmailtextHTML []byte
79var webmailtextJS []byte
82 // Similar between ../webmail/webmail.go:/metricSubmission and ../smtpserver/server.go:/metricSubmission and ../webapisrv/server.go:/metricSubmission
83 metricSubmission = promauto.NewCounterVec(
84 prometheus.CounterOpts{
85 Name: "mox_webmail_submission_total",
86 Help: "Webmail message submission results, known values (those ending with error are server errors): ok, badfrom, messagelimiterror, recipientlimiterror, queueerror, storesenterror.",
92 metricServerErrors = promauto.NewCounterVec(
93 prometheus.CounterOpts{
94 Name: "mox_webmail_errors_total",
95 Help: "Webmail server errors, known values: dkimsign, submit.",
101 metricSSEConnections = promauto.NewGauge(
102 prometheus.GaugeOpts{
103 Name: "mox_webmail_sse_connections",
104 Help: "Number of active webmail SSE connections.",
109func xcheckf(ctx context.Context, err error, format string, args ...any) {
113 msg := fmt.Sprintf(format, args...)
114 errmsg := fmt.Sprintf("%s: %s", msg, err)
115 pkglog.WithContext(ctx).Errorx(msg, err)
116 code := "server:error"
117 if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
120 panic(&sherpa.Error{Code: code, Message: errmsg})
123func xcheckuserf(ctx context.Context, err error, format string, args ...any) {
127 msg := fmt.Sprintf(format, args...)
128 errmsg := fmt.Sprintf("%s: %s", msg, err)
129 pkglog.WithContext(ctx).Errorx(msg, err)
130 panic(&sherpa.Error{Code: "user:error", Message: errmsg})
133func xdbwrite(ctx context.Context, acc *store.Account, fn func(tx *bstore.Tx)) {
134 err := acc.DB.Write(ctx, func(tx *bstore.Tx) error {
138 xcheckf(ctx, err, "transaction")
141func xdbread(ctx context.Context, acc *store.Account, fn func(tx *bstore.Tx)) {
142 err := acc.DB.Read(ctx, func(tx *bstore.Tx) error {
146 xcheckf(ctx, err, "transaction")
149var webmailFile = &mox.WebappFile{
152 HTMLPath: filepath.FromSlash("webmail/webmail.html"),
153 JSPath: filepath.FromSlash("webmail/webmail.js"),
156// Serve content, either from a file, or return the fallback data. Caller
157// should already have set the content-type. We use this to return a file from
158// the local file system (during development), or embedded in the binary (when
160func serveContentFallback(log mlog.Log, w http.ResponseWriter, r *http.Request, path string, fallback []byte) {
161 f, err := os.Open(path)
166 http.ServeContent(w, r, "", st.ModTime(), f)
170 http.ServeContent(w, r, "", mox.FallbackMtime(log), bytes.NewReader(fallback))
173// Handler returns a handler for the webmail endpoints, customized for the max
174// message size coming from the listener and cookiePath.
175func Handler(maxMessageSize int64, cookiePath string, isForwarded bool, accountPath string) func(w http.ResponseWriter, r *http.Request) {
176 sh, err := makeSherpaHandler(maxMessageSize, cookiePath, isForwarded)
177 return func(w http.ResponseWriter, r *http.Request) {
179 http.Error(w, "500 - internal server error - cannot handle requests", http.StatusInternalServerError)
182 handle(sh, isForwarded, accountPath, w, r)
186func handle(apiHandler http.Handler, isForwarded bool, accountPath string, w http.ResponseWriter, r *http.Request) {
188 log := pkglog.WithContext(ctx).With(slog.String("userauth", ""))
190 // Server-sent event connection, for all initial data (list of mailboxes), list of
191 // messages, and all events afterwards. Authenticated through a token in the query
192 // string, which it got from a Token API call.
193 if r.URL.Path == "/events" {
194 serveEvents(ctx, log, accountPath, w, r)
203 err, ok := x.(*sherpa.Error)
205 log.WithContext(ctx).Error("handle panic", slog.Any("err", x))
207 metrics.PanicInc(metrics.Webmailhandle)
210 if strings.HasPrefix(err.Code, "user:") {
211 log.Debugx("webmail user error", err)
212 http.Error(w, "400 - bad request - "+err.Message, http.StatusBadRequest)
214 log.Errorx("webmail server error", err)
215 http.Error(w, "500 - internal server error - "+err.Message, http.StatusInternalServerError)
224 h.Set("X-Frame-Options", "deny")
225 h.Set("Referrer-Policy", "same-origin")
226 webmailFile.Serve(ctx, log, w, r)
228 http.Error(w, "405 - method not allowed - use get", http.StatusMethodNotAllowed)
232 case "/msg.js", "/text.js":
235 http.Error(w, "405 - method not allowed - use get", http.StatusMethodNotAllowed)
240 path := filepath.Join("webmail", r.URL.Path[1:])
241 var fallback = webmailmsgJS
242 if r.URL.Path == "/text.js" {
243 fallback = webmailtextJS
246 w.Header().Set("Content-Type", "application/javascript; charset=utf-8")
247 serveContentFallback(log, w, r, path, fallback)
251 isAPI := strings.HasPrefix(r.URL.Path, "/api/")
252 // Only allow POST for calls, they will not work cross-domain without CORS.
253 if isAPI && r.URL.Path != "/api/" && r.Method != "POST" {
254 http.Error(w, "405 - method not allowed - use post", http.StatusMethodNotAllowed)
258 var loginAddress, accName string
259 var sessionToken store.SessionToken
260 // All other URLs, except the login endpoint require some authentication.
261 if r.URL.Path != "/api/LoginPrep" && r.URL.Path != "/api/Login" {
263 isExport := r.URL.Path == "/export"
264 requireCSRF := isAPI || isExport
265 accName, sessionToken, loginAddress, ok = webauth.Check(ctx, log, webauth.Accounts, "webmail", isForwarded, w, r, isAPI, requireCSRF, isExport)
267 // Response has been written already.
273 var acc *store.Account
275 log = log.With(slog.String("account", accName))
277 acc, err = store.OpenAccount(log, accName)
279 log.Errorx("open account", err)
280 http.Error(w, "500 - internal server error - error opening account", http.StatusInternalServerError)
285 log.Check(err, "closing account")
288 reqInfo := requestInfo{log, loginAddress, acc, sessionToken, w, r}
289 ctx = context.WithValue(ctx, requestInfoCtxKey, reqInfo)
290 apiHandler.ServeHTTP(w, r.WithContext(ctx))
294 // We are now expecting the following URLs:
296 // .../msg/<msgid>/{attachments.zip,parsedmessage.js,raw}
297 // .../msg/<msgid>/{,msg}{text,html,htmlexternal}
298 // .../msg/<msgid>/{view,viewtext,download}/<partid>
300 if r.URL.Path == "/export" {
301 webops.Export(log, accName, w, r)
305 if !strings.HasPrefix(r.URL.Path, "/msg/") {
310 t := strings.Split(r.URL.Path[len("/msg/"):], "/")
316 id, err := strconv.ParseInt(t[0], 10, 64)
317 if err != nil || id == 0 {
322 // Many of the requests need either a message or a parsed part. Make it easy to
323 // fetch/prepare and cleanup. We only do all the work when the request seems legit
324 // (valid HTTP route and method).
325 xprepare := func() (acc *store.Account, m store.Message, msgr *store.MsgReader, p message.Part, cleanup func(), ok bool) {
326 if r.Method != "GET" {
327 http.Error(w, "405 - method not allowed - post required", http.StatusMethodNotAllowed)
337 log.Check(err, "closing message reader")
342 log.Check(err, "closing account")
349 acc, err = store.OpenAccount(log, accName)
350 xcheckf(ctx, err, "open account")
352 m = store.Message{ID: id}
353 err = acc.DB.Get(ctx, &m)
354 if err == bstore.ErrAbsent || err == nil && m.Expunged {
358 xcheckf(ctx, err, "get message")
360 msgr = acc.MessageReader(m)
362 p, err = m.LoadPart(msgr)
363 xcheckf(ctx, err, "load parsed message")
367 log.Check(err, "closing message reader")
369 log.Check(err, "closing account")
377 // We set a Content-Security-Policy header that is as strict as possible, depending
378 // on the type of message/part/html/js. We have to be careful because we are
379 // returning data that is coming in from external places. E.g. HTML could contain
380 // javascripts that we don't want to execute, especially not on our domain. We load
381 // resources in an iframe. The CSP policy starts out with default-src 'none' to
382 // disallow loading anything, then start allowing what is safe, such as inlined
383 // datauri images and inline styles. Data can only be loaded when the request is
384 // coming from the same origin (so other sites cannot include resources
385 // (messages/parts)).
387 // We want to load resources in sandbox-mode, causing the page to be loaded as from
388 // a different origin. If sameOrigin is set, we have a looser CSP policy:
389 // allow-same-origin is set so resources are loaded as coming from this same
390 // origin. This is needed for the msg* endpoints that render a message, where we
391 // load the message body in a separate iframe again (with stricter CSP again),
392 // which we need to access for its inner height. If allowSelfScript is also set
393 // (for "msgtext"), the CSP leaves out the sandbox entirely.
395 // If allowExternal is set, we allow loading image, media (audio/video), styles and
396 // fronts from external URLs as well as inline URI's. By default we don't allow any
397 // loading of content, except inlined images (we do that ourselves for images
398 // embedded in the email), and we allow inline styles (which are safely constrained
401 // If allowSelfScript is set, inline scripts and scripts from our origin are
402 // allowed. Used to display a message including header. The header is rendered with
403 // javascript, the content is rendered in a separate iframe with a CSP that doesn't
404 // have allowSelfScript.
405 headers := func(sameOrigin, allowExternal, allowSelfScript, allowSelfImg bool) {
406 // allow-popups is needed to make opening links in new tabs work.
407 sb := "sandbox allow-popups allow-popups-to-escape-sandbox; "
408 if sameOrigin && allowSelfScript {
409 // Sandbox with both allow-same-origin and allow-script would not provide security,
410 // and would give warning in console about that.
412 } else if sameOrigin {
413 sb = "sandbox allow-popups allow-popups-to-escape-sandbox allow-same-origin; "
417 script = "; script-src 'unsafe-inline' 'self'; frame-src 'self'; connect-src 'self'"
421 csp = sb + "frame-ancestors 'self'; default-src 'none'; img-src data: http: https: 'unsafe-inline'; style-src 'unsafe-inline' data: http: https:; font-src data: http: https: 'unsafe-inline'; media-src 'unsafe-inline' data: http: https:" + script
422 } else if allowSelfImg {
423 csp = sb + "frame-ancestors 'self'; default-src 'none'; img-src data: 'self'; style-src 'unsafe-inline'" + script
425 csp = sb + "frame-ancestors 'self'; default-src 'none'; img-src data:; style-src 'unsafe-inline'" + script
427 h.Set("Content-Security-Policy", csp)
428 h.Set("X-Frame-Options", "sameorigin") // Duplicate with CSP, but better too much than too little.
429 h.Set("X-Content-Type-Options", "nosniff")
430 h.Set("Referrer-Policy", "no-referrer")
434 case len(t) == 2 && t[1] == "attachments.zip":
435 acc, m, msgr, p, cleanup, ok := xprepare()
440 state := msgState{acc: acc, m: m, msgr: msgr, part: &p}
441 // note: state is cleared by cleanup
443 mi, err := messageItem(log, m, &state)
444 xcheckf(ctx, err, "parsing message")
446 headers(false, false, false, false)
447 h.Set("Content-Type", "application/zip")
448 h.Set("Cache-Control", "no-store, max-age=0")
449 var subjectSlug string
450 if p.Envelope != nil {
451 s := p.Envelope.Subject
452 s = strings.ToLower(s)
453 s = regexp.MustCompile("[^a-z0-9_.-]").ReplaceAllString(s, "-")
454 s = regexp.MustCompile("--*").ReplaceAllString(s, "-")
455 s = strings.TrimLeft(s, "-")
456 s = strings.TrimRight(s, "-")
462 filename := fmt.Sprintf("email-%d-attachments-%s%s.zip", m.ID, m.Received.Format("20060102-150405"), subjectSlug)
463 cd := mime.FormatMediaType("attachment", map[string]string{"filename": filename})
464 h.Set("Content-Disposition", cd)
466 zw := zip.NewWriter(w)
467 names := map[string]bool{}
468 for _, a := range mi.Attachments {
470 name := tryDecodeParam(log, ap.ContentTypeParams["name"])
472 // We don't check errors, this is all best-effort.
474 disposition := h.Get("Content-Disposition")
475 _, params, _ := mime.ParseMediaType(disposition)
476 name = tryDecodeParam(log, params["filename"])
479 name = filepath.Base(name)
481 mt := strings.ToLower(ap.MediaType + "/" + ap.MediaSubType)
482 if name == "" || names[name] {
483 ext := filepath.Ext(name)
485 // Handle just a few basic types.
486 extensions := map[string]string{
487 "text/plain": ".txt",
488 "text/html": ".html",
489 "image/jpeg": ".jpg",
492 "application/zip": ".zip",
500 if name != "" && strings.HasSuffix(name, ext) {
501 stem = strings.TrimSuffix(name, ext)
504 for _, index := range a.Path {
505 stem += fmt.Sprintf("-%d", index)
512 name = stem + fmt.Sprintf("-%d", seq) + ext
517 fh := zip.FileHeader{
519 Modified: m.Received,
521 nodeflate := map[string]bool{
522 "application/x-bzip2": true,
523 "application/zip": true,
524 "application/x-zip-compressed": true,
525 "application/gzip": true,
526 "application/x-gzip": true,
527 "application/vnd.rar": true,
528 "application/x-rar-compressed": true,
529 "application/x-7z-compressed": true,
531 // Sniff content-type as well for compressed data.
532 buf := make([]byte, 512)
533 n, _ := io.ReadFull(ap.Reader(), buf)
536 sniffmt = strings.ToLower(http.DetectContentType(buf[:n]))
538 deflate := ap.MediaType != "VIDEO" && ap.MediaType != "AUDIO" && (ap.MediaType != "IMAGE" || ap.MediaSubType == "BMP") && !nodeflate[mt] && !nodeflate[sniffmt]
540 fh.Method = zip.Deflate
542 // We cannot return errors anymore: we have already sent an application/zip header.
543 if zf, err := zw.CreateHeader(&fh); err != nil {
544 log.Check(err, "adding to zip file")
546 } else if _, err := io.Copy(zf, ap.Reader()); err != nil {
547 log.Check(err, "writing to zip file")
552 log.Check(err, "final write to zip file")
554 // Raw display of a message, as text/plain.
555 case len(t) == 2 && t[1] == "raw":
556 _, _, msgr, p, cleanup, ok := xprepare()
562 // We intentially use text/plain. We certainly don't want to return a format that
563 // browsers or users would think of executing. We do set the charset if available
564 // on the outer part. If present, we assume it may be relevant for other parts. If
565 // not, there is not much we could do better...
566 headers(false, false, false, false)
568 params := map[string]string{}
569 if charset := p.ContentTypeParams["charset"]; charset != "" {
570 params["charset"] = charset
572 h.Set("Content-Type", mime.FormatMediaType(ct, params))
573 h.Set("Cache-Control", "no-store, max-age=0")
575 _, err := io.Copy(w, &moxio.AtReader{R: msgr})
576 log.Check(err, "writing raw")
578 case len(t) == 2 && (t[1] == "msgtext" || t[1] == "msghtml" || t[1] == "msghtmlexternal"):
579 // msg.html has a javascript tag with message data, and javascript to render the
580 // message header like the regular webmail.html and to load the message body in a
581 // separate iframe with a separate request with stronger CSP.
582 acc, m, msgr, p, cleanup, ok := xprepare()
588 state := msgState{acc: acc, m: m, msgr: msgr, part: &p}
589 // note: state is cleared by cleanup
591 pm, err := parsedMessage(log, m, &state, true, true)
592 xcheckf(ctx, err, "getting parsed message")
593 if t[1] == "msgtext" && len(pm.Texts) == 0 || t[1] != "msgtext" && !pm.HasHTML {
594 http.Error(w, "400 - bad request - no such part", http.StatusBadRequest)
599 loadExternal := t[1] == "msghtmlexternal"
600 allowSelfScript := true
601 headers(sameorigin, loadExternal, allowSelfScript, false)
602 h.Set("Content-Type", "text/html; charset=utf-8")
603 h.Set("Cache-Control", "no-store, max-age=0")
605 path := filepath.FromSlash("webmail/msg.html")
606 fallback := webmailmsgHTML
607 serveContentFallback(log, w, r, path, fallback)
609 case len(t) == 2 && t[1] == "parsedmessage.js":
610 // Used by msg.html, for the msg* endpoints, for the data needed to show all data
611 // except the message body.
612 // This is js with data inside instead so we can load it synchronously, which we do
613 // to get a "loaded" event after the page was actually loaded.
615 acc, m, msgr, p, cleanup, ok := xprepare()
620 state := msgState{acc: acc, m: m, msgr: msgr, part: &p}
621 // note: state is cleared by cleanup
623 pm, err := parsedMessage(log, m, &state, true, true)
624 xcheckf(ctx, err, "parsing parsedmessage")
625 pmjson, err := json.Marshal(pm)
626 xcheckf(ctx, err, "marshal parsedmessage")
630 mi := MessageItem{m, pm.envelope, pm.attachments, pm.isSigned, pm.isEncrypted, pm.firstLine, false}
631 mijson, err := json.Marshal(mi)
632 xcheckf(ctx, err, "marshal messageitem")
634 headers(false, false, false, false)
635 h.Set("Content-Type", "application/javascript; charset=utf-8")
636 h.Set("Cache-Control", "no-store, max-age=0")
638 _, err = fmt.Fprintf(w, "window.messageItem = %s;\nwindow.parsedMessage = %s;\n", mijson, pmjson)
639 log.Check(err, "writing parsedmessage.js")
641 case len(t) == 2 && t[1] == "text":
642 // Returns text.html whichs loads the message data with a javascript tag and
643 // renders just the text content with the same code as webmail.html. Used by the
644 // iframe in the msgtext endpoint. Not used by the regular webmail viewer, it
645 // renders the text itself, with the same shared js code.
646 acc, m, msgr, p, cleanup, ok := xprepare()
652 state := msgState{acc: acc, m: m, msgr: msgr, part: &p}
653 // note: state is cleared by cleanup
655 pm, err := parsedMessage(log, m, &state, true, true)
656 xcheckf(ctx, err, "parsing parsedmessage")
658 if len(pm.Texts) == 0 {
659 http.Error(w, "400 - bad request - no text part in message", http.StatusBadRequest)
663 // Needed for inner document height for outer iframe height in separate message view.
665 allowSelfScript := true
667 headers(sameorigin, false, allowSelfScript, allowSelfImg)
668 h.Set("Content-Type", "text/html; charset=utf-8")
669 h.Set("Cache-Control", "no-store, max-age=0")
671 // We typically return the embedded file, but during development it's handy to load
673 path := filepath.FromSlash("webmail/text.html")
674 fallback := webmailtextHTML
675 serveContentFallback(log, w, r, path, fallback)
677 case len(t) == 2 && (t[1] == "html" || t[1] == "htmlexternal"):
678 // Returns the first HTML part, with "cid:" URIs replaced with an inlined datauri
679 // if the referenced Content-ID attachment can be found.
680 _, _, _, p, cleanup, ok := xprepare()
686 setHeaders := func() {
687 // Needed for inner document height for outer iframe height in separate message
688 // view. We only need that when displaying as a separate message on the msghtml*
689 // endpoints. When displaying in the regular webmail, we don't need to know the
690 // inner height so we load it as different origin, which should be safer.
691 sameorigin := r.URL.Query().Get("sameorigin") == "true"
692 allowExternal := strings.HasSuffix(t[1], "external")
693 headers(sameorigin, allowExternal, false, false)
695 h.Set("Content-Type", "text/html; charset=utf-8")
696 h.Set("Cache-Control", "no-store, max-age=0")
699 // todo: skip certain html parts? e.g. with content-disposition: attachment?
701 var usePart func(p *message.Part, parents []*message.Part)
702 usePart = func(p *message.Part, parents []*message.Part) {
706 mt := p.MediaType + "/" + p.MediaSubType
710 err := inlineSanitizeHTML(log, setHeaders, w, p, parents)
712 http.Error(w, "400 - bad request - "+err.Error(), http.StatusBadRequest)
716 parents = append(parents, p)
717 for _, sp := range p.Parts {
718 usePart(&sp, parents)
724 http.Error(w, "400 - bad request - no html part in message", http.StatusBadRequest)
727 case len(t) == 3 && (t[1] == "view" || t[1] == "viewtext" || t[1] == "download"):
728 // View any part, as referenced in the last element path. "0" is the whole message,
729 // 0.0 is the first subpart, etc. "view" returns it with the content-type from the
730 // message (could be dangerous, but we set strict CSP headers), "viewtext" returns
731 // data with a text/plain content-type so the browser will attempt to display it,
732 // and "download" adds a content-disposition header causing the browser the
733 // download the file.
734 _, _, _, p, cleanup, ok := xprepare()
740 paths := strings.Split(t[2], ".")
741 if len(paths) == 0 || paths[0] != "0" {
746 for _, e := range paths[1:] {
747 index, err := strconv.ParseInt(e, 10, 32)
748 if err != nil || index < 0 || int(index) >= len(ap.Parts) {
752 ap = ap.Parts[int(index)]
755 headers(false, false, false, false)
757 if t[1] == "viewtext" {
760 ct = strings.ToLower(ap.MediaType + "/" + ap.MediaSubType)
762 h.Set("Content-Type", ct)
763 h.Set("Cache-Control", "no-store, max-age=0")
764 if t[1] == "download" {
765 name := tryDecodeParam(log, ap.ContentTypeParams["name"])
767 // We don't check errors, this is all best-effort.
769 disposition := h.Get("Content-Disposition")
770 _, params, _ := mime.ParseMediaType(disposition)
771 name = tryDecodeParam(log, params["filename"])
774 name = "attachment.bin"
776 cd := mime.FormatMediaType("attachment", map[string]string{"filename": name})
777 h.Set("Content-Disposition", cd)
780 _, err := io.Copy(w, ap.Reader())
781 if err != nil && !moxio.IsClosed(err) {
782 log.Errorx("copying attachment", err)
789// inlineSanitizeHTML writes the part as HTML, with "cid:" URIs for html "src"
790// attributes inlined and with potentially dangerous tags removed (javascript). The
791// sanitizing is just a first layer of defense, CSP headers block execution of
792// scripts. If the HTML becomes too large, an error is returned. Before writing
793// HTML, setHeaders is called to write the required headers for content-type and
794// CSP. On error, setHeader is not called, no output is written and the caller
795// should write an error response.
796func inlineSanitizeHTML(log mlog.Log, setHeaders func(), w io.Writer, p *message.Part, parents []*message.Part) error {
797 // Prepare cids if there is a chance we will use them.
798 cids := map[string]*message.Part{}
799 for _, parent := range parents {
800 if parent.MediaType+"/"+parent.MediaSubType == "MULTIPART/RELATED" && p.DecodedSize < 2*1024*1024 {
801 for i, rp := range parent.Parts {
802 if rp.ContentID != "" {
803 cids[strings.ToLower(rp.ContentID)] = &parent.Parts[i]
809 node, err := html.Parse(p.ReaderUTF8OrBinary())
811 return fmt.Errorf("parsing html: %v", err)
814 // We track size, if it becomes too much, we abort and still copy as regular html.
816 if err := inlineNode(node, cids, &totalSize); err != nil {
817 return fmt.Errorf("inline cid uris in html nodes: %w", err)
821 err = html.Render(w, node)
822 log.Check(err, "writing html")
826// We inline cid: URIs into data: URIs. If a cid is missing in the
827// multipart/related, we ignore the error and continue with other HTML nodes. It
828// will probably just result in a "broken image". We limit the max size we
829// generate. We only replace "src" attributes that start with "cid:". A cid URI
830// could theoretically occur in many more places, like link href, and css url().
831// That's probably not common though. Let's wait for someone to need it.
832func inlineNode(node *html.Node, cids map[string]*message.Part, totalSize *int64) error {
833 for i, a := range node.Attr {
834 if a.Key != "src" || !caselessPrefix(a.Val, "cid:") || a.Namespace != "" {
838 ap := cids["<"+strings.ToLower(cid)+">"]
840 // Missing cid, can happen with email, no need to stop returning data.
843 *totalSize += ap.DecodedSize
844 if *totalSize >= 10*1024*1024 {
845 return fmt.Errorf("html too large")
847 var sb strings.Builder
848 if _, err := fmt.Fprintf(&sb, "data:%s;base64,", strings.ToLower(ap.MediaType+"/"+ap.MediaSubType)); err != nil {
849 return fmt.Errorf("writing datauri: %v", err)
851 w := base64.NewEncoder(base64.StdEncoding, &sb)
852 if _, err := io.Copy(w, ap.Reader()); err != nil {
853 return fmt.Errorf("writing base64 datauri: %v", err)
855 node.Attr[i].Val = sb.String()
857 for node = node.FirstChild; node != nil; node = node.NextSibling {
858 if err := inlineNode(node, cids, totalSize); err != nil {
865func caselessPrefix(k, pre string) bool {
866 return len(k) >= len(pre) && strings.EqualFold(k[:len(pre)], pre)
869var targetable = map[string]bool{
876// sanitizeNode removes script elements, on* attributes, javascript: href
877// attributes, adds target="_blank" to all links and to a base tag.
878func sanitizeNode(node *html.Node) {
880 var haveTarget, haveRel bool
881 for i < len(node.Attr) {
883 // Remove dangerous attributes.
884 if strings.HasPrefix(a.Key, "on") || a.Key == "href" && caselessPrefix(a.Val, "javascript:") || a.Key == "src" && caselessPrefix(a.Val, "data:text/html") {
885 copy(node.Attr[i:], node.Attr[i+1:])
886 node.Attr = node.Attr[:len(node.Attr)-1]
889 if a.Key == "target" {
890 node.Attr[i].Val = "_blank"
893 if a.Key == "rel" && targetable[node.Data] {
894 node.Attr[i].Val = "noopener noreferrer"
899 // Ensure target attribute is set for elements that can have it.
900 if !haveTarget && node.Type == html.ElementNode && targetable[node.Data] {
901 node.Attr = append(node.Attr, html.Attribute{Key: "target", Val: "_blank"})
904 if haveTarget && !haveRel {
905 node.Attr = append(node.Attr, html.Attribute{Key: "rel", Val: "noopener noreferrer"})
909 node = node.FirstChild
912 // Set next now, we may remove cur, which clears its NextSibling.
914 node = node.NextSibling
916 // Remove script elements.
917 if cur.Type == html.ElementNode && cur.Data == "script" {
918 parent.RemoveChild(cur)
923 if parent.Type == html.ElementNode && parent.Data == "head" && !haveBase {
924 n := html.Node{Type: html.ElementNode, Data: "base", Attr: []html.Attribute{{Key: "target", Val: "_blank"}, {Key: "rel", Val: "noopener noreferrer"}}}
925 parent.AppendChild(&n)