2023-01-30 16:27:06 +03:00
|
|
|
/*
|
|
|
|
Command mox is a modern full-featured open source secure mail server for
|
|
|
|
low-maintenance self-hosted email.
|
|
|
|
|
|
|
|
- Quick and easy to set up with quickstart and automatic TLS with ACME and
|
|
|
|
Let's Encrypt.
|
|
|
|
- IMAP4 with extensions for accessing email.
|
|
|
|
- SMTP with SPF, DKIM, DMARC, DNSBL, MTA-STS, TLSRPT for exchanging email.
|
|
|
|
- Reputation-based and content-based spam filtering.
|
|
|
|
- Internationalized email.
|
|
|
|
- Admin web interface.
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
|
2023-03-12 17:16:01 +03:00
|
|
|
mox [-config config/mox.conf] [-pedantic] ...
|
2023-01-30 16:27:06 +03:00
|
|
|
mox serve
|
2023-03-05 17:40:26 +03:00
|
|
|
mox quickstart [-existing-webserver] [-hostname host] user@domain [user | uid]
|
2023-01-30 16:27:06 +03:00
|
|
|
mox stop
|
|
|
|
mox setaccountpassword address
|
|
|
|
mox setadminpassword
|
|
|
|
mox loglevels [level [pkg]]
|
|
|
|
mox queue list
|
|
|
|
mox queue kick [-id id] [-todomain domain] [-recipient address]
|
|
|
|
mox queue drop [-id id] [-todomain domain] [-recipient address]
|
|
|
|
mox queue dump id
|
|
|
|
mox import maildir accountname mailboxname maildir
|
|
|
|
mox import mbox accountname mailboxname mbox
|
2023-02-14 00:37:25 +03:00
|
|
|
mox export maildir dst-dir account-path [mailbox]
|
|
|
|
mox export mbox dst-dir account-path [mailbox]
|
2023-03-12 12:38:02 +03:00
|
|
|
mox localserve
|
2023-01-30 16:27:06 +03:00
|
|
|
mox help [command ...]
|
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
|
|
|
mox backup dest-dir
|
|
|
|
mox verifydata data-dir
|
2023-01-30 16:27:06 +03:00
|
|
|
mox config test
|
|
|
|
mox config dnscheck domain
|
|
|
|
mox config dnsrecords domain
|
|
|
|
mox config describe-domains >domains.conf
|
|
|
|
mox config describe-static >mox.conf
|
|
|
|
mox config account add account address
|
|
|
|
mox config account rm account
|
|
|
|
mox config address add address account
|
|
|
|
mox config address rm address
|
|
|
|
mox config domain add domain account [localpart]
|
|
|
|
mox config domain rm domain
|
2023-02-03 15:47:44 +03:00
|
|
|
mox config describe-sendmail >/etc/moxsubmit.conf
|
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
|
|
|
mox config printservice >mox.service
|
2023-03-04 02:49:02 +03:00
|
|
|
mox example [name]
|
2023-01-30 16:27:06 +03:00
|
|
|
mox checkupdate
|
|
|
|
mox cid cid
|
|
|
|
mox clientconfig domain
|
|
|
|
mox dkim gened25519 >$selector._domainkey.$domain.ed25519key.pkcs8.pem
|
|
|
|
mox dkim genrsa >$selector._domainkey.$domain.rsakey.pkcs8.pem
|
|
|
|
mox dkim lookup selector domain
|
|
|
|
mox dkim txt <$selector._domainkey.$domain.key.pkcs8.pem
|
|
|
|
mox dkim verify message
|
2023-03-07 23:59:55 +03:00
|
|
|
mox dkim sign message
|
2023-01-30 16:27:06 +03:00
|
|
|
mox dmarc lookup domain
|
|
|
|
mox dmarc parsereportmsg message ...
|
|
|
|
mox dmarc verify remoteip mailfromaddress helodomain < message
|
|
|
|
mox dnsbl check zone ip
|
|
|
|
mox dnsbl checkhealth zone
|
|
|
|
mox mtasts lookup domain
|
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
|
|
|
mox retrain accountname
|
2023-01-30 16:27:06 +03:00
|
|
|
mox sendmail [-Fname] [ignoredflags] [-t] [<message]
|
|
|
|
mox spf check domain ip
|
|
|
|
mox spf lookup domain
|
|
|
|
mox spf parse txtrecord
|
|
|
|
mox tlsrpt lookup domain
|
|
|
|
mox tlsrpt parsereportmsg message ...
|
|
|
|
mox version
|
|
|
|
|
|
|
|
Many commands talk to a running mox instance, through the ctl file in the data
|
|
|
|
directory. Specify the configuration file (that holds the path to the data
|
|
|
|
directory) through the -config flag or MOXCONF environment variable.
|
|
|
|
|
|
|
|
# mox serve
|
|
|
|
|
|
|
|
Start mox, serving SMTP/IMAP/HTTPS.
|
|
|
|
|
|
|
|
Incoming email is accepted over SMTP. Email can be retrieved by users using
|
|
|
|
IMAP. HTTP listeners are started for the admin/account web interfaces, and for
|
|
|
|
automated TLS configuration. Missing essential TLS certificates are immediately
|
|
|
|
requested, other TLS certificates are requested on demand.
|
|
|
|
|
|
|
|
usage: mox serve
|
|
|
|
|
|
|
|
# mox quickstart
|
|
|
|
|
|
|
|
Quickstart generates configuration files and prints instructions to quickly set up a mox instance.
|
|
|
|
|
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
|
|
|
Quickstart writes configuration files, prints initial admin and account
|
|
|
|
passwords, DNS records you should create. If you run it on Linux it writes a
|
|
|
|
systemd service file and prints commands to enable and start mox as service.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
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
|
|
|
The user or uid is optional, defaults to "mox", and is the user or uid/gid mox
|
|
|
|
will run as after initialization.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
2023-03-05 17:40:26 +03:00
|
|
|
Quickstart assumes mox will run on the machine you run quickstart on and uses
|
|
|
|
its host name and public IPs. On many systems the hostname is not a fully
|
|
|
|
qualified domain name, but only the first dns "label", e.g. "mail" in case of
|
|
|
|
"mail.example.org". If so, quickstart does a reverse DNS lookup to find the
|
|
|
|
hostname, and as fallback uses the label plus the domain of the email address
|
|
|
|
you specified. Use flag -hostname to explicitly specify the hostname mox will
|
|
|
|
run on.
|
|
|
|
|
2023-03-04 02:49:02 +03:00
|
|
|
Mox is by far easiest to operate if you let it listen on port 443 (HTTPS) and
|
|
|
|
80 (HTTP). TLS will be fully automatic with ACME with Let's Encrypt.
|
|
|
|
|
|
|
|
You can run mox along with an existing webserver, but because of MTA-STS and
|
|
|
|
autoconfig, you'll need to forward HTTPS traffic for two domains to mox. Run
|
|
|
|
"mox quickstart -existing-webserver ..." to generate configuration files and
|
|
|
|
instructions for configuring mox along with an existing webserver.
|
|
|
|
|
|
|
|
But please first consider configuring mox on port 443. It can itself serve
|
|
|
|
domains with HTTP/HTTPS, including with automatic TLS with ACME, is easily
|
|
|
|
configured through both configuration files and admin web interface, and can act
|
|
|
|
as a reverse proxy (and static file server for that matter), so you can forward
|
|
|
|
traffic to your existing backend applications. Look for "WebHandlers:" in the
|
|
|
|
output of "mox config describe-domains" and see the output of "mox example
|
|
|
|
webhandlers".
|
|
|
|
|
2023-03-05 17:40:26 +03:00
|
|
|
usage: mox quickstart [-existing-webserver] [-hostname host] user@domain [user | uid]
|
2023-03-04 02:49:02 +03:00
|
|
|
-existing-webserver
|
|
|
|
use if a webserver is already running, so mox won't listen on port 80 and 443; you'll have to provide tls certificates/keys, and configure the existing webserver as reverse proxy, forwarding requests to mox.
|
2023-03-05 17:40:26 +03:00
|
|
|
-hostname string
|
|
|
|
hostname mox will run on, by default the hostname of the machine quickstart runs on; if specified, the IPs for the hostname are configured for the public listener
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
# mox stop
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox stop
|
|
|
|
|
|
|
|
# mox setaccountpassword
|
|
|
|
|
|
|
|
Set new password an account.
|
|
|
|
|
2023-02-05 23:25:48 +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
|
|
|
|
|
|
|
Any email address configured for the account can be used.
|
|
|
|
|
|
|
|
usage: mox setaccountpassword address
|
|
|
|
|
|
|
|
# mox setadminpassword
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox setadminpassword
|
|
|
|
|
|
|
|
# mox loglevels
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
usage: mox loglevels [level [pkg]]
|
|
|
|
|
|
|
|
# mox queue list
|
|
|
|
|
|
|
|
List messages in the delivery queue.
|
|
|
|
|
|
|
|
This prints the message with its ID, last and next delivery attempts, last
|
|
|
|
error.
|
|
|
|
|
|
|
|
usage: mox queue list
|
|
|
|
|
|
|
|
# mox queue kick
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox queue kick [-id id] [-todomain domain] [-recipient address]
|
|
|
|
-id int
|
|
|
|
id of message in queue
|
|
|
|
-recipient string
|
|
|
|
recipient email address
|
|
|
|
-todomain string
|
|
|
|
destination domain of messages
|
|
|
|
|
|
|
|
# mox queue drop
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox queue drop [-id id] [-todomain domain] [-recipient address]
|
|
|
|
-id int
|
|
|
|
id of message in queue
|
|
|
|
-recipient string
|
|
|
|
recipient email address
|
|
|
|
-todomain string
|
|
|
|
destination domain of messages
|
|
|
|
|
|
|
|
# mox queue dump
|
|
|
|
|
|
|
|
Dump a message from the queue.
|
|
|
|
|
|
|
|
The message is printed to stdout and is in standard internet mail format.
|
|
|
|
|
|
|
|
usage: mox queue dump id
|
|
|
|
|
|
|
|
# mox import maildir
|
|
|
|
|
|
|
|
Import a maildir into an account.
|
|
|
|
|
2023-02-16 11:57:27 +03:00
|
|
|
By default, messages will train the junk filter based on their flags and, if
|
|
|
|
"automatic junk flags" configuration is set, based on mailbox naming.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
If the destination mailbox is "Sent", the recipients of the messages are added
|
|
|
|
to the message metadata, causing later incoming messages from these recipients
|
|
|
|
to be accepted, unless other reputation signals prevent that.
|
|
|
|
|
2023-02-16 11:57:27 +03:00
|
|
|
Users can also import mailboxes/messages through the account web page by
|
|
|
|
uploading a zip or tgz file with mbox and/or maildirs.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
2023-02-16 11:57:27 +03:00
|
|
|
Mailbox flags, like "seen", "answered", will be imported. An optional
|
|
|
|
dovecot-keywords file can specify additional flags, like Forwarded/Junk/NotJunk.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
The maildir files/directories are read by the mox process, so make sure it has
|
|
|
|
access to the maildir directories/files.
|
|
|
|
|
|
|
|
usage: mox import maildir accountname mailboxname maildir
|
|
|
|
|
|
|
|
# mox import mbox
|
|
|
|
|
|
|
|
Import an mbox into an account.
|
|
|
|
|
2023-02-16 11:57:27 +03:00
|
|
|
Using mbox is not recommended, maildir is a better defined format.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
2023-02-16 11:57:27 +03:00
|
|
|
By default, messages will train the junk filter based on their flags and, if
|
|
|
|
"automatic junk flags" configuration is set, based on mailbox naming.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
If the destination mailbox is "Sent", the recipients of the messages are added
|
|
|
|
to the message metadata, causing later incoming messages from these recipients
|
|
|
|
to be accepted, unless other reputation signals prevent that.
|
|
|
|
|
2023-02-16 11:57:27 +03:00
|
|
|
Users can also import mailboxes/messages through the account web page by
|
|
|
|
uploading a zip or tgz file with mbox and/or maildirs.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
The mailbox is read by the mox process, so make sure it has access to the
|
|
|
|
maildir directories/files.
|
|
|
|
|
|
|
|
usage: mox import mbox accountname mailboxname mbox
|
|
|
|
|
|
|
|
# mox export maildir
|
|
|
|
|
|
|
|
Export one or all mailboxes from an account in maildir format.
|
|
|
|
|
|
|
|
Export bypasses a running mox instance. It opens the account mailbox/message
|
|
|
|
database file directly. This may block if a running mox instance also has the
|
2023-02-13 20:04:05 +03:00
|
|
|
database open, e.g. for IMAP connections. To export from a running instance, use
|
|
|
|
the accounts web page.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
2023-02-14 00:37:25 +03:00
|
|
|
usage: mox export maildir dst-dir account-path [mailbox]
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
# mox export mbox
|
|
|
|
|
|
|
|
Export messages from one or all mailboxes in an account in mbox format.
|
|
|
|
|
|
|
|
Using mbox is not recommended. Maildir is a better format.
|
|
|
|
|
|
|
|
Export bypasses a running mox instance. It opens the account mailbox/message
|
|
|
|
database file directly. This may block if a running mox instance also has the
|
2023-02-13 20:04:05 +03:00
|
|
|
database open, e.g. for IMAP connections. To export from a running instance, use
|
|
|
|
the accounts web page.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
2023-02-14 00:37:25 +03:00
|
|
|
For mbox export, "mboxrd" is used where message lines starting with the magic
|
|
|
|
"From " string are escaped by prepending a >. All ">*From " are escaped,
|
2023-01-30 16:27:06 +03:00
|
|
|
otherwise reconstructing the original could lose a ">".
|
|
|
|
|
2023-02-14 00:37:25 +03:00
|
|
|
usage: mox export mbox dst-dir account-path [mailbox]
|
2023-01-30 16:27:06 +03:00
|
|
|
|
2023-03-12 12:38:02 +03:00
|
|
|
# mox localserve
|
|
|
|
|
|
|
|
Start a local SMTP/IMAP server that accepts all messages, useful when testing/developing software that sends email.
|
|
|
|
|
|
|
|
Localserve starts mox with a configuration suitable for local email-related
|
|
|
|
software development/testing. It listens for SMTP/Submission(s), IMAP(s) and
|
|
|
|
HTTP(s), on the regular port numbers + 1000.
|
|
|
|
|
|
|
|
Data is stored in the system user's configuration directory under
|
|
|
|
"mox-localserve", e.g. $HOME/.config/mox-localserve/ on linux, but can be
|
|
|
|
overridden with the -dir flag. If the directory does not yet exist, it is
|
|
|
|
automatically initialized with configuration files, an account with email
|
|
|
|
address mox@localhost and password moxmoxmox, and a newly generated self-signed
|
|
|
|
TLS certificate.
|
|
|
|
|
2023-03-12 23:42:28 +03:00
|
|
|
All incoming email to any address is accepted (if checks pass), unless the
|
|
|
|
recipient localpart ends with:
|
2023-03-12 12:38:02 +03:00
|
|
|
|
|
|
|
- "temperror": fail with a temporary error code
|
|
|
|
- "permerror": fail with a permanent error code
|
|
|
|
- [45][0-9][0-9]: fail with the specific error code
|
|
|
|
- "timeout": no response (for an hour)
|
|
|
|
|
|
|
|
If the localpart begins with "mailfrom" or "rcptto", the error is returned
|
|
|
|
during those commands instead of during "data".
|
|
|
|
|
|
|
|
usage: mox localserve
|
|
|
|
-dir string
|
|
|
|
configuration storage directory (default "$userconfigdir/mox-localserve")
|
|
|
|
|
2023-01-30 16:27:06 +03:00
|
|
|
# mox 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.
|
|
|
|
|
|
|
|
usage: mox help [command ...]
|
|
|
|
|
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
|
|
|
# mox backup
|
|
|
|
|
|
|
|
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
|
|
|
|
hardlinked so they don't consume additional space. If hardlinking fails, for
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox backup dest-dir
|
|
|
|
-verbose
|
|
|
|
print progress
|
|
|
|
|
|
|
|
# mox verifydata
|
|
|
|
|
|
|
|
Verify the contents of a data directory, typically of a backup.
|
|
|
|
|
|
|
|
Verifydata checks all database files to see if they are valid BoltDB/bstore
|
|
|
|
databases. It checks that all messages in the database have a corresponding
|
|
|
|
on-disk message file and there are no unrecognized files. If option -fix is
|
|
|
|
specified, unrecognized message files are moved away. This may be needed after
|
|
|
|
a restore, because messages enqueued or delivered in the future may get those
|
|
|
|
message sequence numbers assigned and writing the message file would fail.
|
|
|
|
|
|
|
|
Because verifydata opens the database files, schema upgrades may automatically
|
|
|
|
be applied. This can happen if you use a new mox release. It is useful to run
|
|
|
|
"mox verifydata" with a new binary before attempting an upgrade, but only on a
|
|
|
|
copy of the database files, as made with "mox backup". Before upgrading, make a
|
|
|
|
new backup again since "mox verifydata" may have upgraded the database files,
|
|
|
|
possibly making them potentially no longer readable by the previous version.
|
|
|
|
|
|
|
|
usage: mox verifydata data-dir
|
|
|
|
-fix
|
|
|
|
fix fixable problems, such as moving away message files not referenced by their database
|
|
|
|
|
2023-01-30 16:27:06 +03:00
|
|
|
# mox config test
|
|
|
|
|
|
|
|
Parses and validates the configuration files.
|
|
|
|
|
|
|
|
If valid, the command exits with status 0. If not valid, all errors encountered
|
|
|
|
are printed.
|
|
|
|
|
|
|
|
usage: mox config test
|
|
|
|
|
|
|
|
# mox config dnscheck
|
|
|
|
|
|
|
|
Check the DNS records with the configuration for the domain, and print any errors/warnings.
|
|
|
|
|
|
|
|
usage: mox config dnscheck domain
|
|
|
|
|
|
|
|
# mox config dnsrecords
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config dnsrecords domain
|
|
|
|
|
|
|
|
# mox config describe-domains
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config describe-domains >domains.conf
|
|
|
|
|
|
|
|
# mox config describe-static
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config describe-static >mox.conf
|
|
|
|
|
|
|
|
# mox config account add
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config account add account address
|
|
|
|
|
|
|
|
# mox config account rm
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config account rm account
|
|
|
|
|
|
|
|
# mox config address add
|
|
|
|
|
|
|
|
Adds an address to an account and reloads the configuration.
|
|
|
|
|
2023-03-29 22:11:43 +03:00
|
|
|
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
|
|
|
usage: mox config address add address account
|
|
|
|
|
|
|
|
# mox config address rm
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
usage: mox config address rm address
|
|
|
|
|
|
|
|
# mox config domain add
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config domain add domain account [localpart]
|
|
|
|
|
|
|
|
# mox config domain rm
|
|
|
|
|
|
|
|
Remove a domain from the configuration and reload the configuration.
|
|
|
|
|
|
|
|
This is a dangerous operation. Incoming email delivery for this domain will be
|
|
|
|
rejected.
|
|
|
|
|
|
|
|
usage: mox config domain rm domain
|
|
|
|
|
2023-02-03 15:47:44 +03:00
|
|
|
# mox config describe-sendmail
|
|
|
|
|
|
|
|
Describe configuration for mox when invoked as sendmail.
|
|
|
|
|
|
|
|
usage: mox config describe-sendmail >/etc/moxsubmit.conf
|
|
|
|
|
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
|
|
|
# mox config printservice
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox config printservice >mox.service
|
|
|
|
|
2023-03-04 02:49:02 +03:00
|
|
|
# mox example
|
2023-03-01 00:12:27 +03:00
|
|
|
|
|
|
|
List available examples, or print a specific example.
|
|
|
|
|
2023-03-04 02:49:02 +03:00
|
|
|
usage: mox example [name]
|
2023-03-01 00:12:27 +03:00
|
|
|
|
2023-01-30 16:27:06 +03:00
|
|
|
# mox checkupdate
|
|
|
|
|
|
|
|
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
|
|
|
|
individual entries validated with a builtin public key. The changelog is
|
|
|
|
printed.
|
|
|
|
|
|
|
|
usage: mox checkupdate
|
|
|
|
|
|
|
|
# mox cid
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox cid cid
|
|
|
|
|
|
|
|
# mox clientconfig
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox clientconfig domain
|
|
|
|
|
|
|
|
# mox dkim gened25519
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dkim gened25519 >$selector._domainkey.$domain.ed25519key.pkcs8.pem
|
|
|
|
|
|
|
|
# mox dkim genrsa
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dkim genrsa >$selector._domainkey.$domain.rsakey.pkcs8.pem
|
|
|
|
|
|
|
|
# mox dkim lookup
|
|
|
|
|
|
|
|
Lookup and print the DKIM record for the selector at the domain.
|
|
|
|
|
|
|
|
usage: mox dkim lookup selector domain
|
|
|
|
|
|
|
|
# mox dkim txt
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dkim txt <$selector._domainkey.$domain.key.pkcs8.pem
|
|
|
|
|
|
|
|
# mox dkim verify
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dkim verify message
|
|
|
|
|
2023-03-07 23:59:55 +03:00
|
|
|
# mox dkim sign
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dkim sign message
|
|
|
|
|
2023-01-30 16:27:06 +03:00
|
|
|
# mox dmarc lookup
|
|
|
|
|
|
|
|
Lookup dmarc policy for domain, a DNS TXT record at _dmarc.<domain>, validate and print it.
|
|
|
|
|
|
|
|
usage: mox dmarc lookup domain
|
|
|
|
|
|
|
|
# mox dmarc parsereportmsg
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dmarc parsereportmsg message ...
|
|
|
|
|
|
|
|
# mox dmarc verify
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dmarc verify remoteip mailfromaddress helodomain < message
|
|
|
|
|
|
|
|
# mox dnsbl check
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dnsbl check zone ip
|
|
|
|
|
|
|
|
# mox dnsbl checkhealth
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox dnsbl checkhealth zone
|
|
|
|
|
|
|
|
# mox mtasts lookup
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox mtasts lookup domain
|
|
|
|
|
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
|
|
|
# mox retrain
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox retrain accountname
|
|
|
|
|
2023-01-30 16:27:06 +03:00
|
|
|
# mox sendmail
|
|
|
|
|
|
|
|
Sendmail is a drop-in replacement for /usr/sbin/sendmail to deliver emails sent by unix processes like cron.
|
|
|
|
|
|
|
|
If invoked as "sendmail", it will act as sendmail for sending messages. Its
|
|
|
|
intention is to let processes like cron send emails. Messages are submitted to
|
|
|
|
an actual mail server over SMTP. The destination mail server and credentials are
|
2023-02-03 15:47:44 +03:00
|
|
|
configured in /etc/moxsubmit.conf, see mox config describe-sendmail. The From
|
|
|
|
message header is rewritten to the configured address. When the addressee
|
|
|
|
appears to be a local user, because without @, the message is sent to the
|
|
|
|
configured default address.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
If submitting an email fails, it is added to a directory moxsubmit.failures in
|
|
|
|
the user's home directory.
|
|
|
|
|
|
|
|
Most flags are ignored to fake compatibility with other sendmail
|
2023-03-20 15:25:38 +03:00
|
|
|
implementations. A single recipient or the -t flag with a To-header is required.
|
|
|
|
With the -t flag, Cc and Bcc headers are not handled specially, so Bcc is not
|
|
|
|
removed and the addresses do not receive the email.
|
2023-01-30 16:27:06 +03:00
|
|
|
|
|
|
|
/etc/moxsubmit.conf should be group-readable and not readable by others and this
|
|
|
|
binary should be setgid that group:
|
|
|
|
|
|
|
|
groupadd moxsubmit
|
|
|
|
install -m 2755 -o root -g moxsubmit mox /usr/sbin/sendmail
|
|
|
|
touch /etc/moxsubmit.conf
|
|
|
|
chown root:moxsubmit /etc/moxsubmit.conf
|
|
|
|
chmod 640 /etc/moxsubmit.conf
|
|
|
|
# edit /etc/moxsubmit.conf
|
|
|
|
|
|
|
|
|
|
|
|
usage: mox sendmail [-Fname] [ignoredflags] [-t] [<message]
|
|
|
|
|
|
|
|
# mox spf check
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox spf check domain ip
|
|
|
|
|
|
|
|
# mox spf lookup
|
|
|
|
|
|
|
|
Lookup the SPF record for the domain and print it.
|
|
|
|
|
|
|
|
usage: mox spf lookup domain
|
|
|
|
|
|
|
|
# mox spf parse
|
|
|
|
|
|
|
|
Parse the record as SPF record. If valid, nothing is printed.
|
|
|
|
|
|
|
|
usage: mox spf parse txtrecord
|
|
|
|
|
|
|
|
# mox tlsrpt lookup
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
usage: mox tlsrpt lookup domain
|
|
|
|
|
|
|
|
# mox tlsrpt parsereportmsg
|
|
|
|
|
|
|
|
Parse and print the TLSRPT in the message.
|
|
|
|
|
|
|
|
The report is printed in formatted JSON.
|
|
|
|
|
|
|
|
usage: mox tlsrpt parsereportmsg message ...
|
|
|
|
|
|
|
|
# mox version
|
|
|
|
|
|
|
|
Prints this mox version.
|
|
|
|
|
|
|
|
usage: mox version
|
|
|
|
*/
|
|
|
|
package main
|
|
|
|
|
|
|
|
// NOTE: DO NOT EDIT, this file is generated by gendoc.sh.
|