mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
doc: replace maddyctl
with maddy
This commit is contained in:
parent
dbf14fa083
commit
46dcef4110
16 changed files with 51 additions and 77 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -22,10 +22,8 @@ _testmain.go
|
|||
|
||||
# Compiled binaries
|
||||
cmd/maddy/maddy
|
||||
cmd/maddyctl/maddyctl
|
||||
cmd/maddy-*-helper/maddy-*-helper
|
||||
/maddy
|
||||
/maddyctl
|
||||
|
||||
# Man pages
|
||||
docs/man/*.1
|
||||
|
|
|
@ -22,7 +22,7 @@ RUN set -ex && \
|
|||
apk upgrade --no-cache --available && \
|
||||
apk --no-cache add ca-certificates
|
||||
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
|
||||
VOLUME ["/data"]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## maddy 0.3 - default configuration file (2020-05-31)
|
||||
# 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
|
||||
# configuration changes.
|
||||
|
@ -28,7 +28,7 @@ tls file /etc/maddy/certs/fullchain.pem /etc/maddy/certs/privkey.pem
|
|||
# PAM, /etc/shadow file).
|
||||
#
|
||||
# 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 {
|
||||
table sql_table {
|
||||
|
@ -43,7 +43,7 @@ auth.pass_table local_authdb {
|
|||
# also by SMTP & Submission endpoints for delivery of local messages.
|
||||
#
|
||||
# IMAP accounts, mailboxes and all message metadata can be inspected using
|
||||
# imap-* subcommands of maddyctl utility.
|
||||
# imap-* subcommands of maddy.
|
||||
|
||||
storage.imapsql local_mailboxes {
|
||||
driver sqlite3
|
||||
|
|
24
dist/apparmor/dev.foxcpp.maddyctl
vendored
24
dist/apparmor/dev.foxcpp.maddyctl
vendored
|
@ -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>
|
||||
}
|
|
@ -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
|
||||
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
|
||||
command. One way to it is to run it using `docker exec` instead of `docker run`:
|
||||
```
|
||||
|
|
|
@ -28,12 +28,12 @@ single 1 GiB of RAM and disk space.
|
|||
|
||||
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.
|
||||
```
|
||||
sudo -u maddy maddyctl creds ...
|
||||
sudo -u maddy maddy creds ...
|
||||
```
|
||||
|
||||
## How maddy compares to MailCow or Mail-In-The-Box?
|
||||
|
|
|
@ -60,8 +60,8 @@ altogether since it is not currently supported.
|
|||
|
||||
After that you can create accounts without specifying the domain part:
|
||||
```
|
||||
maddyctl imap-acct create foxcpp
|
||||
maddyctl creds create foxcpp
|
||||
maddy imap-acct create foxcpp
|
||||
maddy creds create foxcpp
|
||||
```
|
||||
And authenticate using "foxcpp" in email clients.
|
||||
|
||||
|
|
|
@ -33,12 +33,12 @@ smtp tcp://0.0.0.0:587 {
|
|||
pass\_table expects the used table to contain certain structured values with
|
||||
hash algorithm name, salt and other necessary parameters.
|
||||
|
||||
You should use 'maddyctl hash' command to generate suitable values.
|
||||
See 'maddyctl hash --help' for details.
|
||||
You should use 'maddy hash' command to generate suitable values.
|
||||
See 'maddy hash --help' for details.
|
||||
|
||||
## maddyctl creds
|
||||
## maddy creds
|
||||
|
||||
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
|
||||
appropriate hash values to the table.
|
||||
|
|
|
@ -35,7 +35,7 @@ Your options are:
|
|||
Available on [GitHub](https://github.com/foxcpp/maddy/releases) or
|
||||
[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
|
||||
use on systemd-based distributions for automatic startup and service
|
||||
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
|
||||
```
|
||||
|
||||
## User accounts and maddyctl
|
||||
## User accounts and maddy command
|
||||
|
||||
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
|
||||
|
@ -230,10 +230,10 @@ know about system users.
|
|||
|
||||
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:
|
||||
```
|
||||
$ 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
|
||||
|
@ -243,14 +243,14 @@ described here).
|
|||
After registering the user credentials, you also need to create a local
|
||||
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
|
||||
your e-mail client, do not forget the username is "postmaster@example.org", not
|
||||
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
|
||||
are managed separately yet usernames should match by default for things to
|
||||
work.
|
||||
|
|
|
@ -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.
|
||||
|
||||
7. Start the server back.
|
||||
|
|
|
@ -33,7 +33,7 @@ type PlainAuth interface {
|
|||
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.
|
||||
type PlainUserDB interface {
|
||||
PlainAuth
|
||||
|
|
|
@ -192,7 +192,7 @@ type SpecialUseUser interface {
|
|||
func imapAcctList(be module.Storage, ctx *cli.Context) error {
|
||||
mbe, ok := be.(module.ManageableStorage)
|
||||
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()
|
||||
|
@ -213,7 +213,7 @@ func imapAcctList(be module.Storage, ctx *cli.Context) error {
|
|||
func imapAcctCreate(be module.Storage, ctx *cli.Context) error {
|
||||
mbe, ok := be.(module.ManageableStorage)
|
||||
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()
|
||||
|
@ -274,7 +274,7 @@ func imapAcctCreate(be module.Storage, ctx *cli.Context) error {
|
|||
func imapAcctRemove(be module.Storage, ctx *cli.Context) error {
|
||||
mbe, ok := be.(module.ManageableStorage)
|
||||
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()
|
||||
|
|
|
@ -397,8 +397,8 @@ func (store *Storage) Close() error {
|
|||
store.Back.Close()
|
||||
|
||||
// Wait for 'updates replicate' goroutine to actually stop so we will send
|
||||
// all updates before shuting down (this is especially important for
|
||||
// maddyctl).
|
||||
// all updates before shutting down (this is especially important for
|
||||
// maddy subcommands).
|
||||
if store.updPipe != nil {
|
||||
close(store.outboundUpds)
|
||||
<-store.updPushStop
|
||||
|
|
|
@ -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
|
||||
// IMAP update objects between processes and machines.
|
||||
//
|
||||
// Its main goal is provide maddyctl with ability to properly notify the server
|
||||
// about changes without relying on it to coordinate access in the first place
|
||||
// (so maddyctl can work without a running server or with a broken server
|
||||
// instance).
|
||||
// Its main goal is provide maddy command with ability to properly notify the
|
||||
// server about changes without relying on it to coordinate access in the
|
||||
// first place (so maddy command can work without a running server or with a
|
||||
// broken server instance).
|
||||
//
|
||||
// Additionally, it can be used to transfer IMAP updates between replicated
|
||||
// nodes.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Maddy Mail Server - default configuration file (2022-06-18)
|
||||
# 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
|
||||
# configuration changes.
|
||||
|
@ -25,7 +25,7 @@ tls file /etc/maddy/certs/$(hostname)/fullchain.pem /etc/maddy/certs/$(hostname)
|
|||
# PAM, /etc/shadow file).
|
||||
#
|
||||
# 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 {
|
||||
table sql_table {
|
||||
|
@ -40,7 +40,7 @@ auth.pass_table local_authdb {
|
|||
# also by SMTP & Submission endpoints for delivery of local messages.
|
||||
#
|
||||
# IMAP accounts, mailboxes and all message metadata can be inspected using
|
||||
# imap-* subcommands of maddyctl utility.
|
||||
# imap-* subcommands of maddy.
|
||||
|
||||
storage.imapsql local_mailboxes {
|
||||
driver sqlite3
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
## Maddy Mail Server - default configuration file (2022-06-18)
|
||||
## 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,
|
||||
# should be managed via maddyctl utility.
|
||||
# should be managed via maddy subcommands.
|
||||
#
|
||||
# See tutorials at https://maddy.email for guidance on typical
|
||||
# configuration changes.
|
||||
|
@ -26,7 +26,7 @@ tls file /data/tls/fullchain.pem /data/tls/privkey.pem
|
|||
# PAM, /etc/shadow file).
|
||||
#
|
||||
# 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 {
|
||||
table sql_table {
|
||||
|
@ -41,7 +41,7 @@ auth.pass_table local_authdb {
|
|||
# also by SMTP & Submission endpoints for delivery of local messages.
|
||||
#
|
||||
# IMAP accounts, mailboxes and all message metadata can be inspected using
|
||||
# imap-* subcommands of maddyctl utility.
|
||||
# imap-* subcommands of maddy.
|
||||
|
||||
storage.imapsql local_mailboxes {
|
||||
driver sqlite3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue