Make it easier to avoid permission issues when setting up maddy

1. Clarify that you need to manually create the user and group
when building from source. ./build.sh does not do that since
it is a packaging tool, not system configuration one.

2. Do not require "go" command to be present when running
./build.sh install. go installation may be user-specific and
unavailable when running with sudo.

3. Ease UMask restrictions. Allow group access.
This allows CLI commands to be run by any user in maddy group.

See #569.
This commit is contained in:
fox.cpp 2024-01-21 21:57:00 +03:00
parent a2f8916183
commit 28bdf6d33f
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
5 changed files with 32 additions and 12 deletions

View file

@ -34,17 +34,19 @@ $ git clone https://github.com/foxcpp/maddy.git
$ cd maddy
```
3. Select the appropriate version to build:
2. Select the appropriate version to build:
```
$ git checkout v0.7.0 # a specific release
$ git checkout master # next bugfix release
$ git checkout dev # next feature release
```
2. Build & install it
3. Build & install it
```
$ ./build.sh
# ./build.sh install
$ sudo ./build.sh install
```
3. Have fun!
4. Finish setup as described in [Setting up](../setting-up) (starting from System configuration).

View file

@ -246,6 +246,9 @@ storage account:
$ maddy imap-acct create postmaster@example.org
```
Note: to run `maddy` CLI commands, your user should be in the `maddy`
group. Alternatively, just use `sudo -u maddy`.
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".