2023-01-30 16:27:06 +03:00
package main
import (
"bytes"
"context"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"crypto"
"crypto/ecdsa"
2023-01-30 16:27:06 +03:00
"crypto/ed25519"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"crypto/elliptic"
cryptorand "crypto/rand"
2023-01-30 16:27:06 +03:00
"crypto/rsa"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"crypto/sha256"
"crypto/sha512"
2023-01-30 16:27:06 +03:00
"crypto/x509"
"encoding/base64"
"encoding/json"
"encoding/pem"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"errors"
2023-01-30 16:27:06 +03:00
"flag"
"fmt"
"io"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"io/fs"
2023-01-30 16:27:06 +03:00
"log"
"net"
2023-08-23 15:27:21 +03:00
"net/url"
2023-01-30 16:27:06 +03:00
"os"
"path/filepath"
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
"runtime"
2023-06-30 18:19:29 +03:00
"strconv"
2023-01-30 16:27:06 +03:00
"strings"
"time"
"golang.org/x/crypto/bcrypt"
2023-10-21 17:49:07 +03:00
"golang.org/x/exp/slices"
2023-12-05 15:35:58 +03:00
"golang.org/x/exp/slog"
2023-01-30 16:27:06 +03:00
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"github.com/mjl-/adns"
"github.com/mjl-/autocert"
2023-01-30 16:27:06 +03:00
"github.com/mjl-/bstore"
"github.com/mjl-/sconf"
"github.com/mjl-/sherpa"
"github.com/mjl-/mox/config"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"github.com/mjl-/mox/dane"
2023-01-30 16:27:06 +03:00
"github.com/mjl-/mox/dkim"
"github.com/mjl-/mox/dmarc"
"github.com/mjl-/mox/dmarcdb"
"github.com/mjl-/mox/dmarcrpt"
"github.com/mjl-/mox/dns"
"github.com/mjl-/mox/dnsbl"
"github.com/mjl-/mox/message"
"github.com/mjl-/mox/mlog"
"github.com/mjl-/mox/mox-"
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
"github.com/mjl-/mox/moxio"
2023-01-30 16:27:06 +03:00
"github.com/mjl-/mox/moxvar"
"github.com/mjl-/mox/mtasts"
2023-08-23 15:27:21 +03:00
"github.com/mjl-/mox/publicsuffix"
2023-01-30 16:27:06 +03:00
"github.com/mjl-/mox/smtp"
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
"github.com/mjl-/mox/smtpclient"
2023-01-30 16:27:06 +03:00
"github.com/mjl-/mox/spf"
"github.com/mjl-/mox/store"
"github.com/mjl-/mox/tlsrpt"
"github.com/mjl-/mox/tlsrptdb"
"github.com/mjl-/mox/updates"
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
"github.com/mjl-/mox/webadmin"
2023-01-30 16:27:06 +03:00
)
var (
changelogDomain = "xmox.nl"
changelogURL = "https://updates.xmox.nl/changelog"
changelogPubKey = base64Decode ( "sPNiTDQzvb4FrytNEiebJhgyQzn57RwEjNbGWMM/bDY=" )
)
func base64Decode ( s string ) [ ] byte {
buf , err := base64 . StdEncoding . DecodeString ( s )
if err != nil {
panic ( err )
}
return buf
}
func envString ( k , def string ) string {
s := os . Getenv ( k )
if s == "" {
return def
}
return s
}
var commands = [ ] struct {
cmd string
fn func ( c * cmd )
} {
{ "serve" , cmdServe } ,
{ "quickstart" , cmdQuickstart } ,
{ "stop" , cmdStop } ,
{ "setaccountpassword" , cmdSetaccountpassword } ,
{ "setadminpassword" , cmdSetadminpassword } ,
{ "loglevels" , cmdLoglevels } ,
{ "queue list" , cmdQueueList } ,
{ "queue kick" , cmdQueueKick } ,
{ "queue drop" , cmdQueueDrop } ,
{ "queue dump" , cmdQueueDump } ,
{ "import maildir" , cmdImportMaildir } ,
{ "import mbox" , cmdImportMbox } ,
{ "export maildir" , cmdExportMaildir } ,
{ "export mbox" , cmdExportMbox } ,
2023-03-12 12:38:02 +03:00
{ "localserve" , cmdLocalserve } ,
2023-01-30 16:27:06 +03:00
{ "help" , cmdHelp } ,
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
{ "backup" , cmdBackup } ,
{ "verifydata" , cmdVerifydata } ,
2023-01-30 16:27:06 +03:00
{ "config test" , cmdConfigTest } ,
{ "config dnscheck" , cmdConfigDNSCheck } ,
{ "config dnsrecords" , cmdConfigDNSRecords } ,
{ "config describe-domains" , cmdConfigDescribeDomains } ,
{ "config describe-static" , cmdConfigDescribeStatic } ,
{ "config account add" , cmdConfigAccountAdd } ,
{ "config account rm" , cmdConfigAccountRemove } ,
{ "config address add" , cmdConfigAddressAdd } ,
{ "config address rm" , cmdConfigAddressRemove } ,
{ "config domain add" , cmdConfigDomainAdd } ,
{ "config domain rm" , cmdConfigDomainRemove } ,
2023-02-03 15:47:44 +03:00
{ "config describe-sendmail" , cmdConfigDescribeSendmail } ,
change mox to start as root, bind to network sockets, then drop to regular unprivileged mox user
makes it easier to run on bsd's, where you cannot (easily?) let non-root users
bind to ports <1024. starting as root also paves the way for future improvements
with privilege separation.
unfortunately, this requires changes to how you start mox. though mox will help
by automatically fix up dir/file permissions/ownership.
if you start mox from the systemd unit file, you should update it so it starts
as root and adds a few additional capabilities:
# first update the mox binary, then, as root:
./mox config printservice >mox.service
systemctl daemon-reload
systemctl restart mox
journalctl -f -u mox &
# you should see mox start up, with messages about fixing permissions on dirs/files.
if you used the recommended config/ and data/ directory, in a directory just for
mox, and with the mox user called "mox", this should be enough.
if you don't want mox to modify dir/file permissions, set "NoFixPermissions:
true" in mox.conf.
if you named the mox user something else than mox, e.g. "_mox", add "User: _mox"
to mox.conf.
if you created a shared service user as originally suggested, you may want to
get rid of that as it is no longer useful and may get in the way. e.g. if you
had /home/service/mox with a "service" user, that service user can no longer
access any files: only mox and root can.
this also adds scripts for building mox docker images for alpine-supported
platforms.
the "restart" subcommand has been removed. it wasn't all that useful and got in
the way.
and another change: when adding a domain while mtasts isn't enabled, don't add
the per-domain mtasts config, as it would cause failure to add the domain.
based on report from setting up mox on openbsd from mteege.
and based on issue #3. thanks for the feedback!
2023-02-27 14:19:55 +03:00
{ "config printservice" , cmdConfigPrintservice } ,
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
{ "config ensureacmehostprivatekeys" , cmdConfigEnsureACMEHostprivatekeys } ,
2023-03-04 02:49:02 +03:00
{ "example" , cmdExample } ,
2023-01-30 16:27:06 +03:00
{ "checkupdate" , cmdCheckupdate } ,
{ "cid" , cmdCid } ,
{ "clientconfig" , cmdClientConfig } ,
{ "deliver" , cmdDeliver } ,
implement "requiretls", rfc 8689
with requiretls, the tls verification mode/rules for email deliveries can be
changed by the sender/submitter. in two ways:
1. "requiretls" smtp extension to always enforce verified tls (with mta-sts or
dnssec+dane), along the entire delivery path until delivery into the final
destination mailbox (so entire transport is verified-tls-protected).
2. "tls-required: no" message header, to ignore any tls and tls verification
errors even if the recipient domain has a policy that requires tls verification
(mta-sts and/or dnssec+dane), allowing delivery of non-sensitive messages in
case of misconfiguration/interoperability issues (at least useful for sending
tls reports).
we enable requiretls by default (only when tls is active), for smtp and
submission. it can be disabled through the config.
for each delivery attempt, we now store (per recipient domain, in the account
of the sender) whether the smtp server supports starttls and requiretls. this
support is shown (after having sent a first message) in the webmail when
sending a message (the previous 3 bars under the address input field are now 5
bars, the first for starttls support, the last for requiretls support). when
all recipient domains for a message are known to implement requiretls,
requiretls is automatically selected for sending (instead of "default" tls
behaviour). users can also select the "fallback to insecure" to add the
"tls-required: no" header.
new metrics are added for insight into requiretls errors and (some, not yet
all) cases where tls-required-no ignored a tls/verification error.
the admin can change the requiretls status for messages in the queue. so with
default delivery attempts, when verified tls is required by failing, an admin
could potentially change the field to "tls-required: no"-behaviour.
messages received (over smtp) with the requiretls option, get a comment added
to their Received header line, just before "id", after "with".
2023-10-24 11:06:16 +03:00
// todo: turn cmdDANEDialmx into a regular "dialmx" command that follows mta-sts policy, with options to require dane, mta-sts or requiretls. the code will be similar to queue/direct.go
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
{ "dane dial" , cmdDANEDial } ,
{ "dane dialmx" , cmdDANEDialmx } ,
{ "dane makerecord" , cmdDANEMakeRecord } ,
{ "dns lookup" , cmdDNSLookup } ,
2023-01-30 16:27:06 +03:00
{ "dkim gened25519" , cmdDKIMGened25519 } ,
{ "dkim genrsa" , cmdDKIMGenrsa } ,
{ "dkim lookup" , cmdDKIMLookup } ,
{ "dkim txt" , cmdDKIMTXT } ,
{ "dkim verify" , cmdDKIMVerify } ,
2023-03-07 23:59:55 +03:00
{ "dkim sign" , cmdDKIMSign } ,
2023-01-30 16:27:06 +03:00
{ "dmarc lookup" , cmdDMARCLookup } ,
{ "dmarc parsereportmsg" , cmdDMARCParsereportmsg } ,
{ "dmarc verify" , cmdDMARCVerify } ,
2023-08-23 15:27:21 +03:00
{ "dmarc checkreportaddrs" , cmdDMARCCheckreportaddrs } ,
2023-01-30 16:27:06 +03:00
{ "dnsbl check" , cmdDNSBLCheck } ,
{ "dnsbl checkhealth" , cmdDNSBLCheckhealth } ,
{ "mtasts lookup" , cmdMTASTSLookup } ,
improve training of junk filter
before, we used heuristics to decide when to train/untrain a message as junk or
nonjunk: the message had to be seen, be in certain mailboxes. then if a message
was marked as junk, it was junk. and otherwise it was nonjunk. this wasn't good
enough: you may want to keep some messages around as neither junk or nonjunk.
and that wasn't possible.
ideally, we would just look at the imap $Junk and $NotJunk flags. the problem
is that mail clients don't set these flags, or don't make it easy. thunderbird
can set the flags based on its own bayesian filter. it has a shortcut for
marking Junk and moving it to the junk folder (good), but the counterpart of
notjunk only marks a message as notjunk without showing in the UI that it was
marked as notjunk. there is also no "move and mark as notjunk" mechanism. e.g.
"archive" does not mark a message as notjunk. ios mail and mutt don't appear to
have any way to see or change the $Junk and $NotJunk flags.
what email clients do have is the ability to move messages to other
mailboxes/folders. so mox now has a mechanism that allows you to configure
mailboxes that automatically set $Junk or $NotJunk (or clear both) when a
message is moved/copied/delivered to that folder. e.g. a mailbox called junk or
spam or rejects marks its messags as junk. inbox, postmaster, dmarc, tlsrpt,
neutral* mark their messages as neither junk or notjunk. other folders mark
their messages as notjunk. e.g. list/*, archive. this functionality is
optional, but enabled with the quickstart and for new accounts.
also, mox now keeps track of the previous training of a message and will only
untrain/train if needed. before, there probably have been duplicate or missing
(un)trainings.
this also includes a new subcommand "retrain" to recreate the junkfilter for an
account. you should run it after updating to this version. and you should
probably also modify your account config to include the AutomaticJunkFlags.
2023-02-12 01:00:12 +03:00
{ "retrain" , cmdRetrain } ,
2023-01-30 16:27:06 +03:00
{ "sendmail" , cmdSendmail } ,
{ "spf check" , cmdSPFCheck } ,
{ "spf lookup" , cmdSPFLookup } ,
{ "spf parse" , cmdSPFParse } ,
{ "tlsrpt lookup" , cmdTLSRPTLookup } ,
{ "tlsrpt parsereportmsg" , cmdTLSRPTParsereportmsg } ,
{ "version" , cmdVersion } ,
2023-08-10 13:29:46 +03:00
{ "bumpuidvalidity" , cmdBumpUIDValidity } ,
{ "reassignuids" , cmdReassignUIDs } ,
{ "fixuidmeta" , cmdFixUIDMeta } ,
{ "fixmsgsize" , cmdFixmsgsize } ,
{ "reparse" , cmdReparse } ,
{ "ensureparsed" , cmdEnsureParsed } ,
{ "recalculatemailboxcounts" , cmdRecalculateMailboxCounts } ,
{ "message parse" , cmdMessageParse } ,
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
{ "reassignthreads" , cmdReassignthreads } ,
2023-08-10 13:29:46 +03:00
2023-01-30 16:27:06 +03:00
// Not listed.
{ "helpall" , cmdHelpall } ,
{ "junk analyze" , cmdJunkAnalyze } ,
{ "junk check" , cmdJunkCheck } ,
{ "junk play" , cmdJunkPlay } ,
{ "junk test" , cmdJunkTest } ,
{ "junk train" , cmdJunkTrain } ,
{ "dmarcdb addreport" , cmdDMARCDBAddReport } ,
{ "tlsrptdb addreport" , cmdTLSRPTDBAddReport } ,
{ "updates addsigned" , cmdUpdatesAddSigned } ,
{ "updates genkey" , cmdUpdatesGenkey } ,
{ "updates pubkey" , cmdUpdatesPubkey } ,
2023-03-06 00:38:29 +03:00
{ "updates serve" , cmdUpdatesServe } ,
2023-01-30 16:27:06 +03:00
{ "updates verify" , cmdUpdatesVerify } ,
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
{ "gentestdata" , cmdGentestdata } ,
2023-07-01 17:43:20 +03:00
{ "ximport maildir" , cmdXImportMaildir } ,
{ "ximport mbox" , cmdXImportMbox } ,
2023-08-16 15:36:17 +03:00
{ "openaccounts" , cmdOpenaccounts } ,
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
{ "readmessages" , cmdReadmessages } ,
2023-01-30 16:27:06 +03:00
}
var cmds [ ] cmd
func init ( ) {
for _ , xc := range commands {
c := cmd { words : strings . Split ( xc . cmd , " " ) , fn : xc . fn }
cmds = append ( cmds , c )
}
}
type cmd struct {
words [ ] string
fn func ( c * cmd )
// Set before calling command.
flag * flag . FlagSet
flagArgs [ ] string
_gather bool // Set when using Parse to gather usage for a command.
// Set by invoked command or Parse.
unlisted bool // If set, command is not listed until at least some words are matched from command.
2023-02-06 13:00:11 +03:00
params string // Arguments to command. Multiple lines possible.
2023-01-30 16:27:06 +03:00
help string // Additional explanation. First line is synopsis, the rest is only printed for an explicit help/usage for that command.
args [ ] string
2023-12-05 15:35:58 +03:00
log mlog . Log
2023-01-30 16:27:06 +03:00
}
func ( c * cmd ) Parse ( ) [ ] string {
// To gather params and usage information, we just run the command but cause this
// panic after the command has registered its flags and set its params and help
// information. This is then caught and that info printed.
if c . _gather {
panic ( "gather" )
}
c . flag . Usage = c . Usage
c . flag . Parse ( c . flagArgs )
c . args = c . flag . Args ( )
return c . args
}
func ( c * cmd ) gather ( ) {
c . flag = flag . NewFlagSet ( "mox " + strings . Join ( c . words , " " ) , flag . ExitOnError )
c . _gather = true
defer func ( ) {
x := recover ( )
// panic generated by Parse.
if x != "gather" {
panic ( x )
}
} ( )
c . fn ( c )
}
func ( c * cmd ) makeUsage ( ) string {
var r strings . Builder
cs := "mox " + strings . Join ( c . words , " " )
for i , line := range strings . Split ( strings . TrimSpace ( c . params ) , "\n" ) {
s := ""
if i == 0 {
s = "usage:"
}
if line != "" {
line = " " + line
}
fmt . Fprintf ( & r , "%6s %s%s\n" , s , cs , line )
}
c . flag . SetOutput ( & r )
c . flag . PrintDefaults ( )
return r . String ( )
}
func ( c * cmd ) printUsage ( ) {
fmt . Fprint ( os . Stderr , c . makeUsage ( ) )
if c . help != "" {
fmt . Fprint ( os . Stderr , "\n" + c . help + "\n" )
}
}
func ( c * cmd ) Usage ( ) {
c . printUsage ( )
os . Exit ( 2 )
}
func cmdHelp ( c * cmd ) {
c . params = "[command ...]"
c . help = ` Prints help about matching commands .
If multiple commands match , they are listed along with the first line of their help text .
If a single command matches , its usage and full help text is printed .
`
args := c . Parse ( )
if len ( args ) == 0 {
c . Usage ( )
}
prefix := func ( l , pre [ ] string ) bool {
if len ( pre ) > len ( l ) {
return false
}
2023-10-21 17:49:07 +03:00
return slices . Equal ( pre , l [ : len ( pre ) ] )
2023-01-30 16:27:06 +03:00
}
var partial [ ] cmd
for _ , c := range cmds {
2023-10-21 17:49:07 +03:00
if slices . Equal ( c . words , args ) {
2023-01-30 16:27:06 +03:00
c . gather ( )
fmt . Print ( c . makeUsage ( ) )
if c . help != "" {
fmt . Print ( "\n" + c . help + "\n" )
}
return
} else if prefix ( c . words , args ) {
partial = append ( partial , c )
}
}
if len ( partial ) == 0 {
fmt . Fprintf ( os . Stderr , "%s: unknown command\n" , strings . Join ( args , " " ) )
os . Exit ( 2 )
}
for _ , c := range partial {
c . gather ( )
line := "mox " + strings . Join ( c . words , " " )
fmt . Printf ( "%s\n" , line )
if c . help != "" {
fmt . Printf ( "\t%s\n" , strings . Split ( c . help , "\n" ) [ 0 ] )
}
}
}
func cmdHelpall ( c * cmd ) {
c . unlisted = true
c . help = ` Print all detailed usage and help information for all listed commands .
Used to generate documentation .
`
args := c . Parse ( )
if len ( args ) != 0 {
c . Usage ( )
}
n := 0
for _ , c := range cmds {
c . gather ( )
if c . unlisted {
continue
}
if n > 0 {
fmt . Fprintf ( os . Stderr , "\n" )
}
n ++
fmt . Fprintf ( os . Stderr , "# mox %s\n\n" , strings . Join ( c . words , " " ) )
if c . help != "" {
2023-03-12 17:25:16 +03:00
fmt . Fprintln ( os . Stderr , c . help + "\n" )
2023-01-30 16:27:06 +03:00
}
s := c . makeUsage ( )
s = "\t" + strings . ReplaceAll ( s , "\n" , "\n\t" )
2023-03-12 17:25:16 +03:00
fmt . Fprintln ( os . Stderr , s )
2023-01-30 16:27:06 +03:00
}
}
func usage ( l [ ] cmd , unlisted bool ) {
var lines [ ] string
if ! unlisted {
2023-03-12 17:16:01 +03:00
lines = append ( lines , "mox [-config config/mox.conf] [-pedantic] ..." )
2023-01-30 16:27:06 +03:00
}
for _ , c := range l {
c . gather ( )
if c . unlisted && ! unlisted {
continue
}
for _ , line := range strings . Split ( c . params , "\n" ) {
x := append ( [ ] string { "mox" } , c . words ... )
if line != "" {
x = append ( x , line )
}
lines = append ( lines , strings . Join ( x , " " ) )
}
}
for i , line := range lines {
pre := " "
if i == 0 {
pre = "usage: "
}
fmt . Fprintln ( os . Stderr , pre + line )
}
os . Exit ( 2 )
}
2023-02-03 17:54:34 +03:00
var loglevel string
2023-03-12 17:16:01 +03:00
var pedantic bool
2023-02-03 17:54:34 +03:00
// subcommands that are not "serve" should use this function to load the config, it
// restores any loglevel specified on the command-line, instead of using the
2023-06-16 14:27:27 +03:00
// loglevels from the config file and it does not load files like TLS keys/certs.
2023-02-03 17:54:34 +03:00
func mustLoadConfig ( ) {
2023-06-16 14:27:27 +03:00
mox . MustLoadConfig ( false , false )
2023-03-20 15:01:49 +03:00
if level , ok := mlog . Levels [ loglevel ] ; loglevel != "" && ok {
2023-02-03 17:54:34 +03:00
mox . Conf . Log [ "" ] = level
mlog . SetConfig ( mox . Conf . Log )
2023-03-20 15:01:49 +03:00
} else if loglevel != "" && ! ok {
2023-12-05 15:35:58 +03:00
log . Fatal ( "unknown loglevel" , slog . String ( "loglevel" , loglevel ) )
2023-02-03 17:54:34 +03:00
}
2023-03-12 17:16:01 +03:00
if pedantic {
2023-12-05 23:13:57 +03:00
mox . SetPedantic ( true )
2023-03-12 17:16:01 +03:00
}
2023-02-03 17:54:34 +03:00
}
2023-01-30 16:27:06 +03:00
func main ( ) {
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
// CheckConsistencyOnClose is true by default, for all the test packages. A regular
// mox server should never use it. But integration tests enable it again with a
// flag.
store . CheckConsistencyOnClose = false
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
ctxbg := context . Background ( )
mox . Shutdown = ctxbg
mox . Context = ctxbg
2023-01-30 16:27:06 +03:00
log . SetFlags ( 0 )
// If invoked as sendmail, e.g. /usr/sbin/sendmail, we do enough so cron can get a
// message sent using smtp submission to a configured server.
if len ( os . Args ) > 0 && filepath . Base ( os . Args [ 0 ] ) == "sendmail" {
2023-02-03 15:47:44 +03:00
c := & cmd {
flag : flag . NewFlagSet ( "sendmail" , flag . ExitOnError ) ,
flagArgs : os . Args [ 1 : ] ,
2023-12-05 15:35:58 +03:00
log : mlog . New ( "sendmail" , nil ) ,
2023-02-03 15:47:44 +03:00
}
cmdSendmail ( c )
2023-01-30 16:27:06 +03:00
return
}
make mox compile on windows, without "mox serve" but with working "mox localserve"
getting mox to compile required changing code in only a few places where
package "syscall" was used: for accessing file access times and for umask
handling. an open problem is how to start a process as an unprivileged user on
windows. that's why "mox serve" isn't implemented yet. and just finding a way
to implement it now may not be good enough in the near future: we may want to
starting using a more complete privilege separation approach, with a process
handling sensitive tasks (handling private keys, authentication), where we may
want to pass file descriptors between processes. how would that work on
windows?
anyway, getting mox to compile for windows doesn't mean it works properly on
windows. the largest issue: mox would normally open a file, rename or remove
it, and finally close it. this happens during message delivery. that doesn't
work on windows, the rename/remove would fail because the file is still open.
so this commit swaps many "remove" and "close" calls. renames are a longer
story: message delivery had two ways to deliver: with "consuming" the
(temporary) message file (which would rename it to its final destination), and
without consuming (by hardlinking the file, falling back to copying). the last
delivery to a recipient of a message (and the only one in the common case of a
single recipient) would consume the message, and the earlier recipients would
not. during delivery, the already open message file was used, to parse the
message. we still want to use that open message file, and the caller now stays
responsible for closing it, but we no longer try to rename (consume) the file.
we always hardlink (or copy) during delivery (this works on windows), and the
caller is responsible for closing and removing (in that order) the original
temporary file. this does cost one syscall more. but it makes the delivery code
(responsibilities) a bit simpler.
there is one more obvious issue: the file system path separator. mox already
used the "filepath" package to join paths in many places, but not everywhere.
and it still used strings with slashes for local file access. with this commit,
the code now uses filepath.FromSlash for path strings with slashes, uses
"filepath" in a few more places where it previously didn't. also switches from
"filepath" to regular "path" package when handling mailbox names in a few
places, because those always use forward slashes, regardless of local file
system conventions. windows can handle forward slashes when opening files, so
test code that passes path strings with forward slashes straight to go stdlib
file i/o functions are left unchanged to reduce code churn. the regular
non-test code, or test code that uses path strings in places other than
standard i/o functions, does have the paths converted for consistent paths
(otherwise we would end up with paths with mixed forward/backward slashes in
log messages).
windows cannot dup a listening socket. for "mox localserve", it isn't
important, and we can work around the issue. the current approach for "mox
serve" (forking a process and passing file descriptors of listening sockets on
"privileged" ports) won't work on windows. perhaps it isn't needed on windows,
and any user can listen on "privileged" ports? that would be welcome.
on windows, os.Open cannot open a directory, so we cannot call Sync on it after
message delivery. a cursory internet search indicates that directories cannot
be synced on windows. the story is probably much more nuanced than that, with
long deep technical details/discussions/disagreement/confusion, like on unix.
for "mox localserve" we can get away with making syncdir a no-op.
2023-10-14 11:54:07 +03:00
flag . StringVar ( & mox . ConfigStaticPath , "config" , envString ( "MOXCONF" , filepath . FromSlash ( "config/mox.conf" ) ) , "configuration file, other config files are looked up in the same directory, defaults to $MOXCONF with a fallback to mox.conf" )
2023-02-03 17:54:34 +03:00
flag . StringVar ( & loglevel , "loglevel" , "" , "if non-empty, this log level is set early in startup" )
2023-03-12 17:16:01 +03:00
flag . BoolVar ( & pedantic , "pedantic" , false , "protocol violations result in errors instead of accepting/working around them" )
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
flag . BoolVar ( & store . CheckConsistencyOnClose , "checkconsistency" , false , "dangerous option for testing only, enables data checks that abort/panic when inconsistencies are found" )
2023-01-30 16:27:06 +03:00
2023-09-12 15:43:52 +03:00
var cpuprofile , memprofile , tracefile string
2023-07-01 17:43:20 +03:00
flag . StringVar ( & cpuprofile , "cpuprof" , "" , "store cpu profile to file" )
flag . StringVar ( & memprofile , "memprof" , "" , "store mem profile to file" )
2023-09-12 15:43:52 +03:00
flag . StringVar ( & tracefile , "trace" , "" , "store execution trace to file" )
2023-07-01 17:43:20 +03:00
2023-01-30 16:27:06 +03:00
flag . Usage = func ( ) { usage ( cmds , false ) }
flag . Parse ( )
args := flag . Args ( )
if len ( args ) == 0 {
usage ( cmds , false )
}
2023-07-01 17:43:20 +03:00
2023-09-12 15:43:52 +03:00
if tracefile != "" {
defer traceExecution ( tracefile ) ( )
}
2023-07-01 17:43:20 +03:00
defer profile ( cpuprofile , memprofile ) ( )
2023-03-12 17:16:01 +03:00
if pedantic {
2023-12-05 23:13:57 +03:00
mox . SetPedantic ( true )
2023-03-12 17:16:01 +03:00
}
2023-01-30 16:27:06 +03:00
mox . ConfigDynamicPath = filepath . Join ( filepath . Dir ( mox . ConfigStaticPath ) , "domains.conf" )
if level , ok := mlog . Levels [ loglevel ] ; ok && loglevel != "" {
mox . Conf . Log [ "" ] = level
mlog . SetConfig ( mox . Conf . Log )
2023-02-03 17:54:34 +03:00
// note: SetConfig may be called again when subcommands loads config.
2023-01-30 16:27:06 +03:00
}
var partial [ ] cmd
next :
for _ , c := range cmds {
for i , w := range c . words {
if i >= len ( args ) || w != args [ i ] {
if i > 0 {
partial = append ( partial , c )
}
continue next
}
}
c . flag = flag . NewFlagSet ( "mox " + strings . Join ( c . words , " " ) , flag . ExitOnError )
c . flagArgs = args [ len ( c . words ) : ]
2023-12-05 15:35:58 +03:00
c . log = mlog . New ( strings . Join ( c . words , "" ) , nil )
2023-01-30 16:27:06 +03:00
c . fn ( & c )
return
}
if len ( partial ) > 0 {
usage ( partial , true )
}
usage ( cmds , false )
}
func xcheckf ( err error , format string , args ... any ) {
if err == nil {
return
}
msg := fmt . Sprintf ( format , args ... )
log . Fatalf ( "%s: %s" , msg , err )
}
func xparseIP ( s , what string ) net . IP {
ip := net . ParseIP ( s )
if ip == nil {
log . Fatalf ( "invalid %s: %q" , what , s )
}
return ip
}
func xparseDomain ( s , what string ) dns . Domain {
d , err := dns . ParseDomain ( s )
xcheckf ( err , "parsing %s %q" , what , s )
return d
}
func cmdClientConfig ( c * cmd ) {
c . params = "domain"
c . help = ` Print the configuration for email clients for a domain .
Sending email is typically not done on the SMTP port 25 , but on submission
ports 465 ( with TLS ) and 587 ( without initial TLS , but usually added to the
connection with STARTTLS ) . For IMAP , the port with TLS is 993 and without is
143.
Without TLS / STARTTLS , passwords are sent in clear text , which should only be
configured over otherwise secured connections , like a VPN .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
d := xparseDomain ( args [ 0 ] , "domain" )
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
printClientConfig ( d )
}
func printClientConfig ( d dns . Domain ) {
2023-09-23 13:05:40 +03:00
cc , err := mox . ClientConfigsDomain ( d )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "getting client config" )
fmt . Printf ( "%-20s %-30s %5s %-15s %s\n" , "Protocol" , "Host" , "Port" , "Listener" , "Note" )
for _ , e := range cc . Entries {
fmt . Printf ( "%-20s %-30s %5d %-15s %s\n" , e . Protocol , e . Host , e . Port , e . Listener , e . Note )
}
}
func cmdConfigTest ( c * cmd ) {
c . help = ` Parses and validates the configuration files .
If valid , the command exits with status 0. If not valid , all errors encountered
are printed .
`
args := c . Parse ( )
if len ( args ) != 0 {
c . Usage ( )
}
2023-08-14 16:01:17 +03:00
mox . FilesImmediate = true
2023-12-05 15:35:58 +03:00
_ , errs := mox . ParseConfig ( context . Background ( ) , c . log , mox . ConfigStaticPath , true , true , false )
2023-01-30 16:27:06 +03:00
if len ( errs ) > 1 {
log . Printf ( "multiple errors:" )
for _ , err := range errs {
log . Printf ( "%s" , err )
}
os . Exit ( 1 )
} else if len ( errs ) == 1 {
log . Fatalf ( "%s" , errs [ 0 ] )
os . Exit ( 1 )
}
fmt . Println ( "config OK" )
}
func cmdConfigDescribeStatic ( c * cmd ) {
c . params = ">mox.conf"
c . help = ` Prints an annotated empty configuration for use as mox . conf .
The static configuration file cannot be reloaded while mox is running . Mox has
to be restarted for changes to the static configuration file to take effect .
This configuration file needs modifications to make it valid . For example , it
may contain unfinished list items .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
var sc config . Static
err := sconf . Describe ( os . Stdout , & sc )
xcheckf ( err , "describing config" )
}
func cmdConfigDescribeDomains ( c * cmd ) {
c . params = ">domains.conf"
c . help = ` Prints an annotated empty configuration for use as domains . conf .
The domains configuration file contains the domains and their configuration ,
and accounts and their configuration . This includes the configured email
addresses . The mox admin web interface , and the mox command line interface , can
make changes to this file . Mox automatically reloads this file when it changes .
Like the static configuration , the example domains . conf printed by this command
needs modifications to make it valid .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
var dc config . Dynamic
err := sconf . Describe ( os . Stdout , & dc )
xcheckf ( err , "describing config" )
}
change mox to start as root, bind to network sockets, then drop to regular unprivileged mox user
makes it easier to run on bsd's, where you cannot (easily?) let non-root users
bind to ports <1024. starting as root also paves the way for future improvements
with privilege separation.
unfortunately, this requires changes to how you start mox. though mox will help
by automatically fix up dir/file permissions/ownership.
if you start mox from the systemd unit file, you should update it so it starts
as root and adds a few additional capabilities:
# first update the mox binary, then, as root:
./mox config printservice >mox.service
systemctl daemon-reload
systemctl restart mox
journalctl -f -u mox &
# you should see mox start up, with messages about fixing permissions on dirs/files.
if you used the recommended config/ and data/ directory, in a directory just for
mox, and with the mox user called "mox", this should be enough.
if you don't want mox to modify dir/file permissions, set "NoFixPermissions:
true" in mox.conf.
if you named the mox user something else than mox, e.g. "_mox", add "User: _mox"
to mox.conf.
if you created a shared service user as originally suggested, you may want to
get rid of that as it is no longer useful and may get in the way. e.g. if you
had /home/service/mox with a "service" user, that service user can no longer
access any files: only mox and root can.
this also adds scripts for building mox docker images for alpine-supported
platforms.
the "restart" subcommand has been removed. it wasn't all that useful and got in
the way.
and another change: when adding a domain while mtasts isn't enabled, don't add
the per-domain mtasts config, as it would cause failure to add the domain.
based on report from setting up mox on openbsd from mteege.
and based on issue #3. thanks for the feedback!
2023-02-27 14:19:55 +03:00
func cmdConfigPrintservice ( c * cmd ) {
c . params = ">mox.service"
c . help = ` Prints a systemd unit service file for mox .
This is the same file as generated using quickstart . If the systemd service file
has changed with a newer version of mox , use this command to generate an up to
date version .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
pwd , err := os . Getwd ( )
if err != nil {
log . Printf ( "current working directory: %v" , err )
pwd = "/home/mox"
}
service := strings . ReplaceAll ( moxService , "/home/mox" , pwd )
fmt . Print ( service )
}
2023-01-30 16:27:06 +03:00
func cmdConfigDomainAdd ( c * cmd ) {
c . params = "domain account [localpart]"
c . help = ` Adds a new domain to the configuration and reloads the configuration .
The account is used for the postmaster mailboxes the domain , including as DMARC and
TLS reporting . Localpart is the "username" at the domain for this account . If
must be set if and only if account does not yet exist .
`
args := c . Parse ( )
if len ( args ) != 2 && len ( args ) != 3 {
c . Usage ( )
}
d := xparseDomain ( args [ 0 ] , "domain" )
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
var localpart string
if len ( args ) == 3 {
localpart = args [ 2 ]
2023-01-30 16:27:06 +03:00
}
2023-07-02 14:53:34 +03:00
ctlcmdConfigDomainAdd ( xctl ( ) , d , args [ 1 ] , localpart )
}
func ctlcmdConfigDomainAdd ( ctl * ctl , domain dns . Domain , account , localpart string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "domainadd" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( domain . Name ( ) )
ctl . xwrite ( account )
ctl . xwrite ( localpart )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
2023-07-02 14:53:34 +03:00
fmt . Printf ( "domain added, remember to add dns records, see:\n\nmox config dnsrecords %s\nmox config dnscheck %s\n" , domain . Name ( ) , domain . Name ( ) )
2023-01-30 16:27:06 +03:00
}
func cmdConfigDomainRemove ( c * cmd ) {
c . params = "domain"
c . help = ` Remove a domain from the configuration and reload the configuration .
This is a dangerous operation . Incoming email delivery for this domain will be
rejected .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
d := xparseDomain ( args [ 0 ] , "domain" )
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdConfigDomainRemove ( xctl ( ) , d )
}
func ctlcmdConfigDomainRemove ( ctl * ctl , d dns . Domain ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "domainrm" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( d . Name ( ) )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
fmt . Printf ( "domain removed, remember to remove dns records for %s\n" , d )
}
func cmdConfigAccountAdd ( c * cmd ) {
c . params = "account address"
c . help = ` Add an account with an email address and reload the configuration .
Email can be delivered to this address / account . A password has to be configured
explicitly , see the setaccountpassword command .
`
args := c . Parse ( )
if len ( args ) != 2 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdConfigAccountAdd ( xctl ( ) , args [ 0 ] , args [ 1 ] )
}
func ctlcmdConfigAccountAdd ( ctl * ctl , account , address string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "accountadd" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( account )
ctl . xwrite ( address )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
2023-09-23 18:18:49 +03:00
fmt . Printf ( "account added, set a password with \"mox setaccountpassword %s\"\n" , account )
2023-01-30 16:27:06 +03:00
}
func cmdConfigAccountRemove ( c * cmd ) {
c . params = "account"
c . help = ` Remove an account and reload the configuration .
Email addresses for this account will also be removed , and incoming email for
these addresses will be rejected .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdConfigAccountRemove ( xctl ( ) , args [ 0 ] )
}
func ctlcmdConfigAccountRemove ( ctl * ctl , account string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "accountrm" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( account )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
fmt . Println ( "account removed" )
}
func cmdConfigAddressAdd ( c * cmd ) {
c . params = "address account"
2023-03-29 22:11:43 +03:00
c . help = ` Adds an address to an account and reloads the configuration .
If address starts with a @ ( i . e . a missing localpart ) , this is a catchall
address for the domain .
`
2023-01-30 16:27:06 +03:00
args := c . Parse ( )
if len ( args ) != 2 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdConfigAddressAdd ( xctl ( ) , args [ 0 ] , args [ 1 ] )
}
func ctlcmdConfigAddressAdd ( ctl * ctl , address , account string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "addressadd" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( address )
ctl . xwrite ( account )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
fmt . Println ( "address added" )
}
func cmdConfigAddressRemove ( c * cmd ) {
c . params = "address"
c . help = ` Remove an address and reload the configuration .
2023-03-29 22:11:43 +03:00
Incoming email for this address will be rejected after removing an address .
2023-01-30 16:27:06 +03:00
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdConfigAddressRemove ( xctl ( ) , args [ 0 ] )
}
func ctlcmdConfigAddressRemove ( ctl * ctl , address string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "addressrm" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( address )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
fmt . Println ( "address removed" )
}
func cmdConfigDNSRecords ( c * cmd ) {
c . params = "domain"
c . help = ` Prints annotated DNS records as zone file that should be created for the domain .
The zone file can be imported into existing DNS software . You should review the
DNS records , especially if your domain previously / currently has email
configured .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
d := xparseDomain ( args [ 0 ] , "domain" )
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
domConf , ok := mox . Conf . Domain ( d )
if ! ok {
log . Fatalf ( "unknown domain" )
}
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
resolver := dns . StrictResolver { Pkg : "main" }
_ , result , err := resolver . LookupTXT ( context . Background ( ) , d . ASCII + "." )
if ! dns . IsNotFound ( err ) {
xcheckf ( err , "looking up record for dnssec-status" )
}
2023-12-21 17:16:30 +03:00
var certIssuerDomainName , acmeAccountURI string
public := mox . Conf . Static . Listeners [ "public" ]
if public . TLS != nil && public . TLS . ACME != "" {
acme , ok := mox . Conf . Static . ACME [ public . TLS . ACME ]
if ok && acme . Manager . Manager . Client != nil {
certIssuerDomainName = acme . IssuerDomainName
acc , err := acme . Manager . Manager . Client . GetReg ( context . Background ( ) , "" )
c . log . Check ( err , "get public acme account" )
if err == nil {
acmeAccountURI = acc . URI
}
}
}
records , err := mox . DomainRecords ( domConf , d , result . Authentic , certIssuerDomainName , acmeAccountURI )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "records" )
fmt . Print ( strings . Join ( records , "\n" ) + "\n" )
}
func cmdConfigDNSCheck ( c * cmd ) {
c . params = "domain"
c . help = "Check the DNS records with the configuration for the domain, and print any errors/warnings."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
d := xparseDomain ( args [ 0 ] , "domain" )
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
_ , ok := mox . Conf . Domain ( d )
if ! ok {
log . Fatalf ( "unknown domain" )
}
// todo future: move http.Admin.CheckDomain to mox- and make it return a regular error.
defer func ( ) {
x := recover ( )
if x == nil {
return
}
err , ok := x . ( * sherpa . Error )
if ! ok {
panic ( x )
}
log . Fatalf ( "%s" , err )
} ( )
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
printResult := func ( name string , r webadmin . Result ) {
2023-01-30 16:27:06 +03:00
if len ( r . Errors ) == 0 && len ( r . Warnings ) == 0 {
return
}
fmt . Printf ( "# %s\n" , name )
for _ , s := range r . Errors {
fmt . Printf ( "error: %s\n" , s )
}
for _ , s := range r . Warnings {
fmt . Printf ( "warning: %s\n" , s )
}
}
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
result := webadmin . Admin { } . CheckDomain ( context . Background ( ) , args [ 0 ] )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
printResult ( "DNSSEC" , result . DNSSEC . Result )
2023-02-03 17:54:34 +03:00
printResult ( "IPRev" , result . IPRev . Result )
2023-01-30 16:27:06 +03:00
printResult ( "MX" , result . MX . Result )
printResult ( "TLS" , result . TLS . Result )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
printResult ( "DANE" , result . DANE . Result )
2023-01-30 16:27:06 +03:00
printResult ( "SPF" , result . SPF . Result )
printResult ( "DKIM" , result . DKIM . Result )
printResult ( "DMARC" , result . DMARC . Result )
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
printResult ( "Host TLSRPT" , result . HostTLSRPT . Result )
printResult ( "Domain TLSRPT" , result . DomainTLSRPT . Result )
2023-01-30 16:27:06 +03:00
printResult ( "MTASTS" , result . MTASTS . Result )
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
printResult ( "SRV conf" , result . SRVConf . Result )
2023-01-30 16:27:06 +03:00
printResult ( "Autoconf" , result . Autoconf . Result )
printResult ( "Autodiscover" , result . Autodiscover . Result )
}
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
func cmdConfigEnsureACMEHostprivatekeys ( c * cmd ) {
c . params = ""
c . help = ` Ensure host private keys exist for TLS listeners with ACME .
In mox . conf , each listener can have TLS configured . Long - lived private key files
can be specified , which will be used when requesting ACME certificates .
Configuring these private keys makes it feasible to publish DANE TLSA records
for the corresponding public keys in DNS , protected with DNSSEC , allowing TLS
certificate verification without depending on a list of Certificate Authorities
( CAs ) . Previous versions of mox did not pre - generate private keys for use with
ACME certificates , but would generate private keys on - demand . By explicitly
configuring private keys , they will not change automatedly with new
certificates , and the DNS TLSA records stay valid .
This command looks for listeners in mox . conf with TLS with ACME configured . For
each missing host private key ( of type rsa - 2048 and ecdsa - p256 ) a key is written
to config / hostkeys / . If a certificate exists in the ACME "cache" , its private
key is copied . Otherwise a new private key is generated . Snippets for manually
updating / editing mox . conf are printed .
After running this command , and updating mox . conf , run "mox config dnsrecords"
for a domain and create the TLSA DNS records it suggests to enable DANE .
`
args := c . Parse ( )
if len ( args ) != 0 {
c . Usage ( )
}
// Load a private key from p, in various forms. We only look at the first PEM
// block. Files with only a private key, or with multiple blocks but private key
// first like autocert does, can be loaded.
loadPrivateKey := func ( f * os . File ) ( any , error ) {
buf , err := io . ReadAll ( f )
if err != nil {
return nil , fmt . Errorf ( "reading private key file: %v" , err )
}
block , _ := pem . Decode ( buf )
if block == nil {
return nil , fmt . Errorf ( "no pem block found in pem file" )
}
var privKey any
switch block . Type {
case "EC PRIVATE KEY" :
privKey , err = x509 . ParseECPrivateKey ( block . Bytes )
case "RSA PRIVATE KEY" :
privKey , err = x509 . ParsePKCS1PrivateKey ( block . Bytes )
case "PRIVATE KEY" :
privKey , err = x509 . ParsePKCS8PrivateKey ( block . Bytes )
default :
return nil , fmt . Errorf ( "unrecognized pem block type %q" , block . Type )
}
if err != nil {
return nil , fmt . Errorf ( "parsing private key of type %q: %v" , block . Type , err )
}
return privKey , nil
}
// Either load a private key from file, or if it doesn't exist generate a new
// private key.
xtryLoadPrivateKey := func ( kt autocert . KeyType , p string ) any {
f , err := os . Open ( p )
if err != nil && errors . Is ( err , fs . ErrNotExist ) {
switch kt {
case autocert . KeyRSA2048 :
privKey , err := rsa . GenerateKey ( cryptorand . Reader , 2048 )
xcheckf ( err , "generating new 2048-bit rsa private key" )
return privKey
case autocert . KeyECDSAP256 :
privKey , err := ecdsa . GenerateKey ( elliptic . P256 ( ) , cryptorand . Reader )
xcheckf ( err , "generating new ecdsa p-256 private key" )
return privKey
}
log . Fatalf ( "unexpected keytype %v" , kt )
return nil
}
xcheckf ( err , "%s: open acme key and certificate file" , p )
// Load private key from file. autocert stores a PEM file that starts with a
// private key, followed by certificate(s). So we can just read it and should find
// the private key we are looking for.
privKey , err := loadPrivateKey ( f )
if xerr := f . Close ( ) ; xerr != nil {
log . Printf ( "closing private key file: %v" , xerr )
}
xcheckf ( err , "parsing private key from acme key and certificate file" )
switch k := privKey . ( type ) {
case * rsa . PrivateKey :
if k . N . BitLen ( ) == 2048 {
return privKey
}
log . Printf ( "warning: rsa private key in %s has %d bits, skipping and generating new 2048-bit rsa private key" , p , k . N . BitLen ( ) )
privKey , err := rsa . GenerateKey ( cryptorand . Reader , 2048 )
xcheckf ( err , "generating new 2048-bit rsa private key" )
return privKey
case * ecdsa . PrivateKey :
if k . Curve == elliptic . P256 ( ) {
return privKey
}
log . Printf ( "warning: ecdsa private key in %s has curve %v, skipping and generating new p-256 ecdsa key" , p , k . Curve . Params ( ) . Name )
privKey , err := ecdsa . GenerateKey ( elliptic . P256 ( ) , cryptorand . Reader )
xcheckf ( err , "generating new ecdsa p-256 private key" )
return privKey
default :
log . Fatalf ( "%s: unexpected private key file of type %T" , p , privKey )
return nil
}
}
// Write privKey as PKCS#8 private key to p. Only if file does not yet exist.
writeHostPrivateKey := func ( privKey any , p string ) error {
os . MkdirAll ( filepath . Dir ( p ) , 0700 )
f , err := os . OpenFile ( p , os . O_CREATE | os . O_EXCL | os . O_WRONLY , 0600 )
if err != nil {
return fmt . Errorf ( "create: %v" , err )
}
defer func ( ) {
if f != nil {
if err := f . Close ( ) ; err != nil {
log . Printf ( "closing new hostkey file %s after error: %v" , p , err )
}
if err := os . Remove ( p ) ; err != nil {
log . Printf ( "removing new hostkey file %s after error: %v" , p , err )
}
}
} ( )
buf , err := x509 . MarshalPKCS8PrivateKey ( privKey )
if err != nil {
return fmt . Errorf ( "marshal private host key: %v" , err )
}
block := pem . Block {
Type : "PRIVATE KEY" ,
Bytes : buf ,
}
if err := pem . Encode ( f , & block ) ; err != nil {
return fmt . Errorf ( "write as pem: %v" , err )
}
if err := f . Close ( ) ; err != nil {
return fmt . Errorf ( "close: %v" , err )
}
f = nil
return nil
}
mustLoadConfig ( )
timestamp := time . Now ( ) . Format ( "20060102T150405" )
didCreate := false
for listenerName , l := range mox . Conf . Static . Listeners {
if l . TLS == nil || l . TLS . ACME == "" {
continue
}
haveKeyTypes := map [ autocert . KeyType ] bool { }
for _ , privKeyFile := range l . TLS . HostPrivateKeyFiles {
p := mox . ConfigDirPath ( privKeyFile )
f , err := os . Open ( p )
xcheckf ( err , "open host private key" )
privKey , err := loadPrivateKey ( f )
if err := f . Close ( ) ; err != nil {
log . Printf ( "closing host private key file: %v" , err )
}
xcheckf ( err , "loading host private key" )
switch k := privKey . ( type ) {
case * rsa . PrivateKey :
if k . N . BitLen ( ) == 2048 {
haveKeyTypes [ autocert . KeyRSA2048 ] = true
}
case * ecdsa . PrivateKey :
if k . Curve == elliptic . P256 ( ) {
haveKeyTypes [ autocert . KeyECDSAP256 ] = true
}
}
}
created := [ ] string { }
for _ , kt := range [ ] autocert . KeyType { autocert . KeyRSA2048 , autocert . KeyECDSAP256 } {
if haveKeyTypes [ kt ] {
continue
}
// Lookup key in ACME cache.
host := l . HostnameDomain
if host . ASCII == "" {
host = mox . Conf . Static . HostnameDomain
}
filename := host . ASCII
kind := "ecdsap256"
if kt == autocert . KeyRSA2048 {
filename += "+rsa"
kind = "rsa2048"
}
p := mox . DataDirPath ( filepath . Join ( "acme" , "keycerts" , l . TLS . ACME , filename ) )
privKey := xtryLoadPrivateKey ( kt , p )
make mox compile on windows, without "mox serve" but with working "mox localserve"
getting mox to compile required changing code in only a few places where
package "syscall" was used: for accessing file access times and for umask
handling. an open problem is how to start a process as an unprivileged user on
windows. that's why "mox serve" isn't implemented yet. and just finding a way
to implement it now may not be good enough in the near future: we may want to
starting using a more complete privilege separation approach, with a process
handling sensitive tasks (handling private keys, authentication), where we may
want to pass file descriptors between processes. how would that work on
windows?
anyway, getting mox to compile for windows doesn't mean it works properly on
windows. the largest issue: mox would normally open a file, rename or remove
it, and finally close it. this happens during message delivery. that doesn't
work on windows, the rename/remove would fail because the file is still open.
so this commit swaps many "remove" and "close" calls. renames are a longer
story: message delivery had two ways to deliver: with "consuming" the
(temporary) message file (which would rename it to its final destination), and
without consuming (by hardlinking the file, falling back to copying). the last
delivery to a recipient of a message (and the only one in the common case of a
single recipient) would consume the message, and the earlier recipients would
not. during delivery, the already open message file was used, to parse the
message. we still want to use that open message file, and the caller now stays
responsible for closing it, but we no longer try to rename (consume) the file.
we always hardlink (or copy) during delivery (this works on windows), and the
caller is responsible for closing and removing (in that order) the original
temporary file. this does cost one syscall more. but it makes the delivery code
(responsibilities) a bit simpler.
there is one more obvious issue: the file system path separator. mox already
used the "filepath" package to join paths in many places, but not everywhere.
and it still used strings with slashes for local file access. with this commit,
the code now uses filepath.FromSlash for path strings with slashes, uses
"filepath" in a few more places where it previously didn't. also switches from
"filepath" to regular "path" package when handling mailbox names in a few
places, because those always use forward slashes, regardless of local file
system conventions. windows can handle forward slashes when opening files, so
test code that passes path strings with forward slashes straight to go stdlib
file i/o functions are left unchanged to reduce code churn. the regular
non-test code, or test code that uses path strings in places other than
standard i/o functions, does have the paths converted for consistent paths
(otherwise we would end up with paths with mixed forward/backward slashes in
log messages).
windows cannot dup a listening socket. for "mox localserve", it isn't
important, and we can work around the issue. the current approach for "mox
serve" (forking a process and passing file descriptors of listening sockets on
"privileged" ports) won't work on windows. perhaps it isn't needed on windows,
and any user can listen on "privileged" ports? that would be welcome.
on windows, os.Open cannot open a directory, so we cannot call Sync on it after
message delivery. a cursory internet search indicates that directories cannot
be synced on windows. the story is probably much more nuanced than that, with
long deep technical details/discussions/disagreement/confusion, like on unix.
for "mox localserve" we can get away with making syncdir a no-op.
2023-10-14 11:54:07 +03:00
relPath := filepath . Join ( "hostkeys" , fmt . Sprintf ( "%s.%s.%s.privatekey.pkcs8.pem" , host . Name ( ) , timestamp , kind ) )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
destPath := mox . ConfigDirPath ( relPath )
err := writeHostPrivateKey ( privKey , destPath )
xcheckf ( err , "writing host private key file to %s: %v" , destPath , err )
created = append ( created , relPath )
fmt . Printf ( "Wrote host private key: %s\n" , destPath )
}
didCreate = didCreate || len ( created ) > 0
if len ( created ) > 0 {
tls := config . TLS {
HostPrivateKeyFiles : append ( l . TLS . HostPrivateKeyFiles , created ... ) ,
}
fmt . Printf ( "\nEnsure Listener %q in %s has the following in its TLS section, below \"ACME: %s\" (don't forget to indent with tabs):\n\n" , listenerName , mox . ConfigStaticPath , l . TLS . ACME )
err := sconf . Write ( os . Stdout , tls )
xcheckf ( err , "writing new TLS.HostPrivateKeyFiles section" )
fmt . Println ( )
}
}
if didCreate {
fmt . Printf ( `
After updating mox . conf and restarting , run "mox config dnsrecords" for a
domain and create the TLSA DNS records it suggests to enable DANE .
` )
}
}
2023-01-30 16:27:06 +03:00
func cmdLoglevels ( c * cmd ) {
c . params = "[level [pkg]]"
c . help = ` Print the log levels , or set a new default log level , or a level for the given package .
By default , a single log level applies to all logging in mox . But for each
"pkg" , an overriding log level can be configured . Examples of packages :
smtpserver , smtpclient , queue , imapserver , spf , dkim , dmarc , junk , message ,
etc .
2023-02-06 17:17:46 +03:00
Specify a pkg and an empty level to clear the configured level for a package .
2023-02-03 22:33:19 +03:00
Valid labels : error , info , debug , trace , traceauth , tracedata .
2023-01-30 16:27:06 +03:00
`
args := c . Parse ( )
if len ( args ) > 2 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
if len ( args ) == 0 {
2023-07-02 14:53:34 +03:00
ctlcmdLoglevels ( xctl ( ) )
} else {
var pkg string
if len ( args ) == 2 {
pkg = args [ 1 ]
}
ctlcmdSetLoglevels ( xctl ( ) , pkg , args [ 0 ] )
2023-01-30 16:27:06 +03:00
}
2023-07-02 14:53:34 +03:00
}
2023-01-30 16:27:06 +03:00
2023-07-02 14:53:34 +03:00
func ctlcmdLoglevels ( ctl * ctl ) {
ctl . xwrite ( "loglevels" )
ctl . xreadok ( )
ctl . xstreamto ( os . Stdout )
}
func ctlcmdSetLoglevels ( ctl * ctl , pkg , level string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "setloglevels" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( pkg )
ctl . xwrite ( level )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
}
func cmdStop ( c * cmd ) {
c . help = ` Shut mox down , giving connections maximum 3 seconds to stop before closing them .
While shutting down , new IMAP and SMTP connections will get a status response
indicating temporary unavailability . Existing connections will get a 3 second
period to finish their transaction and shut down . Under normal circumstances ,
only IMAP has long - living connections , with the IDLE command to get notified of
new mail deliveries .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
ctl := xctl ( )
ctl . xwrite ( "stop" )
// Read will hang until remote has shut down.
buf := make ( [ ] byte , 128 )
n , err := ctl . conn . Read ( buf )
if err == nil {
log . Fatalf ( "expected eof after graceful shutdown, got data %q" , buf [ : n ] )
} else if err != io . EOF {
log . Fatalf ( "expected eof after graceful shutdown, got error %v" , err )
}
fmt . Println ( "mox stopped" )
}
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
func cmdBackup ( c * cmd ) {
c . params = "dest-dir"
c . help = ` Creates a backup of the data directory .
Backup creates consistent snapshots of the databases and message files and
copies other files in the data directory . Empty directories are not copied .
These files can then be stored elsewhere for long - term storage , or used to fall
back to should an upgrade fail . Simply copying files in the data directory
while mox is running can result in unusable database files .
Message files never change ( they are read - only , though can be removed ) and are
2023-08-23 15:59:43 +03:00
hard - linked so they don ' t consume additional space . If hardlinking fails , for
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
example when the backup destination directory is on a different file system , a
regular copy is made . Using a destination directory like "data/tmp/backup"
increases the odds hardlinking succeeds : the default systemd service file
specifically mounts the data directory , causing attempts to hardlink outside it
to fail with an error about cross - device linking .
All files in the data directory that aren ' t recognized ( i . e . other than known
2023-06-01 12:34:28 +03:00
database files , message files , an acme directory , the "tmp" directory , etc ) ,
are stored , but with a warning .
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
A clean successful backup does not print any output by default . Use the
- verbose flag for details , including timing .
To restore a backup , first shut down mox , move away the old data directory and
move an earlier backed up directory in its place , run "mox verifydata" ,
possibly with the "-fix" option , and restart mox . After the restore , you may
also want to run "mox bumpuidvalidity" for each account for which messages in a
mailbox changed , to force IMAP clients to synchronize mailbox state .
Before upgrading , to check if the upgrade will likely succeed , first make a
backup , then use the new mox binary to run "mox verifydata" on the backup . This
can change the backup files ( e . g . upgrade database files , move away
unrecognized message files ) , so you should make a new backup before actually
upgrading .
`
var verbose bool
c . flag . BoolVar ( & verbose , "verbose" , false , "print progress" )
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
mustLoadConfig ( )
dstDataDir , err := filepath . Abs ( args [ 0 ] )
xcheckf ( err , "making path absolute" )
2023-07-02 14:53:34 +03:00
ctlcmdBackup ( xctl ( ) , dstDataDir , verbose )
}
func ctlcmdBackup ( ctl * ctl , dstDataDir string , verbose bool ) {
add a "backup" subcommand to make consistent backups, and a "verifydata" subcommand to verify a backup before restoring, and add tests for future upgrades
the backup command will make consistent snapshots of all the database files. i
had been copying the db files before, and it usually works. but if the file is
modified during the backup, it is inconsistent and is likely to generate errors
when reading (can be at any moment in the future, when reading some db page).
"mox backup" opens the database file and writes out a copy in a transaction.
it also duplicates the message files.
before doing a restore, you could run "mox verifydata" on the to-be-restored
"data" directory. it check the database files, and compares the message files
with the database.
the new "gentestdata" subcommand generates a basic "data" directory, with a
queue and a few accounts. we will use it in the future along with "verifydata"
to test upgrades from old version to the latest version. both when going to the
next version, and when skipping several versions. the script test-upgrades.sh
executes these tests and doesn't do anything at the moment, because no releases
have this subcommand yet.
inspired by a failed upgrade attempt of a pre-release version.
2023-05-26 20:26:51 +03:00
ctl . xwrite ( "backup" )
ctl . xwrite ( dstDataDir )
if verbose {
ctl . xwrite ( "verbose" )
} else {
ctl . xwrite ( "" )
}
ctl . xstreamto ( os . Stdout )
ctl . xreadok ( )
}
2023-01-30 16:27:06 +03:00
func cmdSetadminpassword ( c * cmd ) {
c . help = ` Set a new admin password , for the web interface .
The password is read from stdin . Its bcrypt hash is stored in a file named
"adminpasswd" in the configuration directory .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
path := mox . ConfigDirPath ( mox . Conf . Static . AdminPasswordFile )
if path == "" {
log . Fatal ( "no admin password file configured" )
}
pw := xreadpassword ( )
hash , err := bcrypt . GenerateFromPassword ( [ ] byte ( pw ) , bcrypt . DefaultCost )
xcheckf ( err , "generating hash for password" )
err = os . WriteFile ( path , hash , 0660 )
xcheckf ( err , "writing hash to admin password file" )
}
func xreadpassword ( ) string {
2023-03-05 18:42:34 +03:00
fmt . Printf ( `
Type new password . Password WILL echo .
WARNING : Bots will try to bruteforce your password . Connections with failed
authentication attempts will be rate limited but attackers WILL find weak
passwords . If your account is compromised , spammers are likely to abuse your
system , spamming your address and the wider internet in your name . So please
2023-05-22 16:04:06 +03:00
pick a random , unguessable password , preferably at least 12 characters .
2023-03-05 18:42:34 +03:00
` )
2023-01-30 16:27:06 +03:00
fmt . Printf ( "password: " )
buf := make ( [ ] byte , 64 )
n , err := os . Stdin . Read ( buf )
xcheckf ( err , "reading stdin" )
pw := string ( buf [ : n ] )
pw = strings . TrimSuffix ( strings . TrimSuffix ( pw , "\r\n" ) , "\n" )
if len ( pw ) < 8 {
log . Fatal ( "password must be at least 8 characters" )
}
return pw
}
func cmdSetaccountpassword ( c * cmd ) {
2023-09-23 18:18:49 +03:00
c . params = "account"
2023-01-30 16:27:06 +03:00
c . help = ` Set new password an account .
2023-02-05 18:29:03 +03:00
The password is read from stdin . Secrets derived from the password , but not the
password itself , are stored in the account database . The stored secrets are for
authentication with : scram - sha - 256 , scram - sha - 1 , cram - md5 , plain text ( bcrypt
hash ) .
2023-01-30 16:27:06 +03:00
2023-09-23 18:18:49 +03:00
The parameter is an account name , as configured under Accounts in domains . conf
and as present in the data / accounts / directory , not a configured email address
for an account .
2023-01-30 16:27:06 +03:00
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
pw := xreadpassword ( )
2023-07-02 14:53:34 +03:00
ctlcmdSetaccountpassword ( xctl ( ) , args [ 0 ] , pw )
}
2023-09-23 18:18:49 +03:00
func ctlcmdSetaccountpassword ( ctl * ctl , account , password string ) {
2023-02-06 13:31:46 +03:00
ctl . xwrite ( "setaccountpassword" )
2023-09-23 18:18:49 +03:00
ctl . xwrite ( account )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( password )
2023-02-06 13:31:46 +03:00
ctl . xreadok ( )
2023-01-30 16:27:06 +03:00
}
func cmdDeliver ( c * cmd ) {
c . unlisted = true
c . params = "address < message"
c . help = "Deliver message to address."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdDeliver ( xctl ( ) , args [ 0 ] )
}
2023-01-30 16:27:06 +03:00
2023-07-02 14:53:34 +03:00
func ctlcmdDeliver ( ctl * ctl , address string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "deliver" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( address )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
ctl . xstreamfrom ( os . Stdin )
line := ctl . xread ( )
if line == "ok" {
fmt . Println ( "message delivered" )
} else {
log . Fatalf ( "deliver: %s" , line )
}
}
func cmdQueueList ( c * cmd ) {
c . help = ` List messages in the delivery queue .
This prints the message with its ID , last and next delivery attempts , last
error .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdQueueList ( xctl ( ) )
}
2023-01-30 16:27:06 +03:00
2023-07-02 14:53:34 +03:00
func ctlcmdQueueList ( ctl * ctl ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "queue" )
ctl . xreadok ( )
if _ , err := io . Copy ( os . Stdout , ctl . reader ( ) ) ; err != nil {
log . Fatalf ( "%s" , err )
}
}
func cmdQueueKick ( c * cmd ) {
new feature: when delivering messages from the queue, make it possible to use a "transport"
the default transport is still just "direct delivery", where we connect to the
destination domain's MX servers.
other transports are:
- regular smtp without authentication, this is relaying to a smarthost.
- submission with authentication, e.g. to a third party email sending service.
- direct delivery, but with with connections going through a socks proxy. this
can be helpful if your ip is blocked, you need to get email out, and you have
another IP that isn't blocked.
keep in mind that for all of the above, appropriate SPF/DKIM settings have to
be configured. the "dnscheck" for a domain does a check for any SOCKS IP in the
SPF record. SPF for smtp/submission (ranges? includes?) and any DKIM
requirements cannot really be checked.
which transport is used can be configured through routes. routes can be set on
an account, a domain, or globally. the routes are evaluated in that order, with
the first match selecting the transport. these routes are evaluated for each
delivery attempt. common selection criteria are recipient domain and sender
domain, but also which delivery attempt this is. you could configured mox to
attempt sending through a 3rd party from the 4th attempt onwards.
routes and transports are optional. if no route matches, or an empty/zero
transport is selected, normal direct delivery is done.
we could already "submit" emails with 3rd party accounts with "sendmail". but
we now support more SASL authentication mechanisms with SMTP (not only PLAIN,
but also SCRAM-SHA-256, SCRAM-SHA-1 and CRAM-MD5), which sendmail now also
supports. sendmail will use the most secure mechanism supported by the server,
or the explicitly configured mechanism.
for issue #36 by dmikushin. also based on earlier discussion on hackernews.
2023-06-16 19:38:28 +03:00
c . params = "[-id id] [-todomain domain] [-recipient address] [-transport transport]"
2023-01-30 16:27:06 +03:00
c . help = ` Schedule matching messages in the queue for immediate delivery .
Messages deliveries are normally attempted with exponential backoff . The first
retry after 7.5 minutes , and doubling each time . Kicking messages sets their
next scheduled attempt to now , it can cause delivery to fail earlier than
without rescheduling .
new feature: when delivering messages from the queue, make it possible to use a "transport"
the default transport is still just "direct delivery", where we connect to the
destination domain's MX servers.
other transports are:
- regular smtp without authentication, this is relaying to a smarthost.
- submission with authentication, e.g. to a third party email sending service.
- direct delivery, but with with connections going through a socks proxy. this
can be helpful if your ip is blocked, you need to get email out, and you have
another IP that isn't blocked.
keep in mind that for all of the above, appropriate SPF/DKIM settings have to
be configured. the "dnscheck" for a domain does a check for any SOCKS IP in the
SPF record. SPF for smtp/submission (ranges? includes?) and any DKIM
requirements cannot really be checked.
which transport is used can be configured through routes. routes can be set on
an account, a domain, or globally. the routes are evaluated in that order, with
the first match selecting the transport. these routes are evaluated for each
delivery attempt. common selection criteria are recipient domain and sender
domain, but also which delivery attempt this is. you could configured mox to
attempt sending through a 3rd party from the 4th attempt onwards.
routes and transports are optional. if no route matches, or an empty/zero
transport is selected, normal direct delivery is done.
we could already "submit" emails with 3rd party accounts with "sendmail". but
we now support more SASL authentication mechanisms with SMTP (not only PLAIN,
but also SCRAM-SHA-256, SCRAM-SHA-1 and CRAM-MD5), which sendmail now also
supports. sendmail will use the most secure mechanism supported by the server,
or the explicitly configured mechanism.
for issue #36 by dmikushin. also based on earlier discussion on hackernews.
2023-06-16 19:38:28 +03:00
With the - transport flag , future delivery attempts are done using the specified
transport . Transports can be configured in mox . conf , e . g . to submit to a remote
queue over SMTP .
2023-01-30 16:27:06 +03:00
`
var id int64
new feature: when delivering messages from the queue, make it possible to use a "transport"
the default transport is still just "direct delivery", where we connect to the
destination domain's MX servers.
other transports are:
- regular smtp without authentication, this is relaying to a smarthost.
- submission with authentication, e.g. to a third party email sending service.
- direct delivery, but with with connections going through a socks proxy. this
can be helpful if your ip is blocked, you need to get email out, and you have
another IP that isn't blocked.
keep in mind that for all of the above, appropriate SPF/DKIM settings have to
be configured. the "dnscheck" for a domain does a check for any SOCKS IP in the
SPF record. SPF for smtp/submission (ranges? includes?) and any DKIM
requirements cannot really be checked.
which transport is used can be configured through routes. routes can be set on
an account, a domain, or globally. the routes are evaluated in that order, with
the first match selecting the transport. these routes are evaluated for each
delivery attempt. common selection criteria are recipient domain and sender
domain, but also which delivery attempt this is. you could configured mox to
attempt sending through a 3rd party from the 4th attempt onwards.
routes and transports are optional. if no route matches, or an empty/zero
transport is selected, normal direct delivery is done.
we could already "submit" emails with 3rd party accounts with "sendmail". but
we now support more SASL authentication mechanisms with SMTP (not only PLAIN,
but also SCRAM-SHA-256, SCRAM-SHA-1 and CRAM-MD5), which sendmail now also
supports. sendmail will use the most secure mechanism supported by the server,
or the explicitly configured mechanism.
for issue #36 by dmikushin. also based on earlier discussion on hackernews.
2023-06-16 19:38:28 +03:00
var todomain , recipient , transport string
2023-01-30 16:27:06 +03:00
c . flag . Int64Var ( & id , "id" , 0 , "id of message in queue" )
c . flag . StringVar ( & todomain , "todomain" , "" , "destination domain of messages" )
c . flag . StringVar ( & recipient , "recipient" , "" , "recipient email address" )
new feature: when delivering messages from the queue, make it possible to use a "transport"
the default transport is still just "direct delivery", where we connect to the
destination domain's MX servers.
other transports are:
- regular smtp without authentication, this is relaying to a smarthost.
- submission with authentication, e.g. to a third party email sending service.
- direct delivery, but with with connections going through a socks proxy. this
can be helpful if your ip is blocked, you need to get email out, and you have
another IP that isn't blocked.
keep in mind that for all of the above, appropriate SPF/DKIM settings have to
be configured. the "dnscheck" for a domain does a check for any SOCKS IP in the
SPF record. SPF for smtp/submission (ranges? includes?) and any DKIM
requirements cannot really be checked.
which transport is used can be configured through routes. routes can be set on
an account, a domain, or globally. the routes are evaluated in that order, with
the first match selecting the transport. these routes are evaluated for each
delivery attempt. common selection criteria are recipient domain and sender
domain, but also which delivery attempt this is. you could configured mox to
attempt sending through a 3rd party from the 4th attempt onwards.
routes and transports are optional. if no route matches, or an empty/zero
transport is selected, normal direct delivery is done.
we could already "submit" emails with 3rd party accounts with "sendmail". but
we now support more SASL authentication mechanisms with SMTP (not only PLAIN,
but also SCRAM-SHA-256, SCRAM-SHA-1 and CRAM-MD5), which sendmail now also
supports. sendmail will use the most secure mechanism supported by the server,
or the explicitly configured mechanism.
for issue #36 by dmikushin. also based on earlier discussion on hackernews.
2023-06-16 19:38:28 +03:00
c . flag . StringVar ( & transport , "transport" , "" , "transport to use for the next delivery" )
2023-01-30 16:27:06 +03:00
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdQueueKick ( xctl ( ) , id , todomain , recipient , transport )
}
2023-01-30 16:27:06 +03:00
2023-07-02 14:53:34 +03:00
func ctlcmdQueueKick ( ctl * ctl , id int64 , todomain , recipient , transport string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "queuekick" )
ctl . xwrite ( fmt . Sprintf ( "%d" , id ) )
ctl . xwrite ( todomain )
ctl . xwrite ( recipient )
new feature: when delivering messages from the queue, make it possible to use a "transport"
the default transport is still just "direct delivery", where we connect to the
destination domain's MX servers.
other transports are:
- regular smtp without authentication, this is relaying to a smarthost.
- submission with authentication, e.g. to a third party email sending service.
- direct delivery, but with with connections going through a socks proxy. this
can be helpful if your ip is blocked, you need to get email out, and you have
another IP that isn't blocked.
keep in mind that for all of the above, appropriate SPF/DKIM settings have to
be configured. the "dnscheck" for a domain does a check for any SOCKS IP in the
SPF record. SPF for smtp/submission (ranges? includes?) and any DKIM
requirements cannot really be checked.
which transport is used can be configured through routes. routes can be set on
an account, a domain, or globally. the routes are evaluated in that order, with
the first match selecting the transport. these routes are evaluated for each
delivery attempt. common selection criteria are recipient domain and sender
domain, but also which delivery attempt this is. you could configured mox to
attempt sending through a 3rd party from the 4th attempt onwards.
routes and transports are optional. if no route matches, or an empty/zero
transport is selected, normal direct delivery is done.
we could already "submit" emails with 3rd party accounts with "sendmail". but
we now support more SASL authentication mechanisms with SMTP (not only PLAIN,
but also SCRAM-SHA-256, SCRAM-SHA-1 and CRAM-MD5), which sendmail now also
supports. sendmail will use the most secure mechanism supported by the server,
or the explicitly configured mechanism.
for issue #36 by dmikushin. also based on earlier discussion on hackernews.
2023-06-16 19:38:28 +03:00
ctl . xwrite ( transport )
2023-01-30 16:27:06 +03:00
count := ctl . xread ( )
line := ctl . xread ( )
if line == "ok" {
fmt . Printf ( "%s messages scheduled\n" , count )
} else {
log . Fatalf ( "scheduling messages for immediate delivery: %s" , line )
}
}
func cmdQueueDrop ( c * cmd ) {
c . params = "[-id id] [-todomain domain] [-recipient address]"
c . help = ` Remove matching messages from the queue .
Dangerous operation , this completely removes the message . If you want to store
the message , use "queue dump" before removing .
`
var id int64
var todomain , recipient string
c . flag . Int64Var ( & id , "id" , 0 , "id of message in queue" )
c . flag . StringVar ( & todomain , "todomain" , "" , "destination domain of messages" )
c . flag . StringVar ( & recipient , "recipient" , "" , "recipient email address" )
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdQueueDrop ( xctl ( ) , id , todomain , recipient )
}
2023-01-30 16:27:06 +03:00
2023-07-02 14:53:34 +03:00
func ctlcmdQueueDrop ( ctl * ctl , id int64 , todomain , recipient string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "queuedrop" )
ctl . xwrite ( fmt . Sprintf ( "%d" , id ) )
ctl . xwrite ( todomain )
ctl . xwrite ( recipient )
count := ctl . xread ( )
line := ctl . xread ( )
if line == "ok" {
fmt . Printf ( "%s messages dropped\n" , count )
} else {
log . Fatalf ( "scheduling messages for immediate delivery: %s" , line )
}
}
func cmdQueueDump ( c * cmd ) {
c . params = "id"
c . help = ` Dump a message from the queue .
The message is printed to stdout and is in standard internet mail format .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdQueueDump ( xctl ( ) , args [ 0 ] )
}
2023-01-30 16:27:06 +03:00
2023-07-02 14:53:34 +03:00
func ctlcmdQueueDump ( ctl * ctl , id string ) {
2023-01-30 16:27:06 +03:00
ctl . xwrite ( "queuedump" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( id )
2023-01-30 16:27:06 +03:00
ctl . xreadok ( )
if _ , err := io . Copy ( os . Stdout , ctl . reader ( ) ) ; err != nil {
log . Fatalf ( "%s" , err )
}
}
func cmdDKIMGenrsa ( c * cmd ) {
2023-10-13 09:59:35 +03:00
c . params = ">$selector._domainkey.$domain.rsa2048.privatekey.pkcs8.pem"
2023-01-30 16:27:06 +03:00
c . help = ` Generate a new 2048 bit RSA private key for use with DKIM .
The generated file is in PEM format , and has a comment it is generated for use
with DKIM , by mox .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
buf , err := mox . MakeDKIMRSAKey ( dns . Domain { } , dns . Domain { } )
xcheckf ( err , "making rsa private key" )
_ , err = os . Stdout . Write ( buf )
xcheckf ( err , "writing rsa private key" )
}
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
func cmdDANEDial ( c * cmd ) {
c . params = "host:port"
var usages string
c . flag . StringVar ( & usages , "usages" , "pkix-ta,pkix-ee,dane-ta,dane-ee" , "allowed usages for dane, comma-separated list" )
c . help = ` Dial the address using TLS with certificate verification using DANE .
Data is copied between connection and stdin / stdout until either side closes the
connection .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
allowedUsages := [ ] adns . TLSAUsage { }
if usages != "" {
for _ , s := range strings . Split ( usages , "," ) {
var usage adns . TLSAUsage
switch strings . ToLower ( s ) {
case "pkix-ta" , strconv . Itoa ( int ( adns . TLSAUsagePKIXTA ) ) :
usage = adns . TLSAUsagePKIXTA
case "pkix-ee" , strconv . Itoa ( int ( adns . TLSAUsagePKIXEE ) ) :
usage = adns . TLSAUsagePKIXEE
case "dane-ta" , strconv . Itoa ( int ( adns . TLSAUsageDANETA ) ) :
usage = adns . TLSAUsageDANETA
case "dane-ee" , strconv . Itoa ( int ( adns . TLSAUsageDANEEE ) ) :
usage = adns . TLSAUsageDANEEE
default :
log . Fatalf ( "unknown dane usage %q" , s )
}
allowedUsages = append ( allowedUsages , usage )
}
}
2023-12-05 23:13:57 +03:00
pkixRoots , err := x509 . SystemCertPool ( )
xcheckf ( err , "get system pkix certificate pool" )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
resolver := dns . StrictResolver { Pkg : "danedial" }
2023-12-05 23:13:57 +03:00
conn , record , err := dane . Dial ( context . Background ( ) , c . log . Logger , resolver , "tcp" , args [ 0 ] , allowedUsages , pkixRoots )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
xcheckf ( err , "dial" )
log . Printf ( "(connected, verified with %s)" , record )
go func ( ) {
_ , err := io . Copy ( os . Stdout , conn )
xcheckf ( err , "copy from connection to stdout" )
conn . Close ( )
} ( )
_ , err = io . Copy ( conn , os . Stdin )
xcheckf ( err , "copy from stdin to connection" )
}
func cmdDANEDialmx ( c * cmd ) {
c . params = "domain [destination-host]"
var ehloHostname string
c . flag . StringVar ( & ehloHostname , "ehlohostname" , "localhost" , "hostname to send in smtp ehlo command" )
c . help = ` Connect to MX server for domain using STARTTLS verified with DANE .
If no destination host is specified , regular delivery logic is used to find the
hosts to attempt delivery too . This involves following CNAMEs for the domain ,
looking up MX records , and possibly falling back to the domain name itself as
host .
If a destination host is specified , that is the only candidate host considered
for dialing .
With a list of destinations gathered , each is dialed until a successful SMTP
session verified with DANE has been initialized , including EHLO and STARTTLS
commands .
Once connected , data is copied between connection and stdin / stdout , until
either side closes the connection .
This command follows the same logic as delivery attempts made from the queue ,
sharing most of its code .
`
args := c . Parse ( )
if len ( args ) != 1 && len ( args ) != 2 {
c . Usage ( )
}
ehloDomain , err := dns . ParseDomain ( ehloHostname )
xcheckf ( err , "parsing ehlo hostname" )
origNextHop , err := dns . ParseDomain ( args [ 0 ] )
xcheckf ( err , "parse domain" )
ctxbg := context . Background ( )
resolver := dns . StrictResolver { }
var haveMX bool
var origNextHopAuthentic , expandedNextHopAuthentic bool
var expandedNextHop dns . Domain
var hosts [ ] dns . IPDomain
if len ( args ) == 1 {
var permanent bool
2023-12-05 15:35:58 +03:00
haveMX , origNextHopAuthentic , expandedNextHopAuthentic , expandedNextHop , hosts , permanent , err = smtpclient . GatherDestinations ( ctxbg , c . log . Logger , resolver , dns . IPDomain { Domain : origNextHop } )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
status := "temporary"
if permanent {
status = "permanent"
}
if err != nil {
log . Fatalf ( "gathering destinations: %v (%s)" , err , status )
}
if expandedNextHop != origNextHop {
log . Printf ( "followed cnames to %s" , expandedNextHop )
}
if haveMX {
log . Printf ( "found mx record, trying mx hosts" )
} else {
log . Printf ( "no mx record found, will try to connect to domain directly" )
}
if ! origNextHopAuthentic {
log . Fatalf ( "error: initial domain not dnssec-secure" )
}
if ! expandedNextHopAuthentic {
log . Fatalf ( "error: expanded domain not dnssec-secure" )
}
l := [ ] string { }
for _ , h := range hosts {
l = append ( l , h . String ( ) )
}
log . Printf ( "destinations: %s" , strings . Join ( l , ", " ) )
} else {
d , err := dns . ParseDomain ( args [ 1 ] )
if err != nil {
log . Fatalf ( "parsing destination host: %v" , err )
}
log . Printf ( "skipping domain mx/cname lookups, assuming domain is dnssec-protected" )
origNextHopAuthentic = true
expandedNextHopAuthentic = true
expandedNextHop = d
hosts = [ ] dns . IPDomain { { Domain : d } }
}
dialedIPs := map [ string ] [ ] net . IP { }
for _ , host := range hosts {
// It should not be possible for hosts to have IP addresses: They are not
// allowed by dns.ParseDomain, and MX records cannot contain them.
if host . IsIP ( ) {
log . Fatalf ( "unexpected IP address for destination host" )
}
log . Printf ( "attempting to connect to %s" , host )
2023-12-05 15:35:58 +03:00
authentic , expandedAuthentic , expandedHost , ips , _ , err := smtpclient . GatherIPs ( ctxbg , c . log . Logger , resolver , host , dialedIPs )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
if err != nil {
log . Printf ( "resolving ips for %s: %v, skipping" , host , err )
continue
}
if ! authentic {
log . Printf ( "no dnssec for ips of %s, skipping" , host )
continue
}
if ! expandedAuthentic {
log . Printf ( "no dnssec for cname-followed ips of %s, skipping" , host )
continue
}
if expandedHost != host . Domain {
log . Printf ( "host %s cname-expanded to %s" , host , expandedHost )
}
log . Printf ( "host %s resolved to ips %s, looking up tlsa records" , host , ips )
2023-12-05 15:35:58 +03:00
daneRequired , daneRecords , tlsaBaseDomain , err := smtpclient . GatherTLSA ( ctxbg , c . log . Logger , resolver , host . Domain , expandedAuthentic , expandedHost )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
if err != nil {
log . Printf ( "looking up tlsa records: %s, skipping" , err )
continue
}
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
tlsMode := smtpclient . TLSRequiredStartTLS
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
if len ( daneRecords ) == 0 {
if ! daneRequired {
log . Printf ( "host %s has no tlsa records, skipping" , expandedHost )
continue
}
log . Printf ( "warning: only unusable tlsa records found, continuing with required tls without certificate verification" )
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
daneRecords = nil
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
} else {
var l [ ] string
for _ , r := range daneRecords {
l = append ( l , r . String ( ) )
}
log . Printf ( "tlsa records: %s" , strings . Join ( l , "; " ) )
}
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
tlsHostnames := smtpclient . GatherTLSANames ( haveMX , expandedNextHopAuthentic , expandedAuthentic , origNextHop , expandedNextHop , host . Domain , tlsaBaseDomain )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
var l [ ] string
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
for _ , name := range tlsHostnames {
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
l = append ( l , name . String ( ) )
}
log . Printf ( "gathered valid tls certificate names for potential verification with dane-ta: %s" , strings . Join ( l , ", " ) )
dialer := & net . Dialer { Timeout : 5 * time . Second }
2023-12-05 23:13:57 +03:00
conn , _ , err := smtpclient . Dial ( ctxbg , c . log . Logger , dialer , dns . IPDomain { Domain : expandedHost } , ips , 25 , dialedIPs , nil )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
if err != nil {
log . Printf ( "dial %s: %v, skipping" , expandedHost , err )
continue
}
log . Printf ( "connected to %s, %s, starting smtp session with ehlo and starttls with dane verification" , expandedHost , conn . RemoteAddr ( ) )
var verifiedRecord adns . TLSA
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
opts := smtpclient . Opts {
DANERecords : daneRecords ,
DANEMoreHostnames : tlsHostnames [ 1 : ] ,
DANEVerifiedRecord : & verifiedRecord ,
RootCAs : mox . Conf . Static . TLS . CertPool ,
}
tlsPKIX := false
2023-12-05 15:35:58 +03:00
sc , err := smtpclient . New ( ctxbg , c . log . Logger , conn , tlsMode , tlsPKIX , ehloDomain , tlsHostnames [ 0 ] , opts )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
if err != nil {
log . Printf ( "setting up smtp session: %v, skipping" , err )
conn . Close ( )
continue
}
smtpConn , err := sc . Conn ( )
if err != nil {
log . Fatalf ( "error: taking over smtp connection: %s" , err )
}
log . Printf ( "tls verified with tlsa record: %s" , verifiedRecord )
log . Printf ( "smtp session initialized and connected to stdin/stdout" )
go func ( ) {
_ , err := io . Copy ( os . Stdout , smtpConn )
xcheckf ( err , "copy from connection to stdout" )
smtpConn . Close ( )
} ( )
_ , err = io . Copy ( smtpConn , os . Stdin )
xcheckf ( err , "copy from stdin to connection" )
}
log . Fatalf ( "no remaining destinations" )
}
func cmdDANEMakeRecord ( c * cmd ) {
c . params = "usage selector matchtype [certificate.pem | publickey.pem | privatekey.pem]"
c . help = ` Print TLSA record for given certificate / key and parameters .
Valid values :
- usage : pkix - ta ( 0 ) , pkix - ee ( 1 ) , dane - ta ( 2 ) , dane - ee ( 3 )
- selector : cert ( 0 ) , spki ( 1 )
- matchtype : full ( 0 ) , sha2 - 256 ( 1 ) , sha2 - 512 ( 2 )
Common DANE TLSA record parameters are : dane - ee spki sha2 - 256 , or 3 1 1 ,
followed by a sha2 - 256 hash of the DER - encoded "SPKI" ( subject public key info )
from the certificate . An example DNS zone file entry :
2023-10-13 09:16:46 +03:00
_25 . _tcp . example . com . TLSA 3 1 1 133 b919c9d65d8b1488157315327334ead8d83372db57465ecabf53ee5748aee
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
The first usable information from the pem file is used to compose the TLSA
record . In case of selector "cert" , a certificate is required . Otherwise the
"subject public key info" ( spki ) of the first certificate or public or private
key ( pkcs # 8 , pkcs # 1 or ec private key ) is used .
`
args := c . Parse ( )
if len ( args ) != 4 {
c . Usage ( )
}
var usage adns . TLSAUsage
switch strings . ToLower ( args [ 0 ] ) {
case "pkix-ta" , strconv . Itoa ( int ( adns . TLSAUsagePKIXTA ) ) :
usage = adns . TLSAUsagePKIXTA
case "pkix-ee" , strconv . Itoa ( int ( adns . TLSAUsagePKIXEE ) ) :
usage = adns . TLSAUsagePKIXEE
case "dane-ta" , strconv . Itoa ( int ( adns . TLSAUsageDANETA ) ) :
usage = adns . TLSAUsageDANETA
case "dane-ee" , strconv . Itoa ( int ( adns . TLSAUsageDANEEE ) ) :
usage = adns . TLSAUsageDANEEE
default :
if v , err := strconv . ParseUint ( args [ 0 ] , 10 , 16 ) ; err != nil {
log . Fatalf ( "bad usage %q" , args [ 0 ] )
} else {
// Does not influence certificate association data, so we can accept other numbers.
log . Printf ( "warning: continuing with unrecognized tlsa usage %d" , v )
usage = adns . TLSAUsage ( v )
}
}
var selector adns . TLSASelector
switch strings . ToLower ( args [ 1 ] ) {
case "cert" , strconv . Itoa ( int ( adns . TLSASelectorCert ) ) :
selector = adns . TLSASelectorCert
case "spki" , strconv . Itoa ( int ( adns . TLSASelectorSPKI ) ) :
selector = adns . TLSASelectorSPKI
default :
log . Fatalf ( "bad selector %q" , args [ 1 ] )
}
var matchType adns . TLSAMatchType
switch strings . ToLower ( args [ 2 ] ) {
case "full" , strconv . Itoa ( int ( adns . TLSAMatchTypeFull ) ) :
matchType = adns . TLSAMatchTypeFull
case "sha2-256" , strconv . Itoa ( int ( adns . TLSAMatchTypeSHA256 ) ) :
matchType = adns . TLSAMatchTypeSHA256
case "sha2-512" , strconv . Itoa ( int ( adns . TLSAMatchTypeSHA512 ) ) :
matchType = adns . TLSAMatchTypeSHA512
default :
log . Fatalf ( "bad matchtype %q" , args [ 2 ] )
}
buf , err := os . ReadFile ( args [ 3 ] )
xcheckf ( err , "reading certificate" )
for {
var block * pem . Block
block , buf = pem . Decode ( buf )
if block == nil {
extra := ""
if len ( buf ) > 0 {
extra = " (with leftover data from pem file)"
}
if selector == adns . TLSASelectorCert {
log . Fatalf ( "no certificate found in pem file%s" , extra )
} else {
log . Fatalf ( "no certificate or public or private key found in pem file%s" , extra )
}
}
var cert * x509 . Certificate
var data [ ] byte
if block . Type == "CERTIFICATE" {
cert , err = x509 . ParseCertificate ( block . Bytes )
xcheckf ( err , "parse certificate" )
switch selector {
case adns . TLSASelectorCert :
data = cert . Raw
case adns . TLSASelectorSPKI :
data = cert . RawSubjectPublicKeyInfo
}
} else if selector == adns . TLSASelectorCert {
// We need a certificate, just a public/private key won't do.
log . Printf ( "skipping pem type %q, certificate is required" , block . Type )
continue
} else {
var privKey , pubKey any
var err error
switch block . Type {
case "PUBLIC KEY" :
_ , err := x509 . ParsePKIXPublicKey ( block . Bytes )
xcheckf ( err , "parse pkix subject public key info (spki)" )
data = block . Bytes
case "EC PRIVATE KEY" :
privKey , err = x509 . ParseECPrivateKey ( block . Bytes )
xcheckf ( err , "parse ec private key" )
case "RSA PRIVATE KEY" :
privKey , err = x509 . ParsePKCS1PrivateKey ( block . Bytes )
xcheckf ( err , "parse pkcs#1 rsa private key" )
case "RSA PUBLIC KEY" :
pubKey , err = x509 . ParsePKCS1PublicKey ( block . Bytes )
xcheckf ( err , "parse pkcs#1 rsa public key" )
case "PRIVATE KEY" :
// PKCS#8 private key
privKey , err = x509 . ParsePKCS8PrivateKey ( block . Bytes )
xcheckf ( err , "parse pkcs#8 private key" )
default :
log . Printf ( "skipping unrecognized pem type %q" , block . Type )
continue
}
if data == nil {
if pubKey == nil && privKey != nil {
if signer , ok := privKey . ( crypto . Signer ) ; ! ok {
log . Fatalf ( "private key of type %T is not a signer, cannot get public key" , privKey )
} else {
pubKey = signer . Public ( )
}
}
if pubKey == nil {
// Should not happen.
log . Fatalf ( "internal error: did not find private or public key" )
}
data , err = x509 . MarshalPKIXPublicKey ( pubKey )
xcheckf ( err , "marshal pkix subject public key info (spki)" )
}
}
switch matchType {
case adns . TLSAMatchTypeFull :
case adns . TLSAMatchTypeSHA256 :
p := sha256 . Sum256 ( data )
data = p [ : ]
case adns . TLSAMatchTypeSHA512 :
p := sha512 . Sum512 ( data )
data = p [ : ]
}
fmt . Printf ( "%d %d %d %x\n" , usage , selector , matchType , data )
break
}
}
func cmdDNSLookup ( c * cmd ) {
c . params = "[ptr | mx | cname | ips | a | aaaa | ns | txt | srv | tlsa] name"
c . help = ` Lookup DNS name of given type .
Lookup always prints whether the response was DNSSEC - protected .
Examples :
mox dns lookup ptr 1.1 .1 .1
mox dns lookup mx xmox . nl
mox dns lookup txt _dmarc . xmox . nl .
mox dns lookup tlsa _25 . _tcp . xmox . nl
`
args := c . Parse ( )
if len ( args ) != 2 {
c . Usage ( )
}
resolver := dns . StrictResolver { Pkg : "dns" }
// like xparseDomain, but treat unparseable domain as an ASCII name so names with
// underscores are still looked up, e,g <selector>._domainkey.<host>.
xdomain := func ( s string ) dns . Domain {
d , err := dns . ParseDomain ( s )
if err != nil {
return dns . Domain { ASCII : strings . TrimSuffix ( s , "." ) }
}
return d
}
cmd , name := args [ 0 ] , args [ 1 ]
switch cmd {
case "ptr" :
ip := xparseIP ( name , "ip" )
ptrs , result , err := resolver . LookupAddr ( context . Background ( ) , ip . String ( ) )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "names (%d, %s):\n" , len ( ptrs ) , dnssecStatus ( result . Authentic ) )
for _ , ptr := range ptrs {
fmt . Printf ( "- %s\n" , ptr )
}
case "mx" :
name := xdomain ( name )
mxl , result , err := resolver . LookupMX ( context . Background ( ) , name . ASCII + "." )
if err != nil {
log . Printf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
// We can still have valid records...
}
fmt . Printf ( "mx records (%d, %s):\n" , len ( mxl ) , dnssecStatus ( result . Authentic ) )
for _ , mx := range mxl {
fmt . Printf ( "- %s, preference %d\n" , mx . Host , mx . Pref )
}
case "cname" :
name := xdomain ( name )
target , result , err := resolver . LookupCNAME ( context . Background ( ) , name . ASCII + "." )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "%s (%s)\n" , target , dnssecStatus ( result . Authentic ) )
case "ips" , "a" , "aaaa" :
network := "ip"
if cmd == "a" {
network = "ip4"
} else if cmd == "aaaa" {
network = "ip6"
}
name := xdomain ( name )
ips , result , err := resolver . LookupIP ( context . Background ( ) , network , name . ASCII + "." )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "records (%d, %s):\n" , len ( ips ) , dnssecStatus ( result . Authentic ) )
for _ , ip := range ips {
fmt . Printf ( "- %s\n" , ip )
}
case "ns" :
name := xdomain ( name )
nsl , result , err := resolver . LookupNS ( context . Background ( ) , name . ASCII + "." )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "ns records (%d, %s):\n" , len ( nsl ) , dnssecStatus ( result . Authentic ) )
for _ , ns := range nsl {
fmt . Printf ( "- %s\n" , ns )
}
case "txt" :
host := xdomain ( name )
l , result , err := resolver . LookupTXT ( context . Background ( ) , host . ASCII + "." )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "txt records (%d, %s):\n" , len ( l ) , dnssecStatus ( result . Authentic ) )
for _ , txt := range l {
fmt . Printf ( "- %s\n" , txt )
}
case "srv" :
host := xdomain ( name )
_ , l , result , err := resolver . LookupSRV ( context . Background ( ) , "" , "" , host . ASCII + "." )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "srv records (%d, %s):\n" , len ( l ) , dnssecStatus ( result . Authentic ) )
for _ , srv := range l {
fmt . Printf ( "- host %s, port %d, priority %d, weight %d\n" , srv . Target , srv . Port , srv . Priority , srv . Weight )
}
case "tlsa" :
host := xdomain ( name )
l , result , err := resolver . LookupTLSA ( context . Background ( ) , 0 , "" , host . ASCII + "." )
if err != nil {
log . Fatalf ( "dns lookup: %v (%s)" , err , dnssecStatus ( result . Authentic ) )
}
fmt . Printf ( "tlsa records (%d, %s):\n" , len ( l ) , dnssecStatus ( result . Authentic ) )
for _ , tlsa := range l {
fmt . Printf ( "- usage %q (%d), selector %q (%d), matchtype %q (%d), certificate association data %x\n" , tlsa . Usage , tlsa . Usage , tlsa . Selector , tlsa . Selector , tlsa . MatchType , tlsa . MatchType , tlsa . CertAssoc )
}
default :
log . Fatalf ( "unknown record type %q" , args [ 0 ] )
}
}
2023-01-30 16:27:06 +03:00
func cmdDKIMGened25519 ( c * cmd ) {
2023-10-13 09:59:35 +03:00
c . params = ">$selector._domainkey.$domain.ed25519.privatekey.pkcs8.pem"
2023-01-30 16:27:06 +03:00
c . help = ` Generate a new ed25519 key for use with DKIM .
Ed25519 keys are much smaller than RSA keys of comparable cryptographic
strength . This is convenient because of maximum DNS message sizes . At the time
of writing , not many mail servers appear to support ed25519 DKIM keys though ,
so it is recommended to sign messages with both RSA and ed25519 keys .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
buf , err := mox . MakeDKIMEd25519Key ( dns . Domain { } , dns . Domain { } )
xcheckf ( err , "making dkim ed25519 key" )
_ , err = os . Stdout . Write ( buf )
xcheckf ( err , "writing dkim ed25519 key" )
}
func cmdDKIMTXT ( c * cmd ) {
c . params = "<$selector._domainkey.$domain.key.pkcs8.pem"
c . help = ` Print a DKIM DNS TXT record with the public key derived from the private key read from stdin .
The DNS should be configured as a TXT record at $ selector . _domainkey . $ domain .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
privKey , err := parseDKIMKey ( os . Stdin )
xcheckf ( err , "reading dkim private key from stdin" )
r := dkim . Record {
Version : "DKIM1" ,
Hashes : [ ] string { "sha256" } ,
Flags : [ ] string { "s" } ,
}
switch key := privKey . ( type ) {
case * rsa . PrivateKey :
r . PublicKey = key . Public ( )
case ed25519 . PrivateKey :
r . PublicKey = key . Public ( )
r . Key = "ed25519"
default :
log . Fatalf ( "unsupported private key type %T, must be rsa or ed25519" , privKey )
}
record , err := r . Record ( )
xcheckf ( err , "making record" )
2023-10-13 09:16:46 +03:00
fmt . Print ( "<selector>._domainkey.<your.domain.> TXT " )
2023-01-30 16:27:06 +03:00
for record != "" {
s := record
2023-11-22 16:02:24 +03:00
if len ( s ) > 100 {
s , record = record [ : 100 ] , record [ 100 : ]
2023-01-30 16:27:06 +03:00
} else {
record = ""
}
fmt . Printf ( ` "%s" ` , s )
}
fmt . Println ( "" )
}
func parseDKIMKey ( r io . Reader ) ( any , error ) {
buf , err := io . ReadAll ( r )
if err != nil {
return nil , fmt . Errorf ( "reading pem from stdin: %v" , err )
}
b , _ := pem . Decode ( buf )
if b == nil {
return nil , fmt . Errorf ( "decoding pem: %v" , err )
}
privKey , err := x509 . ParsePKCS8PrivateKey ( b . Bytes )
if err != nil {
return nil , fmt . Errorf ( "parsing private key: %v" , err )
}
return privKey , nil
}
func cmdDKIMVerify ( c * cmd ) {
c . params = "message"
c . help = ` Verify the DKIM signatures in a message and print the results .
The message is parsed , and the DKIM - Signature headers are validated . Validation
of older messages may fail because the DNS records have been removed or changed
by now , or because the signature header may have specified an expiration time
that was passed .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
msgf , err := os . Open ( args [ 0 ] )
xcheckf ( err , "open message" )
2023-12-05 15:35:58 +03:00
results , err := dkim . Verify ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , false , dkim . DefaultPolicy , msgf , true )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "dkim verify" )
for _ , result := range results {
2023-02-03 15:29:47 +03:00
var sigh string
if result . Sig == nil {
log . Printf ( "warning: could not parse signature" )
} else {
sigh , err = result . Sig . Header ( )
if err != nil {
log . Printf ( "warning: packing signature: %s" , err )
}
}
var txt string
if result . Record == nil {
log . Printf ( "warning: missing DNS record" )
} else {
txt , err = result . Record . Record ( )
if err != nil {
log . Printf ( "warning: packing record: %s" , err )
}
2023-01-30 16:27:06 +03:00
}
2023-02-03 15:29:47 +03:00
fmt . Printf ( "status %q, err %v\nrecord %q\nheader %s\n" , result . Status , result . Err , txt , sigh )
2023-01-30 16:27:06 +03:00
}
}
2023-03-07 23:59:55 +03:00
func cmdDKIMSign ( c * cmd ) {
c . params = "message"
c . help = ` Sign a message , adding DKIM - Signature headers based on the domain in the From header .
The message is parsed , the domain looked up in the configuration files , and
DKIM - Signature headers generated . The message is printed with the DKIM - Signature
headers prepended .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
msgf , err := os . Open ( args [ 0 ] )
xcheckf ( err , "open message" )
defer msgf . Close ( )
2023-12-05 15:35:58 +03:00
p , err := message . Parse ( c . log . Logger , true , msgf )
2023-03-07 23:59:55 +03:00
xcheckf ( err , "parsing message" )
if len ( p . Envelope . From ) != 1 {
log . Fatalf ( "found %d from headers, need exactly 1" , len ( p . Envelope . From ) )
}
localpart := smtp . Localpart ( p . Envelope . From [ 0 ] . User )
dom , err := dns . ParseDomain ( p . Envelope . From [ 0 ] . Host )
xcheckf ( err , "parsing domain in from header" )
mustLoadConfig ( )
domConf , ok := mox . Conf . Domain ( dom )
if ! ok {
log . Fatalf ( "domain %s not configured" , dom )
}
2023-12-05 23:13:57 +03:00
selectors := mox . DKIMSelectors ( domConf . DKIM )
headers , err := dkim . Sign ( context . Background ( ) , c . log . Logger , localpart , dom , selectors , false , msgf )
2023-03-07 23:59:55 +03:00
xcheckf ( err , "signing message with dkim" )
if headers == "" {
log . Fatalf ( "no DKIM configured for domain %s" , dom )
}
_ , err = fmt . Fprint ( os . Stdout , headers )
xcheckf ( err , "write headers" )
_ , err = io . Copy ( os . Stdout , msgf )
xcheckf ( err , "write message" )
}
2023-01-30 16:27:06 +03:00
func cmdDKIMLookup ( c * cmd ) {
c . params = "selector domain"
c . help = "Lookup and print the DKIM record for the selector at the domain."
args := c . Parse ( )
if len ( args ) != 2 {
c . Usage ( )
}
selector := xparseDomain ( args [ 0 ] , "selector" )
domain := xparseDomain ( args [ 1 ] , "domain" )
2023-12-05 15:35:58 +03:00
status , record , txt , authentic , err := dkim . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , selector , domain )
2023-01-30 16:27:06 +03:00
if err != nil {
fmt . Printf ( "error: %s\n" , err )
}
if status != dkim . StatusNeutral {
fmt . Printf ( "status: %s\n" , status )
}
if txt != "" {
fmt . Printf ( "TXT record: %s\n" , txt )
}
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
if authentic {
fmt . Println ( "dnssec-signed: yes" )
} else {
fmt . Println ( "dnssec-signed: no" )
}
2023-01-30 16:27:06 +03:00
if record != nil {
fmt . Printf ( "Record:\n" )
pairs := [ ] any {
"version" , record . Version ,
"hashes" , record . Hashes ,
"key" , record . Key ,
"notes" , record . Notes ,
"services" , record . Services ,
"flags" , record . Flags ,
}
for i := 0 ; i < len ( pairs ) ; i += 2 {
fmt . Printf ( "\t%s: %v\n" , pairs [ i ] , pairs [ i + 1 ] )
}
}
}
func cmdDMARCLookup ( c * cmd ) {
c . params = "domain"
c . help = "Lookup dmarc policy for domain, a DNS TXT record at _dmarc.<domain>, validate and print it."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
fromdomain := xparseDomain ( args [ 0 ] , "domain" )
2023-12-05 15:35:58 +03:00
_ , domain , _ , txt , authentic , err := dmarc . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , fromdomain )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "dmarc lookup domain %s" , fromdomain )
fmt . Printf ( "dmarc record at domain %s: %s\n" , domain , txt )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
fmt . Printf ( "(%s)\n" , dnssecStatus ( authentic ) )
}
func dnssecStatus ( v bool ) string {
if v {
return "with dnssec"
}
return "without dnssec"
2023-01-30 16:27:06 +03:00
}
func cmdDMARCVerify ( c * cmd ) {
c . params = "remoteip mailfromaddress helodomain < message"
c . help = ` Parse an email message and evaluate it against the DMARC policy of the domain in the From - header .
mailfromaddress and helodomain are used for SPF validation . If both are empty ,
SPF validation is skipped .
mailfromaddress should be the address used as MAIL FROM in the SMTP session .
For DSN messages , that address may be empty . The helo domain was specified at
the beginning of the SMTP transaction that delivered the message . These values
can be found in message headers .
`
args := c . Parse ( )
if len ( args ) != 3 {
c . Usage ( )
}
var heloDomain * dns . Domain
remoteIP := xparseIP ( args [ 0 ] , "remoteip" )
var mailfrom * smtp . Address
if args [ 1 ] != "" {
a , err := smtp . ParseAddress ( args [ 1 ] )
xcheckf ( err , "parsing mailfrom address" )
mailfrom = & a
}
if args [ 2 ] != "" {
d := xparseDomain ( args [ 2 ] , "helo domain" )
heloDomain = & d
}
var received * spf . Received
spfStatus := spf . StatusNone
var spfIdentity * dns . Domain
if mailfrom != nil || heloDomain != nil {
spfArgs := spf . Args {
RemoteIP : remoteIP ,
LocalIP : net . ParseIP ( "127.0.0.1" ) ,
LocalHostname : dns . Domain { ASCII : "localhost" } ,
}
if mailfrom != nil {
spfArgs . MailFromLocalpart = mailfrom . Localpart
spfArgs . MailFromDomain = mailfrom . Domain
}
if heloDomain != nil {
spfArgs . HelloDomain = dns . IPDomain { Domain : * heloDomain }
}
2023-12-05 15:35:58 +03:00
rspf , spfDomain , expl , authentic , err := spf . Verify ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , spfArgs )
2023-01-30 16:27:06 +03:00
if err != nil {
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
log . Printf ( "spf verify: %v (explanation: %q, authentic %v)" , err , expl , authentic )
2023-01-30 16:27:06 +03:00
} else {
received = & rspf
spfStatus = received . Result
// todo: should probably potentially do two separate spf validations
if mailfrom != nil {
spfIdentity = & mailfrom . Domain
} else {
spfIdentity = heloDomain
}
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
fmt . Printf ( "spf result: %s: %s (%s)\n" , spfDomain , spfStatus , dnssecStatus ( authentic ) )
2023-01-30 16:27:06 +03:00
}
}
data , err := io . ReadAll ( os . Stdin )
xcheckf ( err , "read message" )
2023-12-05 15:35:58 +03:00
dmarcFrom , _ , _ , err := message . From ( c . log . Logger , false , bytes . NewReader ( data ) )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "extract dmarc from message" )
const ignoreTestMode = false
2023-12-05 15:35:58 +03:00
dkimResults , err := dkim . Verify ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , true , func ( * dkim . Sig ) error { return nil } , bytes . NewReader ( data ) , ignoreTestMode )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "dkim verify" )
for _ , r := range dkimResults {
fmt . Printf ( "dkim result: %q (err %v)\n" , r . Status , r . Err )
}
2023-12-05 15:35:58 +03:00
_ , result := dmarc . Verify ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , dmarcFrom . Domain , dkimResults , spfStatus , spfIdentity , false )
2023-01-30 16:27:06 +03:00
xcheckf ( result . Err , "dmarc verify" )
fmt . Printf ( "dmarc from: %s\ndmarc status: %q\ndmarc reject: %v\ncmarc record: %s\n" , dmarcFrom , result . Status , result . Reject , result . Record )
}
2023-08-23 15:27:21 +03:00
func cmdDMARCCheckreportaddrs ( c * cmd ) {
c . params = "domain"
c . help = ` For each reporting address in the domain ' s DMARC record , check if it has opted into receiving reports ( if needed ) .
A DMARC record can request reports about DMARC evaluations to be sent to an
email / http address . If the organizational domains of that of the DMARC record
and that of the report destination address do not match , the destination
address must opt - in to receiving DMARC reports by creating a DMARC record at
< dmarcdomain > . _report . _dmarc . < reportdestdomain > .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
dom := xparseDomain ( args [ 0 ] , "domain" )
2023-12-05 15:35:58 +03:00
_ , domain , record , txt , authentic , err := dmarc . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , dom )
2023-08-23 15:27:21 +03:00
xcheckf ( err , "dmarc lookup domain %s" , dom )
fmt . Printf ( "dmarc record at domain %s: %q\n" , domain , txt )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
fmt . Printf ( "(%s)\n" , dnssecStatus ( authentic ) )
2023-08-23 15:27:21 +03:00
check := func ( kind , addr string ) {
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
var authentic bool
2023-08-23 15:27:21 +03:00
printResult := func ( format string , args ... any ) {
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
fmt . Printf ( "%s %s: %s (%s)\n" , kind , addr , fmt . Sprintf ( format , args ... ) , dnssecStatus ( authentic ) )
2023-08-23 15:27:21 +03:00
}
u , err := url . Parse ( addr )
if err != nil {
printResult ( "parsing uri: %v (skipping)" , addr , err )
return
}
var destdom dns . Domain
switch u . Scheme {
case "mailto" :
a , err := smtp . ParseAddress ( u . Opaque )
if err != nil {
printResult ( "parsing destination email address %s: %v (skipping)" , u . Opaque , err )
return
}
destdom = a . Domain
default :
printResult ( "unrecognized scheme in reporting address %s (skipping)" , u . Scheme )
return
}
2023-12-05 15:35:58 +03:00
if publicsuffix . Lookup ( context . Background ( ) , c . log . Logger , dom ) == publicsuffix . Lookup ( context . Background ( ) , c . log . Logger , destdom ) {
2023-08-23 15:27:21 +03:00
printResult ( "pass (same organizational domain)" )
return
}
2023-12-05 15:35:58 +03:00
accepts , status , _ , txts , authentic , err := dmarc . LookupExternalReportsAccepted ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , domain , destdom )
2023-08-23 15:27:21 +03:00
var txtstr string
txtaddr := fmt . Sprintf ( "%s._report._dmarc.%s" , domain . ASCII , destdom . ASCII )
2023-11-01 19:55:40 +03:00
if len ( txts ) == 0 {
txtstr = fmt . Sprintf ( " (no txt records %s)" , txtaddr )
2023-08-23 15:27:21 +03:00
} else {
2023-11-01 19:55:40 +03:00
txtstr = fmt . Sprintf ( " (txt record %s: %q)" , txtaddr , txts )
2023-08-23 15:27:21 +03:00
}
if status != dmarc . StatusNone {
printResult ( "fail: %s%s" , err , txtstr )
} else if accepts {
printResult ( "pass%s" , txtstr )
} else if err != nil {
printResult ( "fail: %s%s" , err , txtstr )
} else {
printResult ( "fail%s" , txtstr )
}
}
for _ , uri := range record . AggregateReportAddresses {
check ( "aggregate reporting" , uri . Address )
}
for _ , uri := range record . FailureReportAddresses {
check ( "failure reporting" , uri . Address )
}
}
2023-01-30 16:27:06 +03:00
func cmdDMARCParsereportmsg ( c * cmd ) {
c . params = "message ..."
c . help = ` Parse a DMARC report from an email message , and print its extracted details .
DMARC reports are periodically mailed , if requested in the DMARC DNS record of
a domain . Reports are sent by mail servers that received messages with our
domain in a From header . This may or may not be legatimate email . DMARC reports
contain summaries of evaluations of DMARC and DKIM / SPF , which can help
understand email deliverability problems .
`
args := c . Parse ( )
if len ( args ) == 0 {
c . Usage ( )
}
for _ , arg := range args {
f , err := os . Open ( arg )
xcheckf ( err , "open %q" , arg )
2023-12-05 15:35:58 +03:00
feedback , err := dmarcrpt . ParseMessageReport ( c . log . Logger , f )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "parse report in %q" , arg )
meta := feedback . ReportMetadata
fmt . Printf ( "Report: period %s-%s, organisation %q, reportID %q, %s\n" , time . Unix ( meta . DateRange . Begin , 0 ) . UTC ( ) . String ( ) , time . Unix ( meta . DateRange . End , 0 ) . UTC ( ) . String ( ) , meta . OrgName , meta . ReportID , meta . Email )
if len ( meta . Errors ) > 0 {
fmt . Printf ( "Errors:\n" )
for _ , s := range meta . Errors {
fmt . Printf ( "\t- %s\n" , s )
}
}
pol := feedback . PolicyPublished
fmt . Printf ( "Policy: domain %q, policy %q, subdomainpolicy %q, dkim %q, spf %q, percentage %d, options %q\n" , pol . Domain , pol . Policy , pol . SubdomainPolicy , pol . ADKIM , pol . ASPF , pol . Percentage , pol . ReportingOptions )
for _ , record := range feedback . Records {
idents := record . Identifiers
fmt . Printf ( "\theaderfrom %q, envelopes from %q, to %q\n" , idents . HeaderFrom , idents . EnvelopeFrom , idents . EnvelopeTo )
eval := record . Row . PolicyEvaluated
var reasons string
for _ , reason := range eval . Reasons {
reasons += "; " + string ( reason . Type )
if reason . Comment != "" {
reasons += fmt . Sprintf ( ": %q" , reason . Comment )
}
}
fmt . Printf ( "\tresult %s: dkim %s, spf %s; sourceIP %s, count %d%s\n" , eval . Disposition , eval . DKIM , eval . SPF , record . Row . SourceIP , record . Row . Count , reasons )
for _ , dkim := range record . AuthResults . DKIM {
var result string
if dkim . HumanResult != "" {
result = fmt . Sprintf ( ": %q" , dkim . HumanResult )
}
fmt . Printf ( "\t\tdkim %s; domain %q selector %q%s\n" , dkim . Result , dkim . Domain , dkim . Selector , result )
}
for _ , spf := range record . AuthResults . SPF {
fmt . Printf ( "\t\tspf %s; domain %q scope %q\n" , spf . Result , spf . Domain , spf . Scope )
}
}
}
}
func cmdDMARCDBAddReport ( c * cmd ) {
c . unlisted = true
c . params = "fromdomain < message"
c . help = "Add a DMARC report to the database."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
fromdomain := xparseDomain ( args [ 0 ] , "domain" )
fmt . Fprintln ( os . Stderr , "reading report message from stdin" )
2023-12-05 15:35:58 +03:00
report , err := dmarcrpt . ParseMessageReport ( c . log . Logger , os . Stdin )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "parse message" )
err = dmarcdb . AddReport ( context . Background ( ) , report , fromdomain )
xcheckf ( err , "add dmarc report" )
}
func cmdTLSRPTLookup ( c * cmd ) {
c . params = "domain"
c . help = ` Lookup the TLSRPT record for the domain .
A TLSRPT record typically contains an email address where reports about TLS
connectivity should be sent . Mail servers attempting delivery to our domain
should attempt to use TLS . TLSRPT lets them report how many connection
successfully used TLS , and how what kind of errors occurred otherwise .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
d := xparseDomain ( args [ 0 ] , "domain" )
2023-12-05 15:35:58 +03:00
_ , txt , err := tlsrpt . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , d )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "tlsrpt lookup for %s" , d )
fmt . Println ( txt )
}
func cmdTLSRPTParsereportmsg ( c * cmd ) {
c . params = "message ..."
c . help = ` Parse and print the TLSRPT in the message .
The report is printed in formatted JSON .
`
args := c . Parse ( )
if len ( args ) == 0 {
c . Usage ( )
}
for _ , arg := range args {
f , err := os . Open ( arg )
xcheckf ( err , "open %q" , arg )
2023-12-31 13:55:22 +03:00
reportJSON , err := tlsrpt . ParseMessage ( c . log . Logger , f )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "parse report in %q" , arg )
// todo future: only print the highlights?
enc := json . NewEncoder ( os . Stdout )
enc . SetIndent ( "" , "\t" )
2023-12-31 13:55:22 +03:00
err = enc . Encode ( reportJSON )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "write report" )
}
}
func cmdSPFCheck ( c * cmd ) {
c . params = "domain ip"
c . help = ` Check the status of IP for the policy published in DNS for the domain .
IPs may be allowed to send for a domain , or disallowed , and several shades in
between . If not allowed , an explanation may be provided by the policy . If so ,
the explanation is printed . The SPF mechanism that matched ( if any ) is also
printed .
`
args := c . Parse ( )
if len ( args ) != 2 {
c . Usage ( )
}
domain := xparseDomain ( args [ 0 ] , "domain" )
ip := xparseIP ( args [ 1 ] , "ip" )
spfargs := spf . Args {
RemoteIP : ip ,
MailFromLocalpart : "user" ,
MailFromDomain : domain ,
HelloDomain : dns . IPDomain { Domain : domain } ,
LocalIP : net . ParseIP ( "127.0.0.1" ) ,
LocalHostname : dns . Domain { ASCII : "localhost" } ,
}
2023-12-05 15:35:58 +03:00
r , _ , explanation , authentic , err := spf . Verify ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , spfargs )
2023-01-30 16:27:06 +03:00
if err != nil {
fmt . Printf ( "error: %s\n" , err )
}
if explanation != "" {
fmt . Printf ( "explanation: %s\n" , explanation )
}
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
fmt . Printf ( "status: %s (%s)\n" , r . Result , dnssecStatus ( authentic ) )
2023-01-30 16:27:06 +03:00
if r . Mechanism != "" {
fmt . Printf ( "mechanism: %s\n" , r . Mechanism )
}
}
func cmdSPFParse ( c * cmd ) {
c . params = "txtrecord"
c . help = "Parse the record as SPF record. If valid, nothing is printed."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
_ , _ , err := spf . ParseRecord ( args [ 0 ] )
xcheckf ( err , "parsing record" )
}
func cmdSPFLookup ( c * cmd ) {
c . params = "domain"
c . help = "Lookup the SPF record for the domain and print it."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
domain := xparseDomain ( args [ 0 ] , "domain" )
2023-12-05 15:35:58 +03:00
_ , txt , _ , authentic , err := spf . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , domain )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "spf lookup for %s" , domain )
fmt . Println ( txt )
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
fmt . Printf ( "(%s)\n" , dnssecStatus ( authentic ) )
2023-01-30 16:27:06 +03:00
}
func cmdMTASTSLookup ( c * cmd ) {
c . params = "domain"
c . help = ` Lookup the MTASTS record and policy for the domain .
MTA - STS is a mechanism for a domain to specify if it requires TLS connections
for delivering email . If a domain has a valid MTA - STS DNS TXT record at
_mta - sts . < domain > it signals it implements MTA - STS . A policy can then be
fetched at https : //mta-sts.<domain>/.well-known/mta-sts.txt. The policy
specifies the mode ( enforce , testing , none ) , which MX servers support TLS and
should be used , and how long the policy can be cached .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
domain := xparseDomain ( args [ 0 ] , "domain" )
2023-12-05 15:35:58 +03:00
record , policy , _ , err := mtasts . Get ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , domain )
2023-01-30 16:27:06 +03:00
if err != nil {
fmt . Printf ( "error: %s\n" , err )
}
if record != nil {
fmt . Printf ( "DNS TXT record _mta-sts.%s: %s\n" , domain . ASCII , record . String ( ) )
}
if policy != nil {
fmt . Println ( "" )
fmt . Printf ( "policy at https://mta-sts.%s/.well-known/mta-sts.txt:\n" , domain . ASCII )
fmt . Printf ( "%s" , policy . String ( ) )
}
}
improve training of junk filter
before, we used heuristics to decide when to train/untrain a message as junk or
nonjunk: the message had to be seen, be in certain mailboxes. then if a message
was marked as junk, it was junk. and otherwise it was nonjunk. this wasn't good
enough: you may want to keep some messages around as neither junk or nonjunk.
and that wasn't possible.
ideally, we would just look at the imap $Junk and $NotJunk flags. the problem
is that mail clients don't set these flags, or don't make it easy. thunderbird
can set the flags based on its own bayesian filter. it has a shortcut for
marking Junk and moving it to the junk folder (good), but the counterpart of
notjunk only marks a message as notjunk without showing in the UI that it was
marked as notjunk. there is also no "move and mark as notjunk" mechanism. e.g.
"archive" does not mark a message as notjunk. ios mail and mutt don't appear to
have any way to see or change the $Junk and $NotJunk flags.
what email clients do have is the ability to move messages to other
mailboxes/folders. so mox now has a mechanism that allows you to configure
mailboxes that automatically set $Junk or $NotJunk (or clear both) when a
message is moved/copied/delivered to that folder. e.g. a mailbox called junk or
spam or rejects marks its messags as junk. inbox, postmaster, dmarc, tlsrpt,
neutral* mark their messages as neither junk or notjunk. other folders mark
their messages as notjunk. e.g. list/*, archive. this functionality is
optional, but enabled with the quickstart and for new accounts.
also, mox now keeps track of the previous training of a message and will only
untrain/train if needed. before, there probably have been duplicate or missing
(un)trainings.
this also includes a new subcommand "retrain" to recreate the junkfilter for an
account. you should run it after updating to this version. and you should
probably also modify your account config to include the AutomaticJunkFlags.
2023-02-12 01:00:12 +03:00
func cmdRetrain ( c * cmd ) {
c . params = "accountname"
c . help = ` Recreate and retrain the junk filter for the account .
Useful after having made changes to the junk filter configuration , or if the
implementation has changed .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
mustLoadConfig ( )
2023-07-02 14:53:34 +03:00
ctlcmdRetrain ( xctl ( ) , args [ 0 ] )
}
func ctlcmdRetrain ( ctl * ctl , account string ) {
improve training of junk filter
before, we used heuristics to decide when to train/untrain a message as junk or
nonjunk: the message had to be seen, be in certain mailboxes. then if a message
was marked as junk, it was junk. and otherwise it was nonjunk. this wasn't good
enough: you may want to keep some messages around as neither junk or nonjunk.
and that wasn't possible.
ideally, we would just look at the imap $Junk and $NotJunk flags. the problem
is that mail clients don't set these flags, or don't make it easy. thunderbird
can set the flags based on its own bayesian filter. it has a shortcut for
marking Junk and moving it to the junk folder (good), but the counterpart of
notjunk only marks a message as notjunk without showing in the UI that it was
marked as notjunk. there is also no "move and mark as notjunk" mechanism. e.g.
"archive" does not mark a message as notjunk. ios mail and mutt don't appear to
have any way to see or change the $Junk and $NotJunk flags.
what email clients do have is the ability to move messages to other
mailboxes/folders. so mox now has a mechanism that allows you to configure
mailboxes that automatically set $Junk or $NotJunk (or clear both) when a
message is moved/copied/delivered to that folder. e.g. a mailbox called junk or
spam or rejects marks its messags as junk. inbox, postmaster, dmarc, tlsrpt,
neutral* mark their messages as neither junk or notjunk. other folders mark
their messages as notjunk. e.g. list/*, archive. this functionality is
optional, but enabled with the quickstart and for new accounts.
also, mox now keeps track of the previous training of a message and will only
untrain/train if needed. before, there probably have been duplicate or missing
(un)trainings.
this also includes a new subcommand "retrain" to recreate the junkfilter for an
account. you should run it after updating to this version. and you should
probably also modify your account config to include the AutomaticJunkFlags.
2023-02-12 01:00:12 +03:00
ctl . xwrite ( "retrain" )
2023-07-02 14:53:34 +03:00
ctl . xwrite ( account )
improve training of junk filter
before, we used heuristics to decide when to train/untrain a message as junk or
nonjunk: the message had to be seen, be in certain mailboxes. then if a message
was marked as junk, it was junk. and otherwise it was nonjunk. this wasn't good
enough: you may want to keep some messages around as neither junk or nonjunk.
and that wasn't possible.
ideally, we would just look at the imap $Junk and $NotJunk flags. the problem
is that mail clients don't set these flags, or don't make it easy. thunderbird
can set the flags based on its own bayesian filter. it has a shortcut for
marking Junk and moving it to the junk folder (good), but the counterpart of
notjunk only marks a message as notjunk without showing in the UI that it was
marked as notjunk. there is also no "move and mark as notjunk" mechanism. e.g.
"archive" does not mark a message as notjunk. ios mail and mutt don't appear to
have any way to see or change the $Junk and $NotJunk flags.
what email clients do have is the ability to move messages to other
mailboxes/folders. so mox now has a mechanism that allows you to configure
mailboxes that automatically set $Junk or $NotJunk (or clear both) when a
message is moved/copied/delivered to that folder. e.g. a mailbox called junk or
spam or rejects marks its messags as junk. inbox, postmaster, dmarc, tlsrpt,
neutral* mark their messages as neither junk or notjunk. other folders mark
their messages as notjunk. e.g. list/*, archive. this functionality is
optional, but enabled with the quickstart and for new accounts.
also, mox now keeps track of the previous training of a message and will only
untrain/train if needed. before, there probably have been duplicate or missing
(un)trainings.
this also includes a new subcommand "retrain" to recreate the junkfilter for an
account. you should run it after updating to this version. and you should
probably also modify your account config to include the AutomaticJunkFlags.
2023-02-12 01:00:12 +03:00
ctl . xreadok ( )
}
2023-01-30 16:27:06 +03:00
func cmdTLSRPTDBAddReport ( c * cmd ) {
c . unlisted = true
c . params = "< message"
c . help = "Parse a TLS report from the message and add it to the database."
implement outgoing tls reports
we were already accepting, processing and displaying incoming tls reports. now
we start tracking TLS connection and security-policy-related errors for
outgoing message deliveries as well. we send reports once a day, to the
reporting addresses specified in TLSRPT records (rua) of a policy domain. these
reports are about MTA-STS policies and/or DANE policies, and about
STARTTLS-related failures.
sending reports is enabled by default, but can be disabled through setting
NoOutgoingTLSReports in mox.conf.
only at the end of the implementation process came the realization that the
TLSRPT policy domain for DANE (MX) hosts are separate from the TLSRPT policy
for the recipient domain, and that MTA-STS and DANE TLS/policy results are
typically delivered in separate reports. so MX hosts need their own TLSRPT
policies.
config for the per-host TLSRPT policy should be added to mox.conf for existing
installs, in field HostTLSRPT. it is automatically configured by quickstart for
new installs. with a HostTLSRPT config, the "dns records" and "dns check" admin
pages now suggest the per-host TLSRPT record. by creating that record, you're
requesting TLS reports about your MX host.
gathering all the TLS/policy results is somewhat tricky. the tentacles go
throughout the code. the positive result is that the TLS/policy-related code
had to be cleaned up a bit. for example, the smtpclient TLS modes now reflect
reality better, with independent settings about whether PKIX and/or DANE
verification has to be done, and/or whether verification errors have to be
ignored (e.g. for tls-required: no header). also, cached mtasts policies of
mode "none" are now cleaned up once the MTA-STS DNS record goes away.
2023-11-09 19:40:46 +03:00
var hostReport bool
c . flag . BoolVar ( & hostReport , "hostreport" , false , "report for a host instead of domain" )
2023-01-30 16:27:06 +03:00
args := c . Parse ( )
if len ( args ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
// First read message, to get the From-header. Then parse it as TLSRPT.
fmt . Fprintln ( os . Stderr , "reading report message from stdin" )
buf , err := io . ReadAll ( os . Stdin )
xcheckf ( err , "reading message" )
2023-12-05 15:35:58 +03:00
part , err := message . Parse ( c . log . Logger , true , bytes . NewReader ( buf ) )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "parsing message" )
if part . Envelope == nil || len ( part . Envelope . From ) != 1 {
log . Fatalf ( "message must have one From-header" )
}
from := part . Envelope . From [ 0 ]
domain := xparseDomain ( from . Host , "domain" )
2023-12-31 13:55:22 +03:00
reportJSON , err := tlsrpt . ParseMessage ( c . log . Logger , bytes . NewReader ( buf ) )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "parsing tls report in message" )
mailfrom := from . User + "@" + from . Host // todo future: should escape and such
2023-12-31 13:55:22 +03:00
report := reportJSON . Convert ( )
err = tlsrptdb . AddReport ( context . Background ( ) , c . log , domain , mailfrom , hostReport , & report )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "add tls report to database" )
}
func cmdDNSBLCheck ( c * cmd ) {
c . params = "zone ip"
c . help = ` Test if IP is in the DNS blocklist of the zone , e . g . bl . spamcop . net .
If the IP is in the blocklist , an explanation is printed . This is typically a
URL with more information .
`
args := c . Parse ( )
if len ( args ) != 2 {
c . Usage ( )
}
zone := xparseDomain ( args [ 0 ] , "zone" )
ip := xparseIP ( args [ 1 ] , "ip" )
2023-12-05 15:35:58 +03:00
status , explanation , err := dnsbl . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , zone , ip )
2023-01-30 16:27:06 +03:00
fmt . Printf ( "status: %s\n" , status )
if status == dnsbl . StatusFail {
fmt . Printf ( "explanation: %q\n" , explanation )
}
if err != nil {
fmt . Printf ( "error: %s\n" , err )
}
}
func cmdDNSBLCheckhealth ( c * cmd ) {
c . params = "zone"
c . help = ` Check the health of the DNS blocklist represented by zone , e . g . bl . spamcop . net .
The health of a DNS blocklist can be checked by querying for 127.0 .0 .1 and
127.0 .0 .2 . The second must and the first must not be present .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
zone := xparseDomain ( args [ 0 ] , "zone" )
2023-12-05 15:35:58 +03:00
err := dnsbl . CheckHealth ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , zone )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "unhealthy" )
fmt . Println ( "healthy" )
}
func cmdCheckupdate ( c * cmd ) {
c . help = ` Check if a newer version of mox is available .
A single DNS TXT lookup to _updates . xmox . nl tells if a new version is
available . If so , a changelog is fetched from https : //updates.xmox.nl, and the
implement dnssec-awareness throughout code, and dane for incoming/outgoing mail delivery
the vendored dns resolver code is a copy of the go stdlib dns resolver, with
awareness of the "authentic data" (i.e. dnssec secure) added, as well as support
for enhanced dns errors, and looking up tlsa records (for dane). ideally it
would be upstreamed, but the chances seem slim.
dnssec-awareness is added to all packages, e.g. spf, dkim, dmarc, iprev. their
dnssec status is added to the Received message headers for incoming email.
but the main reason to add dnssec was for implementing dane. with dane, the
verification of tls certificates can be done through certificates/public keys
published in dns (in the tlsa records). this only makes sense (is trustworthy)
if those dns records can be verified to be authentic.
mox now applies dane to delivering messages over smtp. mox already implemented
mta-sts for webpki/pkix-verification of certificates against the (large) pool
of CA's, and still enforces those policies when present. but it now also checks
for dane records, and will verify those if present. if dane and mta-sts are
both absent, the regular opportunistic tls with starttls is still done. and the
fallback to plaintext is also still done.
mox also makes it easy to setup dane for incoming deliveries, so other servers
can deliver with dane tls certificate verification. the quickstart now
generates private keys that are used when requesting certificates with acme.
the private keys are pre-generated because they must be static and known during
setup, because their public keys must be published in tlsa records in dns.
autocert would generate private keys on its own, so had to be forked to add the
option to provide the private key when requesting a new certificate. hopefully
upstream will accept the change and we can drop the fork.
with this change, using the quickstart to setup a new mox instance, the checks
at internet.nl result in a 100% score, provided the domain is dnssec-signed and
the network doesn't have any issues.
2023-10-10 13:09:35 +03:00
individual entries verified with a builtin public key . The changelog is
2023-01-30 16:27:06 +03:00
printed .
`
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
current , lastknown , _ , err := mox . LastKnown ( )
if err != nil {
log . Printf ( "getting last known version: %s" , err )
} else {
fmt . Printf ( "last known version: %s\n" , lastknown )
fmt . Printf ( "current version: %s\n" , current )
}
2023-12-05 15:35:58 +03:00
latest , _ , err := updates . Lookup ( context . Background ( ) , c . log . Logger , dns . StrictResolver { } , dns . Domain { ASCII : changelogDomain } )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "lookup of latest version" )
fmt . Printf ( "latest version: %s\n" , latest )
if latest . After ( current ) {
2023-12-05 15:35:58 +03:00
changelog , err := updates . FetchChangelog ( context . Background ( ) , c . log . Logger , changelogURL , current , changelogPubKey )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "fetching changelog" )
2023-02-17 22:14:26 +03:00
if len ( changelog . Changes ) == 0 {
log . Printf ( "no changes in changelog" )
return
}
fmt . Println ( "Changelog" )
for _ , c := range changelog . Changes {
fmt . Println ( "\n" + strings . TrimSpace ( c . Text ) )
}
2023-01-30 16:27:06 +03:00
}
}
func cmdCid ( c * cmd ) {
c . params = "cid"
c . help = ` Turn an ID from a Received header into a cid , for looking up in logs .
A cid is essentially a connection counter initialized when mox starts . Each log
line contains a cid . Received headers added by mox contain a unique ID that can
be decrypted to a cid by admin of a mox instance only .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-01-30 16:27:06 +03:00
recvidpath := mox . DataDirPath ( "receivedid.key" )
recvidbuf , err := os . ReadFile ( recvidpath )
xcheckf ( err , "reading %s" , recvidpath )
if len ( recvidbuf ) != 16 + 8 {
log . Fatalf ( "bad data in %s: got %d bytes, expect 16+8=24" , recvidpath , len ( recvidbuf ) )
}
err = mox . ReceivedIDInit ( recvidbuf [ : 16 ] , recvidbuf [ 16 : ] )
xcheckf ( err , "init receivedid" )
cid , err := mox . ReceivedToCid ( args [ 0 ] )
xcheckf ( err , "received id to cid" )
fmt . Printf ( "%x\n" , cid )
}
func cmdVersion ( c * cmd ) {
c . help = "Prints this mox version."
if len ( c . Parse ( ) ) != 0 {
c . Usage ( )
}
fmt . Println ( moxvar . Version )
2023-12-14 16:11:13 +03:00
fmt . Printf ( "%s %s/%s\n" , runtime . Version ( ) , runtime . GOOS , runtime . GOARCH )
2023-01-30 16:27:06 +03:00
}
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
// todo: should make it possible to run this command against a running mox. it should disconnect existing clients for accounts with a bumped uidvalidity, so they will reconnect and refetch the data.
2023-08-10 13:29:46 +03:00
func cmdBumpUIDValidity ( c * cmd ) {
c . params = "account [mailbox]"
c . help = ` Change the IMAP UID validity of the mailbox , causing IMAP clients to refetch messages .
2023-08-08 23:10:53 +03:00
2023-08-10 13:29:46 +03:00
This can be useful after manually repairing metadata about the account / mailbox .
2023-08-08 23:10:53 +03:00
2023-08-10 13:29:46 +03:00
Opens account database file directly . Ensure mox does not have the account
2023-09-23 13:15:13 +03:00
open , or is not running .
2023-08-08 23:10:53 +03:00
`
2023-01-30 16:27:06 +03:00
args := c . Parse ( )
2023-05-22 19:11:42 +03:00
if len ( args ) != 1 && len ( args ) != 2 {
2023-01-30 16:27:06 +03:00
c . Usage ( )
}
2023-02-03 17:54:34 +03:00
mustLoadConfig ( )
2023-12-05 15:35:58 +03:00
a , err := store . OpenAccount ( c . log , args [ 0 ] )
2023-01-30 16:27:06 +03:00
xcheckf ( err , "open account" )
2023-02-16 15:22:00 +03:00
defer func ( ) {
if err := a . Close ( ) ; err != nil {
log . Printf ( "closing account: %v" , err )
}
} ( )
2023-01-30 16:27:06 +03:00
2023-05-22 15:40:36 +03:00
err = a . DB . Write ( context . Background ( ) , func ( tx * bstore . Tx ) error {
2023-09-23 13:15:13 +03:00
uidvalidity , err := a . NextUIDValidity ( tx )
if err != nil {
return fmt . Errorf ( "assigning next uid validity: %v" , err )
}
2023-05-22 19:11:42 +03:00
q := bstore . QueryTx [ store . Mailbox ] ( tx )
if len ( args ) == 2 {
q . FilterEqual ( "Name" , args [ 1 ] )
}
mbl , err := q . SortAsc ( "Name" ) . List ( )
2023-01-30 16:27:06 +03:00
if err != nil {
return fmt . Errorf ( "looking up mailbox: %v" , err )
}
2023-05-22 19:11:42 +03:00
if len ( args ) == 2 && len ( mbl ) != 1 {
return fmt . Errorf ( "looking up mailbox %q, found %d mailboxes" , args [ 1 ] , len ( mbl ) )
}
for _ , mb := range mbl {
2023-09-23 13:15:13 +03:00
mb . UIDValidity = uidvalidity
2023-05-22 19:11:42 +03:00
err = tx . Update ( & mb )
if err != nil {
return fmt . Errorf ( "updating uid validity for mailbox: %v" , err )
}
fmt . Printf ( "uid validity for %q updated to %d\n" , mb . Name , uidvalidity )
2023-01-30 16:27:06 +03:00
}
return nil
} )
2023-05-22 19:11:42 +03:00
xcheckf ( err , "updating database" )
2023-01-30 16:27:06 +03:00
}
2023-06-30 18:19:29 +03:00
func cmdReassignUIDs ( c * cmd ) {
c . params = "account [mailboxid]"
c . help = ` Reassign UIDs in one mailbox or all mailboxes in an account and bump UID validity , causing IMAP clients to refetch messages .
Opens account database file directly . Ensure mox does not have the account
open , or is not running .
`
args := c . Parse ( )
if len ( args ) != 1 && len ( args ) != 2 {
c . Usage ( )
}
var mailboxID int64
if len ( args ) == 2 {
var err error
mailboxID , err = strconv . ParseInt ( args [ 1 ] , 10 , 64 )
xcheckf ( err , "parsing mailbox id" )
}
mustLoadConfig ( )
2023-12-05 15:35:58 +03:00
a , err := store . OpenAccount ( c . log , args [ 0 ] )
2023-06-30 18:19:29 +03:00
xcheckf ( err , "open account" )
defer func ( ) {
if err := a . Close ( ) ; err != nil {
log . Printf ( "closing account: %v" , err )
}
} ( )
// Gather the last-assigned UIDs per mailbox.
uidlasts := map [ int64 ] store . UID { }
err = a . DB . Write ( context . Background ( ) , func ( tx * bstore . Tx ) error {
// Reassign UIDs, going per mailbox. We assign starting at 1, only changing the
// message if it isn't already at the intended UID. Doing it in this order ensures
2023-07-24 22:21:05 +03:00
// we don't get into trouble with duplicate UIDs for a mailbox. We assign a new
// modseq. Not strictly needed, for doesn't hurt.
modseq , err := a . NextModSeq ( tx )
xcheckf ( err , "assigning next modseq" )
2023-06-30 18:19:29 +03:00
q := bstore . QueryTx [ store . Message ] ( tx )
if len ( args ) == 2 {
q . FilterNonzero ( store . Message { MailboxID : mailboxID } )
}
q . SortAsc ( "MailboxID" , "UID" )
2023-07-24 22:21:05 +03:00
err = q . ForEach ( func ( m store . Message ) error {
2023-06-30 18:19:29 +03:00
uidlasts [ m . MailboxID ] ++
uid := uidlasts [ m . MailboxID ]
if m . UID != uid {
m . UID = uid
2023-07-24 22:21:05 +03:00
m . ModSeq = modseq
2023-06-30 18:19:29 +03:00
if err := tx . Update ( & m ) ; err != nil {
return fmt . Errorf ( "updating uid for message: %v" , err )
}
}
return nil
} )
if err != nil {
return fmt . Errorf ( "reading through messages: %v" , err )
}
// Now update the uidnext and uidvalidity for each mailbox.
err = bstore . QueryTx [ store . Mailbox ] ( tx ) . ForEach ( func ( mb store . Mailbox ) error {
// Assign each mailbox a completely new uidvalidity.
uidvalidity , err := a . NextUIDValidity ( tx )
if err != nil {
return fmt . Errorf ( "assigning next uid validity: %v" , err )
}
if mb . UIDValidity >= uidvalidity {
// This should not happen, but since we're fixing things up after a hypothetical
// mishap, might as well account for inconsistent uidvalidity.
next := store . NextUIDValidity { ID : 1 , Next : mb . UIDValidity + 2 }
if err := tx . Update ( & next ) ; err != nil {
log . Printf ( "updating nextuidvalidity: %v, continuing" , err )
}
mb . UIDValidity ++
} else {
mb . UIDValidity = uidvalidity
}
mb . UIDNext = uidlasts [ mb . ID ] + 1
if err := tx . Update ( & mb ) ; err != nil {
return fmt . Errorf ( "updating uidvalidity and uidnext for mailbox: %v" , err )
}
return nil
} )
if err != nil {
return fmt . Errorf ( "updating mailboxes: %v" , err )
}
return nil
} )
xcheckf ( err , "updating database" )
}
func cmdFixUIDMeta ( c * cmd ) {
c . params = "account"
c . help = ` Fix inconsistent UIDVALIDITY and UIDNEXT in messages / mailboxes / account .
The next UID to use for a message in a mailbox should always be higher than any
existing message UID in the mailbox . If it is not , the mailbox UIDNEXT is
updated .
Each mailbox has a UIDVALIDITY sequence number , which should always be lower
than the per - account next UIDVALIDITY to use . If it is not , the account next
UIDVALIDITY is updated .
Opens account database file directly . Ensure mox does not have the account
open , or is not running .
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
mustLoadConfig ( )
2023-12-05 15:35:58 +03:00
a , err := store . OpenAccount ( c . log , args [ 0 ] )
2023-06-30 18:19:29 +03:00
xcheckf ( err , "open account" )
defer func ( ) {
if err := a . Close ( ) ; err != nil {
log . Printf ( "closing account: %v" , err )
}
} ( )
var maxUIDValidity uint32
err = a . DB . Write ( context . Background ( ) , func ( tx * bstore . Tx ) error {
// We look at each mailbox, retrieve its max UID and compare against the mailbox
// UIDNEXT.
err := bstore . QueryTx [ store . Mailbox ] ( tx ) . ForEach ( func ( mb store . Mailbox ) error {
if mb . UIDValidity > maxUIDValidity {
maxUIDValidity = mb . UIDValidity
}
m , err := bstore . QueryTx [ store . Message ] ( tx ) . FilterNonzero ( store . Message { MailboxID : mb . ID } ) . SortDesc ( "UID" ) . Limit ( 1 ) . Get ( )
if err == bstore . ErrAbsent || err == nil && m . UID < mb . UIDNext {
return nil
} else if err != nil {
return fmt . Errorf ( "finding message with max uid in mailbox: %w" , err )
}
2023-07-26 10:24:24 +03:00
olduidnext := mb . UIDNext
2023-06-30 18:19:29 +03:00
mb . UIDNext = m . UID + 1
2023-07-26 10:24:24 +03:00
log . Printf ( "fixing uidnext to %d (max uid is %d, old uidnext was %d) for mailbox %q (id %d)" , mb . UIDNext , m . UID , olduidnext , mb . Name , mb . ID )
2023-06-30 18:19:29 +03:00
if err := tx . Update ( & mb ) ; err != nil {
return fmt . Errorf ( "updating mailbox uidnext: %v" , err )
}
return nil
} )
if err != nil {
return fmt . Errorf ( "processing mailboxes: %v" , err )
}
uidvalidity := store . NextUIDValidity { ID : 1 }
if err := tx . Get ( & uidvalidity ) ; err != nil {
return fmt . Errorf ( "reading account next uidvalidity: %v" , err )
}
if maxUIDValidity >= uidvalidity . Next {
log . Printf ( "account next uidvalidity %d <= highest uidvalidity %d found in mailbox, resetting account next uidvalidity to %d" , uidvalidity . Next , maxUIDValidity , maxUIDValidity + 1 )
uidvalidity . Next = maxUIDValidity + 1
if err := tx . Update ( & uidvalidity ) ; err != nil {
return fmt . Errorf ( "updating account next uidvalidity: %v" , err )
}
}
return nil
} )
xcheckf ( err , "updating database" )
}
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
2023-08-10 13:29:46 +03:00
func cmdFixmsgsize ( c * cmd ) {
c . params = "[account]"
c . help = ` Ensure message sizes in the database matching the sum of the message prefix length and on - disk file size .
Messages with an inconsistent size are also parsed again .
If an inconsistency is found , you should probably also run " mox
bumpuidvalidity " on the mailboxes or entire account to force IMAP clients to
refetch messages .
`
args := c . Parse ( )
if len ( args ) > 1 {
c . Usage ( )
}
mustLoadConfig ( )
var account string
if len ( args ) == 1 {
account = args [ 0 ]
}
ctlcmdFixmsgsize ( xctl ( ) , account )
}
func ctlcmdFixmsgsize ( ctl * ctl , account string ) {
ctl . xwrite ( "fixmsgsize" )
ctl . xwrite ( account )
ctl . xreadok ( )
ctl . xstreamto ( os . Stdout )
}
func cmdReparse ( c * cmd ) {
c . params = "[account]"
c . help = ` Parse all messages in the account or all accounts again
Can be useful after upgrading mox with improved message parsing . Messages are
parsed in batches , so other access to the mailboxes / messages are not blocked
while reparsing all messages .
`
args := c . Parse ( )
if len ( args ) > 1 {
c . Usage ( )
}
mustLoadConfig ( )
var account string
if len ( args ) == 1 {
account = args [ 0 ]
}
ctlcmdReparse ( xctl ( ) , account )
}
func ctlcmdReparse ( ctl * ctl , account string ) {
ctl . xwrite ( "reparse" )
ctl . xwrite ( account )
ctl . xreadok ( )
ctl . xstreamto ( os . Stdout )
}
func cmdEnsureParsed ( c * cmd ) {
c . params = "account"
c . help = "Ensure messages in the database have a pre-parsed MIME form in the database."
var all bool
c . flag . BoolVar ( & all , "all" , false , "store new parsed message for all messages" )
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
mustLoadConfig ( )
2023-12-05 15:35:58 +03:00
a , err := store . OpenAccount ( c . log , args [ 0 ] )
2023-08-10 13:29:46 +03:00
xcheckf ( err , "open account" )
defer func ( ) {
if err := a . Close ( ) ; err != nil {
log . Printf ( "closing account: %v" , err )
}
} ( )
n := 0
err = a . DB . Write ( context . Background ( ) , func ( tx * bstore . Tx ) error {
q := bstore . QueryTx [ store . Message ] ( tx )
q . FilterEqual ( "Expunged" , false )
q . FilterFn ( func ( m store . Message ) bool {
return all || m . ParsedBuf == nil
} )
l , err := q . List ( )
if err != nil {
return fmt . Errorf ( "list messages: %v" , err )
}
for _ , m := range l {
mr := a . MessageReader ( m )
2023-12-05 15:35:58 +03:00
p , err := message . EnsurePart ( c . log . Logger , false , mr , m . Size )
2023-08-10 13:29:46 +03:00
if err != nil {
log . Printf ( "parsing message %d: %v (continuing)" , m . ID , err )
}
m . ParsedBuf , err = json . Marshal ( p )
if err != nil {
return fmt . Errorf ( "marshal parsed message: %v" , err )
}
if err := tx . Update ( & m ) ; err != nil {
return fmt . Errorf ( "update message: %v" , err )
}
n ++
}
return nil
} )
xcheckf ( err , "update messages with parsed mime structure" )
fmt . Printf ( "%d messages updated\n" , n )
}
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
func cmdRecalculateMailboxCounts ( c * cmd ) {
c . params = "account"
2023-12-20 22:54:12 +03:00
c . help = ` Recalculate message counts for all mailboxes in the account , and total message size for quota .
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
When a message is added to / removed from a mailbox , or when message flags change ,
2023-12-20 22:54:12 +03:00
the total , unread , unseen and deleted messages are accounted , the total size of
the mailbox , and the total message size for the account . In case of a bug in
this accounting , the numbers could become incorrect . This command will find , fix
and print them .
add webmail
it was far down on the roadmap, but implemented earlier, because it's
interesting, and to help prepare for a jmap implementation. for jmap we need to
implement more client-like functionality than with just imap. internal data
structures need to change. jmap has lots of other requirements, so it's already
a big project. by implementing a webmail now, some of the required data
structure changes become clear and can be made now, so the later jmap
implementation can do things similarly to the webmail code. the webmail
frontend and webmail are written together, making their interface/api much
smaller and simpler than jmap.
one of the internal changes is that we now keep track of per-mailbox
total/unread/unseen/deleted message counts and mailbox sizes. keeping this
data consistent after any change to the stored messages (through the code base)
is tricky, so mox now has a consistency check that verifies the counts are
correct, which runs only during tests, each time an internal account reference
is closed. we have a few more internal "changes" that are propagated for the
webmail frontend (that imap doesn't have a way to propagate on a connection),
like changes to the special-use flags on mailboxes, and used keywords in a
mailbox. more changes that will be required have revealed themselves while
implementing the webmail, and will be implemented next.
the webmail user interface is modeled after the mail clients i use or have
used: thunderbird, macos mail, mutt; and webmails i normally only use for
testing: gmail, proton, yahoo, outlook. a somewhat technical user is assumed,
but still the goal is to make this webmail client easy to use for everyone. the
user interface looks like most other mail clients: a list of mailboxes, a
search bar, a message list view, and message details. there is a top/bottom and
a left/right layout for the list/message view, default is automatic based on
screen size. the panes can be resized by the user. buttons for actions are just
text, not icons. clicking a button briefly shows the shortcut for the action in
the bottom right, helping with learning to operate quickly. any text that is
underdotted has a title attribute that causes more information to be displayed,
e.g. what a button does or a field is about. to highlight potential phishing
attempts, any text (anywhere in the webclient) that switches unicode "blocks"
(a rough approximation to (language) scripts) within a word is underlined
orange. multiple messages can be selected with familiar ui interaction:
clicking while holding control and/or shift keys. keyboard navigation works
with arrows/page up/down and home/end keys, and also with a few basic vi-like
keys for list/message navigation. we prefer showing the text instead of
html (with inlined images only) version of a message. html messages are shown
in an iframe served from an endpoint with CSP headers to prevent dangerous
resources (scripts, external images) from being loaded. the html is also
sanitized, with javascript removed. a user can choose to load external
resources (e.g. images for tracking purposes).
the frontend is just (strict) typescript, no external frameworks. all
incoming/outgoing data is typechecked, both the api request parameters and
response types, and the data coming in over SSE. the types and checking code
are generated with sherpats, which uses the api definitions generated by
sherpadoc based on the Go code. so types from the backend are automatically
propagated to the frontend. since there is no framework to automatically
propagate properties and rerender components, changes coming in over the SSE
connection are propagated explicitly with regular function calls. the ui is
separated into "views", each with a "root" dom element that is added to the
visible document. these views have additional functions for getting changes
propagated, often resulting in the view updating its (internal) ui state (dom).
we keep the frontend compilation simple, it's just a few typescript files that
get compiled (combined and types stripped) into a single js file, no additional
runtime code needed or complicated build processes used. the webmail is served
is served from a compressed, cachable html file that includes style and the
javascript, currently just over 225kb uncompressed, under 60kb compressed (not
minified, including comments). we include the generated js files in the
repository, to keep Go's easily buildable self-contained binaries.
authentication is basic http, as with the account and admin pages. most data
comes in over one long-term SSE connection to the backend. api requests signal
which mailbox/search/messages are requested over the SSE connection. fetching
individual messages, and making changes, are done through api calls. the
operations are similar to imap, so some code has been moved from package
imapserver to package store. the future jmap implementation will benefit from
these changes too. more functionality will probably be moved to the store
package in the future.
the quickstart enables webmail on the internal listener by default (for new
installs). users can enable it on the public listener if they want to. mox
localserve enables it too. to enable webmail on existing installs, add settings
like the following to the listeners in mox.conf, similar to AccountHTTP(S):
WebmailHTTP:
Enabled: true
WebmailHTTPS:
Enabled: true
special thanks to liesbeth, gerben, andrii for early user feedback.
there is plenty still to do, see the list at the top of webmail/webmail.ts.
feedback welcome as always.
2023-08-07 22:57:03 +03:00
`
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
mustLoadConfig ( )
ctlcmdRecalculateMailboxCounts ( xctl ( ) , args [ 0 ] )
}
func ctlcmdRecalculateMailboxCounts ( ctl * ctl , account string ) {
ctl . xwrite ( "recalculatemailboxcounts" )
ctl . xwrite ( account )
ctl . xreadok ( )
ctl . xstreamto ( os . Stdout )
}
2023-08-10 13:29:46 +03:00
func cmdMessageParse ( c * cmd ) {
c . params = "message.eml"
c . help = "Parse message, print JSON representation."
args := c . Parse ( )
if len ( args ) != 1 {
c . Usage ( )
}
f , err := os . Open ( args [ 0 ] )
xcheckf ( err , "open" )
defer f . Close ( )
2023-12-05 15:35:58 +03:00
part , err := message . Parse ( c . log . Logger , false , f )
2023-08-10 13:29:46 +03:00
xcheckf ( err , "parsing message" )
2023-12-05 15:35:58 +03:00
err = part . Walk ( c . log . Logger , nil )
2023-08-10 13:29:46 +03:00
xcheckf ( err , "parsing nested parts" )
enc := json . NewEncoder ( os . Stdout )
enc . SetIndent ( "" , "\t" )
err = enc . Encode ( part )
xcheckf ( err , "write" )
}
2023-08-16 15:36:17 +03:00
func cmdOpenaccounts ( c * cmd ) {
c . unlisted = true
c . params = "datadir account ..."
c . help = ` Open and close accounts , for triggering data upgrades , for tests .
Opens database files directly , not going through a running mox instance .
`
args := c . Parse ( )
if len ( args ) <= 1 {
c . Usage ( )
}
dataDir := filepath . Clean ( args [ 0 ] )
for _ , accName := range args [ 1 : ] {
accDir := filepath . Join ( dataDir , "accounts" , accName )
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
log . Printf ( "opening account %s..." , accDir )
2023-12-05 15:35:58 +03:00
a , err := store . OpenAccountDB ( c . log , accDir , accName )
2023-08-16 15:36:17 +03:00
xcheckf ( err , "open account %s" , accName )
2023-12-05 15:35:58 +03:00
err = a . ThreadingWait ( c . log )
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
xcheckf ( err , "wait for threading upgrade to complete for %s" , accName )
err = a . Close ( )
xcheckf ( err , "close account %s" , accName )
}
}
func cmdReassignthreads ( c * cmd ) {
c . params = "[account]"
c . help = ` Reassign message threads .
For all accounts , or optionally only the specified account .
Threading for all messages in an account is first reset , and new base subject
and normalized message - id saved with the message . Then all messages are
evaluated and matched against their parents / ancestors .
Messages are matched based on the References header , with a fall - back to an
In - Reply - To header , and if neither is present / valid , based only on base
subject .
A References header typically points to multiple previous messages in a
hierarchy . From oldest ancestor to most recent parent . An In - Reply - To header
would have only a message - id of the parent message .
A message is only linked to a parent / ancestor if their base subject is the
same . This ensures unrelated replies , with a new subject , are placed in their
own thread .
The base subject is lower cased , has whitespace collapsed to a single
space , and some components removed : leading "Re:" , "Fwd:" , "Fw:" , or bracketed
tag ( that mailing lists often add , e . g . "[listname]" ) , trailing "(fwd)" , or
enclosing "[fwd: ...]" .
Messages are linked to all their ancestors . If an intermediate parent / ancestor
message is deleted in the future , the message can still be linked to the earlier
ancestors . If the direct parent already wasn ' t available while matching , this is
stored as the message having a "missing link" to its stored ancestors .
`
args := c . Parse ( )
if len ( args ) > 1 {
c . Usage ( )
}
mustLoadConfig ( )
var account string
if len ( args ) == 1 {
account = args [ 0 ]
}
ctlcmdReassignthreads ( xctl ( ) , account )
}
func ctlcmdReassignthreads ( ctl * ctl , account string ) {
ctl . xwrite ( "reassignthreads" )
ctl . xwrite ( account )
ctl . xreadok ( )
ctl . xstreamto ( os . Stdout )
}
func cmdReadmessages ( c * cmd ) {
c . unlisted = true
c . params = "datadir account ..."
c . help = ` Open account , parse several headers for all messages .
For performance testing .
Opens database files directly , not going through a running mox instance .
`
gomaxprocs := runtime . GOMAXPROCS ( 0 )
var procs , workqueuesize , limit int
c . flag . IntVar ( & procs , "procs" , gomaxprocs , "number of goroutines for reading messages" )
c . flag . IntVar ( & workqueuesize , "workqueuesize" , 2 * gomaxprocs , "number of messages to keep in work queue" )
c . flag . IntVar ( & limit , "limit" , 0 , "number of messages to process if greater than zero" )
args := c . Parse ( )
if len ( args ) <= 1 {
c . Usage ( )
}
type threadPrep struct {
references [ ] string
inReplyTo [ ] string
}
threadingFields := [ ] [ ] byte {
[ ] byte ( "references" ) ,
[ ] byte ( "in-reply-to" ) ,
}
dataDir := filepath . Clean ( args [ 0 ] )
for _ , accName := range args [ 1 : ] {
accDir := filepath . Join ( dataDir , "accounts" , accName )
log . Printf ( "opening account %s..." , accDir )
2023-12-05 15:35:58 +03:00
a , err := store . OpenAccountDB ( c . log , accDir , accName )
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
xcheckf ( err , "open account %s" , accName )
prepareMessages := func ( in , out chan moxio . Work [ store . Message , threadPrep ] ) {
headerbuf := make ( [ ] byte , 8 * 1024 )
scratch := make ( [ ] byte , 4 * 1024 )
for {
w , ok := <- in
if ! ok {
return
}
m := w . In
var partialPart struct {
HeaderOffset int64
BodyOffset int64
}
if err := json . Unmarshal ( m . ParsedBuf , & partialPart ) ; err != nil {
w . Err = fmt . Errorf ( "unmarshal part: %v" , err )
} else {
size := partialPart . BodyOffset - partialPart . HeaderOffset
if int ( size ) > len ( headerbuf ) {
headerbuf = make ( [ ] byte , size )
}
if size > 0 {
buf := headerbuf [ : int ( size ) ]
err := func ( ) error {
mr := a . MessageReader ( m )
defer mr . Close ( )
// ReadAt returns whole buffer or error. Single read should be fast.
n , err := mr . ReadAt ( buf , partialPart . HeaderOffset )
if err != nil || n != len ( buf ) {
return fmt . Errorf ( "read header: %v" , err )
}
return nil
} ( )
if err != nil {
w . Err = err
} else if h , err := message . ParseHeaderFields ( buf , scratch , threadingFields ) ; err != nil {
w . Err = err
} else {
w . Out . references = h [ "References" ]
w . Out . inReplyTo = h [ "In-Reply-To" ]
}
}
}
out <- w
}
}
n := 0
t := time . Now ( )
t0 := t
processMessage := func ( m store . Message , prep threadPrep ) error {
if n % 100000 == 0 {
log . Printf ( "%d messages (delta %s)" , n , time . Since ( t ) )
t = time . Now ( )
}
n ++
return nil
}
wq := moxio . NewWorkQueue [ store . Message , threadPrep ] ( procs , workqueuesize , prepareMessages , processMessage )
err = a . DB . Write ( context . Background ( ) , func ( tx * bstore . Tx ) error {
q := bstore . QueryTx [ store . Message ] ( tx )
q . FilterEqual ( "Expunged" , false )
q . SortAsc ( "ID" )
if limit > 0 {
q . Limit ( limit )
}
err = q . ForEach ( wq . Add )
if err == nil {
err = wq . Finish ( )
}
wq . Stop ( )
return err
} )
xcheckf ( err , "processing message" )
2023-08-16 15:36:17 +03:00
err = a . Close ( )
xcheckf ( err , "close account %s" , accName )
implement message threading in backend and webmail
we match messages to their parents based on the "references" and "in-reply-to"
headers (requiring the same base subject), and in absense of those headers we
also by only base subject (against messages received max 4 weeks ago).
we store a threadid with messages. all messages in a thread have the same
threadid. messages also have a "thread parent ids", which holds all id's of
parent messages up to the thread root. then there is "thread missing link",
which is set when a referenced immediate parent wasn't found (but possibly
earlier ancestors can still be found and will be in thread parent ids".
threads can be muted: newly delivered messages are automatically marked as
read/seen. threads can be marked as collapsed: if set, the webmail collapses
the thread to a single item in the basic threading view (default is to expand
threads). the muted and collapsed fields are copied from their parent on
message delivery.
the threading is implemented in the webmail. the non-threading mode still works
as before. the new default threading mode "unread" automatically expands only
the threads with at least one unread (not seen) meessage. the basic threading
mode "on" expands all threads except when explicitly collapsed (as saved in the
thread collapsed field). new shortcuts for navigation/interaction threads have
been added, e.g. go to previous/next thread root, toggle collapse/expand of
thread (or double click), toggle mute of thread. some previous shortcuts have
changed, see the help for details.
the message threading are added with an explicit account upgrade step,
automatically started when an account is opened. the upgrade is done in the
background because it will take too long for large mailboxes to block account
operations. the upgrade takes two steps: 1. updating all message records in the
database to add a normalized message-id and thread base subject (with "re:",
"fwd:" and several other schemes stripped). 2. going through all messages in
the database again, reading the "references" and "in-reply-to" headers from
disk, and matching against their parents. this second step is also done at the
end of each import of mbox/maildir mailboxes. new deliveries are matched
immediately against other existing messages, currently no attempt is made to
rematch previously delivered messages (which could be useful for related
messages being delivered out of order).
the threading is not yet exposed over imap.
2023-09-13 09:51:50 +03:00
log . Printf ( "account %s, total time %s" , accName , time . Since ( t0 ) )
2023-08-16 15:36:17 +03:00
}
}