mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +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
|
@ -5,7 +5,7 @@ Official Docker image is available from Docker Hub.
|
|||
It expects configuration file to be available at /data/maddy.conf.
|
||||
|
||||
If /data is a Docker volume, then default configuration will be placed there
|
||||
automatically. If it is used, then MADDY_HOSTNAME, MADDY_DOMAIN environment
|
||||
automatically. If it is used, then MADDY_HOSTNAME, MADDY_DOMAIN environment
|
||||
variables control the host name and primary domain for the server. TLS
|
||||
certificate should be placed in /data/tls/fullchain.pem, private key in
|
||||
/data/tls/privkey.pem
|
||||
|
@ -15,8 +15,8 @@ DKIM keys are generated in /data/dkim_keys directory.
|
|||
## Image tags
|
||||
|
||||
- `latest` - A latest stable release. May contain breaking changes.
|
||||
- `X.Y` - A specific feature branch, it is recommended to use these tags to
|
||||
receive bugfixes without the risk of feature-related regressions or breaking
|
||||
- `X.Y` - A specific feature branch, it is recommended to use these tags to
|
||||
receive bugfixes without the risk of feature-related regressions or breaking
|
||||
changes.
|
||||
- `X.Y.Z` - A specific stable release
|
||||
|
||||
|
@ -30,8 +30,8 @@ All standard ports, as described in maddy docs.
|
|||
|
||||
## Volumes
|
||||
|
||||
`/data` - maddy state directory. Databases, queues, etc are stored here. You
|
||||
might want to mount a named volume there. The main configuration file is stored
|
||||
`/data` - maddy state directory. Databases, queues, etc are stored here. You
|
||||
might want to mount a named volume there. The main configuration file is stored
|
||||
here too (`/data/maddy.conf`).
|
||||
|
||||
## Management utility
|
||||
|
@ -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`:
|
||||
```
|
||||
|
@ -70,6 +70,6 @@ docker run \
|
|||
foxcpp/maddy:0.6
|
||||
```
|
||||
|
||||
It will fail on first startup. Copy TLS certificate to /data/tls/fullchain.pem
|
||||
and key to /data/tls/privkey.pem. Run the server again. Finish DNS configuration
|
||||
(DKIM keys, etc) as described in [tutorials/setting-up/](tutorials/setting-up/).
|
||||
It will fail on first startup. Copy TLS certificate to /data/tls/fullchain.pem
|
||||
and key to /data/tls/privkey.pem. Run the server again. Finish DNS configuration
|
||||
(DKIM keys, etc) as described in [tutorials/setting-up/](tutorials/setting-up/).
|
||||
|
|
14
docs/faq.md
14
docs/faq.md
|
@ -5,7 +5,7 @@
|
|||
Unfortunately, GMail policies are opaque so we cannot tell why this happens.
|
||||
|
||||
Verify that you have a rDNS record set for the IP used
|
||||
by sender server. Also some IPs may just happen to
|
||||
by sender server. Also some IPs may just happen to
|
||||
have bad reputation - check it with various DNSBLs. In this
|
||||
case you do not have much of a choice but to replace it.
|
||||
|
||||
|
@ -21,19 +21,19 @@ all outbound messages via a "smart-host".
|
|||
|
||||
## What is resource usage of maddy?
|
||||
|
||||
For a small personal server, you do not need much more than a
|
||||
For a small personal server, you do not need much more than a
|
||||
single 1 GiB of RAM and disk space.
|
||||
|
||||
## How to setup a catchall address?
|
||||
|
||||
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?
|
||||
|
@ -116,4 +116,4 @@ of bugs in one component.
|
|||
|
||||
Besides, you are not required to use a single process, it is easy to launch
|
||||
maddy with a non-default configuration path and connect multiple instances
|
||||
together using off-the-shelf protocols.
|
||||
together using off-the-shelf protocols.
|
||||
|
|
|
@ -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.
|
||||
|
@ -215,14 +215,14 @@ mx: mx2.example.org
|
|||
```
|
||||
|
||||
It is also recommended to set a TLSA (DANE) record.
|
||||
Use https://www.huque.com/bin/gen_tlsa to generate one.
|
||||
Use https://www.huque.com/bin/gen_tlsa to generate one.
|
||||
Set port to 25, Transport Protocol to "tcp" and Domain Name to **the MX hostname**.
|
||||
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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue