Compare commits

...

5 Commits

Author SHA1 Message Date
3wc e471ec6fd8 chore: publish 1.1.1+2.0.41 release
continuous-integration/drone/tag Build is passing Details
2024-05-11 13:02:05 -03:00
knoflook 976b85b701 chore: publish 1.1.0+2.0.34 release 2023-11-27 13:46:28 +01:00
Cassowary 2cd5446ca2 Fix admin user command line to be in the right order 2023-10-07 21:19:50 -07:00
3wc 16bd66c208 Drop config for accessing mailman network, not needed 2023-10-02 22:25:39 +01:00
3wc 68fd4e6a1b virtual_mailbox_maps instead of relay_domains..
..to get DKIM signing working for mailman
2023-10-01 16:44:16 +01:00
6 changed files with 30 additions and 18 deletions

View File

@ -27,7 +27,7 @@ host.
5. `abra app deploy YOURAPPDOMAIN`
9. Create initial user:
```
abra app YOURAPPDOMAIN run admin flask mailu admin admin YOURDOMAIN YOURPASSWORD
abra app run YOURDOMAIN admin flask mailu admin admin YOURDOMAIN YOURPASSWORD
```
[Mailu]: https://mailu.io/

View File

@ -1,3 +1,3 @@
export CERTDUMPER_POST_VERSION=v1
export POSTFIX_OVERRIDE_VERSION=v15
export POSTFIX_OVERRIDE_VERSION=v17
export SENDER_LOGIN_VERSIONS=v2

View File

@ -10,18 +10,12 @@ services:
- MAILMAN_POSTFIX_OVERRIDES
networks:
- default
- shared_mailman_network
volumes:
- "shared-mailman-core:/opt/mailman/"
configs:
- source: postfix_override
target: /overrides/postfix.cf
networks:
shared_mailman_network:
external: true
name: ${MAILMAN_CORE_NETWORK}
volumes:
# https://git.autonomic.zone/coop-cloud/mailman3/src/branch/master/compose.yml
shared-mailman-core:

View File

@ -54,7 +54,7 @@ x-environment:
services:
app:
image: ghcr.io/mailu/nginx:2.0.23
image: ghcr.io/mailu/nginx:2.0.41
logging:
driver: json-file
networks:
@ -95,15 +95,15 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "coop-cloud.${STACK_NAME}.version=1.0.2+2.0.23"
- "coop-cloud.${STACK_NAME}.version=1.1.1+2.0.41"
db:
image: redis:7.2.0-alpine
image: redis:7.2.4-alpine
volumes:
- "redis:/data"
admin:
image: ghcr.io/mailu/admin:2.0.23
image: ghcr.io/mailu/admin:2.0.41
environment: *default-env
healthcheck:
disable: true
@ -116,7 +116,7 @@ services:
- default
imap:
image: ghcr.io/mailu/dovecot:2.0.23
image: ghcr.io/mailu/dovecot:2.0.41
environment: *default-env
secrets:
- secret_key
@ -130,7 +130,7 @@ services:
- default
smtp:
image: ghcr.io/mailu/postfix:2.0.23
image: ghcr.io/mailu/postfix:2.0.41
environment: *default-env
secrets:
- secret_key
@ -142,7 +142,7 @@ services:
- app
antispam:
image: ghcr.io/mailu/rspamd:2.0.23
image: ghcr.io/mailu/rspamd:2.0.41
environment: *default-env
secrets:
- secret_key
@ -153,7 +153,7 @@ services:
disable: true
webmail:
image: ghcr.io/mailu/webmail:2.0.23
image: ghcr.io/mailu/webmail:2.0.41
environment: *default-env
networks:
- default
@ -167,7 +167,7 @@ services:
disable: true
certdumper:
image: ldez/traefik-certs-dumper:v2.8.1
image: ldez/traefik-certs-dumper:v2.8.3
entrypoint: sh -c '
apk add jq
; while ! [ -e /traefik/${ACME_JSON} ]

View File

@ -10,9 +10,9 @@
unknown_local_recipient_reject_code = 550
owner_request_special = no
virtual_mailbox_maps = regexp:/opt/mailman/var/data/postfix_lmtp, \${podop}mailbox
transport_maps = regexp:/opt/mailman/var/data/postfix_lmtp \${podop}transport
local_recipient_maps = regexp:/opt/mailman/var/data/postfix_lmtp
relay_domains = regexp:/opt/mailman/var/data/postfix_domains \${podop}transport
{{ end }}
{{ if eq (env "SENDER_LOGINS_POSTFIX_OVERRIDES") "1" }}
# https://github.com/Mailu/Mailu/issues/1096

18
release/1.1.0+2.0.34 Normal file
View File

@ -0,0 +1,18 @@
# Secret key
The secret key is now stored as a docker secret instead of a variable in the
env file. You need to insert it by running:
`abra app secret insert <your mailu app> secret_key v1 <SECRETKEYHERE>`
and you can remove `SECRET_KEY` from your config file.
# `DOMAIN` is now `MAIL_DOMAIN`
This is important! If your main e-mail domain is something else than the
domain you are reaching the web interface at, you need to make changes.
I.e. in our setup we have `autonomic.zone` pointing an A record at some server
and `mail.autonomic.zone` is a separate server, and MX records are pointing
to the server at `mail.autonomic.zone`.
In this case:
- `DOMAIN` should be `mail.autonomic.zone` - this is what traefik will use to
provision a certificate
- `MAIL_DOMAIN` should be `autonomic.zone`