doc: replace maddyctl with maddy

This commit is contained in:
Pouriya Jahanbakhsh 2022-10-13 07:09:55 +03:30 committed by Pouriya Jahanbakhsh
parent dbf14fa083
commit 46dcef4110
16 changed files with 51 additions and 77 deletions

2
.gitignore vendored
View file

@ -22,10 +22,8 @@ _testmain.go
# Compiled binaries # Compiled binaries
cmd/maddy/maddy cmd/maddy/maddy
cmd/maddyctl/maddyctl
cmd/maddy-*-helper/maddy-*-helper cmd/maddy-*-helper/maddy-*-helper
/maddy /maddy
/maddyctl
# Man pages # Man pages
docs/man/*.1 docs/man/*.1

View file

@ -22,7 +22,7 @@ RUN set -ex && \
apk upgrade --no-cache --available && \ apk upgrade --no-cache --available && \
apk --no-cache add ca-certificates apk --no-cache add ca-certificates
COPY --from=build-env /pkg/data/maddy.conf /data/maddy.conf COPY --from=build-env /pkg/data/maddy.conf /data/maddy.conf
COPY --from=build-env /pkg/usr/local/bin/maddy /pkg/usr/local/bin/maddyctl /bin/ COPY --from=build-env /pkg/usr/local/bin/maddy /bin/
EXPOSE 25 143 993 587 465 EXPOSE 25 143 993 587 465
VOLUME ["/data"] VOLUME ["/data"]

View file

@ -1,6 +1,6 @@
## maddy 0.3 - default configuration file (2020-05-31) ## maddy 0.3 - default configuration file (2020-05-31)
# Suitable for small-scale deployments. Uses its own format for local users DB, # Suitable for small-scale deployments. Uses its own format for local users DB,
# should be managed via maddyctl utility. # should be managed via maddy subcommands.
# #
# See tutorials at https://foxcpp.dev/maddy for guidance on typical # See tutorials at https://foxcpp.dev/maddy for guidance on typical
# configuration changes. # configuration changes.
@ -28,7 +28,7 @@ tls file /etc/maddy/certs/fullchain.pem /etc/maddy/certs/privkey.pem
# PAM, /etc/shadow file). # PAM, /etc/shadow file).
# #
# If table module supports it (sql_table does) - credentials can be managed # If table module supports it (sql_table does) - credentials can be managed
# using 'maddyctl creds' command. # using 'maddy creds' command.
auth.pass_table local_authdb { auth.pass_table local_authdb {
table sql_table { table sql_table {
@ -43,7 +43,7 @@ auth.pass_table local_authdb {
# also by SMTP & Submission endpoints for delivery of local messages. # also by SMTP & Submission endpoints for delivery of local messages.
# #
# IMAP accounts, mailboxes and all message metadata can be inspected using # IMAP accounts, mailboxes and all message metadata can be inspected using
# imap-* subcommands of maddyctl utility. # imap-* subcommands of maddy.
storage.imapsql local_mailboxes { storage.imapsql local_mailboxes {
driver sqlite3 driver sqlite3

View file

@ -1,24 +0,0 @@
# AppArmor profile for maddyctl management utility.
# vim:syntax=apparmor:ts=2:sw=2:et
#include <tunables/global>
profile dev.foxcpp.maddyctl /usr{/local,}/bin/maddyctl {
#include <abstractions/base>
/etc/resolv.conf r,
/proc/sys/net/core/somaxconn r,
/sys/kernel/mm/transparent_hugepage/hpage_pmd_size r,
deny ptrace,
network unix,
deny unix,
/etc/maddy/** r,
owner /run/maddy/ rw,
owner /run/maddy/** rwkl,
owner /var/lib/maddy/ rw,
owner /var/lib/maddy/** rwk,
owner /var/lib/maddy/**.db-{wal,shm} rmk,
#include if exists <local/dev.foxcpp.maddyctl>
}

View file

@ -47,7 +47,7 @@ docker run --rm -it -v maddydata:/data foxcpp/maddy:0.6.0 imap-acct create foxcp
Use the same image version as the running server. Things may break badly Use the same image version as the running server. Things may break badly
otherwise. otherwise.
Note that, if you modify messages using maddyctl while the server is running - Note that, if you modify messages using maddy subcommands while the server is running -
you must ensure that /tmp from the server is accessible for the management you must ensure that /tmp from the server is accessible for the management
command. One way to it is to run it using `docker exec` instead of `docker run`: command. One way to it is to run it using `docker exec` instead of `docker run`:
``` ```

View file

@ -28,12 +28,12 @@ single 1 GiB of RAM and disk space.
https://github.com/foxcpp/maddy/issues/243#issuecomment-655694512 https://github.com/foxcpp/maddy/issues/243#issuecomment-655694512
## maddyctl prints a "permission denied" error ## maddy command prints a "permission denied" error
Run maddyctl under the same user as maddy itself. Run maddy command under the same user as maddy itself.
E.g. E.g.
``` ```
sudo -u maddy maddyctl creds ... sudo -u maddy maddy creds ...
``` ```
## How maddy compares to MailCow or Mail-In-The-Box? ## How maddy compares to MailCow or Mail-In-The-Box?

View file

@ -60,8 +60,8 @@ altogether since it is not currently supported.
After that you can create accounts without specifying the domain part: After that you can create accounts without specifying the domain part:
``` ```
maddyctl imap-acct create foxcpp maddy imap-acct create foxcpp
maddyctl creds create foxcpp maddy creds create foxcpp
``` ```
And authenticate using "foxcpp" in email clients. And authenticate using "foxcpp" in email clients.

View file

@ -33,12 +33,12 @@ smtp tcp://0.0.0.0:587 {
pass\_table expects the used table to contain certain structured values with pass\_table expects the used table to contain certain structured values with
hash algorithm name, salt and other necessary parameters. hash algorithm name, salt and other necessary parameters.
You should use 'maddyctl hash' command to generate suitable values. You should use 'maddy hash' command to generate suitable values.
See 'maddyctl hash --help' for details. See 'maddy hash --help' for details.
## maddyctl creds ## maddy creds
If the underlying table is a "mutable" table (see maddy-tables(5)) then If the underlying table is a "mutable" table (see maddy-tables(5)) then
the 'maddyctl creds' command can be used to modify the underlying tables the 'maddy creds' command can be used to modify the underlying tables
via pass\_table module. It will act on a "local credentials store" and will write via pass\_table module. It will act on a "local credentials store" and will write
appropriate hash values to the table. appropriate hash values to the table.

View file

@ -35,7 +35,7 @@ Your options are:
Available on [GitHub](https://github.com/foxcpp/maddy/releases) or Available on [GitHub](https://github.com/foxcpp/maddy/releases) or
[maddy.email/builds](https://maddy.email/builds/). [maddy.email/builds](https://maddy.email/builds/).
The tarball includes maddy and maddyctl executables you can The tarball includes maddy executable you can
copy into /usr/local/bin as well as systemd unit file you can copy into /usr/local/bin as well as systemd unit file you can
use on systemd-based distributions for automatic startup and service use on systemd-based distributions for automatic startup and service
supervision. You should also create "maddy" user and group. supervision. You should also create "maddy" user and group.
@ -222,7 +222,7 @@ Example of a valid record:
_25._tcp.mx1.example.org. TLSA 3 1 1 7f59d873a70e224b184c95a4eb54caa9621e47d48b4a25d312d83d96e3498238 _25._tcp.mx1.example.org. TLSA 3 1 1 7f59d873a70e224b184c95a4eb54caa9621e47d48b4a25d312d83d96e3498238
``` ```
## User accounts and maddyctl ## User accounts and maddy command
A mail server is useless without mailboxes, right? Unlike software like postfix A mail server is useless without mailboxes, right? Unlike software like postfix
and dovecot, maddy uses "virtual users" by default, meaning it does not care or and dovecot, maddy uses "virtual users" by default, meaning it does not care or
@ -230,10 +230,10 @@ know about system users.
IMAP mailboxes ("accounts") and authentication credentials are kept separate. IMAP mailboxes ("accounts") and authentication credentials are kept separate.
To register user credentials, use `maddyctl creds create` command. To register user credentials, use `maddy creds create` command.
Like that: Like that:
``` ```
$ maddyctl creds create postmaster@example.org $ maddy creds create postmaster@example.org
``` ```
Note the username is a e-mail address. This is required as username is used to Note the username is a e-mail address. This is required as username is used to
@ -243,14 +243,14 @@ described here).
After registering the user credentials, you also need to create a local After registering the user credentials, you also need to create a local
storage account: storage account:
``` ```
$ maddyctl imap-acct create postmaster@example.org $ maddy imap-acct create postmaster@example.org
``` ```
That is it. Now you have your first e-mail address. when authenticating using That is it. Now you have your first e-mail address. when authenticating using
your e-mail client, do not forget the username is "postmaster@example.org", not your e-mail client, do not forget the username is "postmaster@example.org", not
just "postmaster". just "postmaster".
You may find running `maddyctl creds --help` and `maddyctl imap-acct --help` You may find running `maddy creds --help` and `maddy imap-acct --help`
useful to learn about other commands. Note that IMAP accounts and credentials useful to learn about other commands. Note that IMAP accounts and credentials
are managed separately yet usernames should match by default for things to are managed separately yet usernames should match by default for things to
work. work.

View file

@ -74,7 +74,7 @@ pass_table local_authdb {
} }
``` ```
6. Use `maddyctl creds create ACCOUNT_NAME` to add credentials to `pass_table` 6. Use `maddy creds create ACCOUNT_NAME` to add credentials to `pass_table`
store. store.
7. Start the server back. 7. Start the server back.

View file

@ -33,7 +33,7 @@ type PlainAuth interface {
AuthPlain(username, password string) error AuthPlain(username, password string) error
} }
// PlainUserDB is a local credentials store that can be managed using maddyctl // PlainUserDB is a local credentials store that can be managed using maddy command
// utility. // utility.
type PlainUserDB interface { type PlainUserDB interface {
PlainAuth PlainAuth

View file

@ -192,7 +192,7 @@ type SpecialUseUser interface {
func imapAcctList(be module.Storage, ctx *cli.Context) error { func imapAcctList(be module.Storage, ctx *cli.Context) error {
mbe, ok := be.(module.ManageableStorage) mbe, ok := be.(module.ManageableStorage)
if !ok { if !ok {
return cli.Exit("Error: storage backend does not support accounts management using maddyctl", 2) return cli.Exit("Error: storage backend does not support accounts management using maddy command", 2)
} }
list, err := mbe.ListIMAPAccts() list, err := mbe.ListIMAPAccts()
@ -213,7 +213,7 @@ func imapAcctList(be module.Storage, ctx *cli.Context) error {
func imapAcctCreate(be module.Storage, ctx *cli.Context) error { func imapAcctCreate(be module.Storage, ctx *cli.Context) error {
mbe, ok := be.(module.ManageableStorage) mbe, ok := be.(module.ManageableStorage)
if !ok { if !ok {
return cli.Exit("Error: storage backend does not support accounts management using maddyctl", 2) return cli.Exit("Error: storage backend does not support accounts management using maddy command", 2)
} }
username := ctx.Args().First() username := ctx.Args().First()
@ -274,7 +274,7 @@ func imapAcctCreate(be module.Storage, ctx *cli.Context) error {
func imapAcctRemove(be module.Storage, ctx *cli.Context) error { func imapAcctRemove(be module.Storage, ctx *cli.Context) error {
mbe, ok := be.(module.ManageableStorage) mbe, ok := be.(module.ManageableStorage)
if !ok { if !ok {
return cli.Exit("Error: storage backend does not support accounts management using maddyctl", 2) return cli.Exit("Error: storage backend does not support accounts management using maddy command", 2)
} }
username := ctx.Args().First() username := ctx.Args().First()

View file

@ -397,8 +397,8 @@ func (store *Storage) Close() error {
store.Back.Close() store.Back.Close()
// Wait for 'updates replicate' goroutine to actually stop so we will send // Wait for 'updates replicate' goroutine to actually stop so we will send
// all updates before shuting down (this is especially important for // all updates before shutting down (this is especially important for
// maddyctl). // maddy subcommands).
if store.updPipe != nil { if store.updPipe != nil {
close(store.outboundUpds) close(store.outboundUpds)
<-store.updPushStop <-store.updPushStop

View file

@ -19,10 +19,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
// Package updatepipe implements utilities for serialization and transport of // Package updatepipe implements utilities for serialization and transport of
// IMAP update objects between processes and machines. // IMAP update objects between processes and machines.
// //
// Its main goal is provide maddyctl with ability to properly notify the server // Its main goal is provide maddy command with ability to properly notify the
// about changes without relying on it to coordinate access in the first place // server about changes without relying on it to coordinate access in the
// (so maddyctl can work without a running server or with a broken server // first place (so maddy command can work without a running server or with a
// instance). // broken server instance).
// //
// Additionally, it can be used to transfer IMAP updates between replicated // Additionally, it can be used to transfer IMAP updates between replicated
// nodes. // nodes.

View file

@ -1,6 +1,6 @@
## Maddy Mail Server - default configuration file (2022-06-18) ## Maddy Mail Server - default configuration file (2022-06-18)
# Suitable for small-scale deployments. Uses its own format for local users DB, # Suitable for small-scale deployments. Uses its own format for local users DB,
# should be managed via maddyctl utility. # should be managed via maddy subcommands.
# #
# See tutorials at https://maddy.email for guidance on typical # See tutorials at https://maddy.email for guidance on typical
# configuration changes. # configuration changes.
@ -25,7 +25,7 @@ tls file /etc/maddy/certs/$(hostname)/fullchain.pem /etc/maddy/certs/$(hostname)
# PAM, /etc/shadow file). # PAM, /etc/shadow file).
# #
# If table module supports it (sql_table does) - credentials can be managed # If table module supports it (sql_table does) - credentials can be managed
# using 'maddyctl creds' command. # using 'maddy creds' command.
auth.pass_table local_authdb { auth.pass_table local_authdb {
table sql_table { table sql_table {
@ -40,7 +40,7 @@ auth.pass_table local_authdb {
# also by SMTP & Submission endpoints for delivery of local messages. # also by SMTP & Submission endpoints for delivery of local messages.
# #
# IMAP accounts, mailboxes and all message metadata can be inspected using # IMAP accounts, mailboxes and all message metadata can be inspected using
# imap-* subcommands of maddyctl utility. # imap-* subcommands of maddy.
storage.imapsql local_mailboxes { storage.imapsql local_mailboxes {
driver sqlite3 driver sqlite3

View file

@ -1,7 +1,7 @@
## Maddy Mail Server - default configuration file (2022-06-18) ## Maddy Mail Server - default configuration file (2022-06-18)
## This is the copy of maddy.conf with changes necessary to run it in Docker. ## This is the copy of maddy.conf with changes necessary to run it in Docker.
# Suitable for small-scale deployments. Uses its own format for local users DB, # Suitable for small-scale deployments. Uses its own format for local users DB,
# should be managed via maddyctl utility. # should be managed via maddy subcommands.
# #
# See tutorials at https://maddy.email for guidance on typical # See tutorials at https://maddy.email for guidance on typical
# configuration changes. # configuration changes.
@ -26,7 +26,7 @@ tls file /data/tls/fullchain.pem /data/tls/privkey.pem
# PAM, /etc/shadow file). # PAM, /etc/shadow file).
# #
# If table module supports it (sql_table does) - credentials can be managed # If table module supports it (sql_table does) - credentials can be managed
# using 'maddyctl creds' command. # using 'maddy creds' command.
auth.pass_table local_authdb { auth.pass_table local_authdb {
table sql_table { table sql_table {
@ -41,7 +41,7 @@ auth.pass_table local_authdb {
# also by SMTP & Submission endpoints for delivery of local messages. # also by SMTP & Submission endpoints for delivery of local messages.
# #
# IMAP accounts, mailboxes and all message metadata can be inspected using # IMAP accounts, mailboxes and all message metadata can be inspected using
# imap-* subcommands of maddyctl utility. # imap-* subcommands of maddy.
storage.imapsql local_mailboxes { storage.imapsql local_mailboxes {
driver sqlite3 driver sqlite3