9 Commits

Author SHA1 Message Date
3wc
23309a1a80 chore: publish 3.0.1+2024.06.37 release
All checks were successful
continuous-integration/drone/tag Build is passing
2025-07-26 21:26:49 +01:00
3wc
86f63e65c3 chore: publish 3.0.0+2024.06.27 release
All checks were successful
continuous-integration/drone/tag Build is passing
2025-01-15 12:43:34 -05:00
3wc
60f0f8ba73 Revert "wip: experimental fetchmail support"
This reverts commit 1437715364.
2025-01-15 12:37:38 -05:00
3wc
7b5a6979f2 Add PORTS setting, to reënable STARTTLS 2025-01-15 12:33:58 -05:00
f95b2e687d Update .drone.yml 2025-01-08 10:09:13 -08:00
1437715364 wip: experimental fetchmail support 2025-01-08 10:01:45 -08:00
3wc
a0b1794920 chore: publish 2.0.0+2024.06.27 release
Some checks failed
continuous-integration/drone/tag Build is failing
2025-01-08 12:41:48 -05:00
3wc
21868cf5e9 Update to latest Mailu 2025-01-08 12:41:02 -05:00
3wc
e471ec6fd8 chore: publish 1.1.1+2.0.41 release
All checks were successful
continuous-integration/drone/tag Build is passing
2024-05-11 13:02:05 -03:00
5 changed files with 36 additions and 11 deletions

View File

@ -10,7 +10,7 @@ steps:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag

View File

@ -31,6 +31,9 @@ TRAEFIK_STACK_NAME=traefik_example_com
# OPTIONAL SETTINGS #
###############################################################################
# Uncomment this to reënable STARTTLS, although beware the health warnings here: https://nostarttls.secvuln.info/
#PORTS=25,80,443,465,993,995,4190,110,143,587
# Name of the instance, displayed in the web UI
SITENAME=mymail

View File

@ -25,11 +25,28 @@ host.
4. `abra app config YOURAPPDOMAIN` - be sure to change `$WEB_DOMAIN` to something that resolves to
your Docker swarm box
5. `abra app deploy YOURAPPDOMAIN`
9. Create initial user:
6. Create initial user:
```
abra app run YOURDOMAIN admin flask mailu admin admin YOURDOMAIN YOURPASSWORD
```
## Upgrading the recipe
**NOTE** This section is only intended for [recipe maintainers][maintainers]
Minor/patch updates usually work OK with `abra recipe upgrade` and friends.
For major updates:
1. Go to https://setup.mailu.io/ and generate a new config
2. Download the new config and compare it to `compose.yml`. Pay attention to:
- New / removed services
- Added/removed config options
- Changes to networking
3. Test upgrading from the previous version to the new version
4. `abra recipe sync` / `abra recipe release` as normal
[Mailu]: https://mailu.io/
[abra]: https://git.autonomic.zone/autonomic-cooperative/abra
[compose-traefik]: https://git.autonomic.zone/coop-cloud/traefik
[maintainers]: https://docs.coopcloud.tech/maintainers/

View File

@ -51,10 +51,11 @@ x-environment:
- WELCOME_BODY
- WELCOME_SUBJECT
- TZ
- PORTS
services:
app:
image: ghcr.io/mailu/nginx:2.0.34
image: ghcr.io/mailu/nginx:2024.06.37
logging:
driver: json-file
networks:
@ -95,15 +96,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.1.0+2.0.34"
- "coop-cloud.${STACK_NAME}.version=3.0.1+2024.06.37"
db:
image: redis:7.2.3-alpine
image: redis:8.0.3-alpine
volumes:
- "redis:/data"
admin:
image: ghcr.io/mailu/admin:2.0.34
image: ghcr.io/mailu/admin:2024.06.37
environment: *default-env
healthcheck:
disable: true
@ -116,7 +117,7 @@ services:
- default
imap:
image: ghcr.io/mailu/dovecot:2.0.34
image: ghcr.io/mailu/dovecot:2024.06.37
environment: *default-env
secrets:
- secret_key
@ -130,7 +131,7 @@ services:
- default
smtp:
image: ghcr.io/mailu/postfix:2.0.34
image: ghcr.io/mailu/postfix:2024.06.37
environment: *default-env
secrets:
- secret_key
@ -142,7 +143,7 @@ services:
- app
antispam:
image: ghcr.io/mailu/rspamd:2.0.34
image: ghcr.io/mailu/rspamd:2024.06.37
environment: *default-env
secrets:
- secret_key
@ -153,7 +154,8 @@ services:
disable: true
webmail:
image: ghcr.io/mailu/webmail:2.0.34
image: ghcr.io/mailu/webmail:2024.06.37
# entrypoint: "tail -f /dev/null"
environment: *default-env
networks:
- default
@ -167,7 +169,7 @@ services:
disable: true
certdumper:
image: ldez/traefik-certs-dumper:v2.8.1
image: ldez/traefik-certs-dumper:v2.10.0
entrypoint: sh -c '
apk add jq
; while ! [ -e /traefik/${ACME_JSON} ]

3
release/3.0.0+2024.06.27 Normal file
View File

@ -0,0 +1,3 @@
ALERTA! 🚨 Mailu has dropped support for STARTTLS by default see details here: https://mailu.io/2024.06/releases.html#starttls-ports-disabled-by-default
If you are relying on STARTTLS, e.g. SMTP port 587, please copy the example `PORTS` variable from `~/.abra/recipes/mailu/.env.example` BEFORE deploying.