Compare commits

..
4 changed files with 26 additions and 10 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ steps:
from_secret: drone_abra-bot_token from_secret: drone_abra-bot_token
fork: true fork: true
repositories: repositories:
- coop-cloud/auto-recipes-catalogue-json - toolshed/auto-recipes-catalogue-json
trigger: trigger:
event: tag event: tag
+3
View File
@@ -31,6 +31,9 @@ TRAEFIK_STACK_NAME=traefik_example_com
# OPTIONAL SETTINGS # # 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 # Name of the instance, displayed in the web UI
SITENAME=mymail SITENAME=mymail
+19 -9
View File
@@ -51,10 +51,11 @@ x-environment:
- WELCOME_BODY - WELCOME_BODY
- WELCOME_SUBJECT - WELCOME_SUBJECT
- TZ - TZ
- PORTS
services: services:
app: app:
image: ghcr.io/mailu/nginx:2024.06.27 image: ghcr.io/mailu/nginx:2024.06.52
logging: logging:
driver: json-file driver: json-file
networks: networks:
@@ -95,15 +96,15 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)" - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "coop-cloud.${STACK_NAME}.version=2.0.0+2024.06.27" - "coop-cloud.${STACK_NAME}.version=3.0.2+2024.06.52"
db: db:
image: redis:7.4.1-alpine image: redis:8.0.6-alpine
volumes: volumes:
- "redis:/data" - "redis:/data"
admin: admin:
image: ghcr.io/mailu/admin:2024.06.27 image: ghcr.io/mailu/admin:2024.06.52
environment: *default-env environment: *default-env
healthcheck: healthcheck:
disable: true disable: true
@@ -114,9 +115,13 @@ services:
- "mailu:/data" - "mailu:/data"
networks: networks:
- default - default
deploy:
labels:
backupbot.backup: "true"
backupbot.backup.path: "/data"
imap: imap:
image: ghcr.io/mailu/dovecot:2024.06.27 image: ghcr.io/mailu/dovecot:2024.06.52
environment: *default-env environment: *default-env
secrets: secrets:
- secret_key - secret_key
@@ -128,9 +133,13 @@ services:
- app - app
networks: networks:
- default - default
deploy:
labels:
backupbot.backup: "true"
backupbot.backup.path: "/mail"
smtp: smtp:
image: ghcr.io/mailu/postfix:2024.06.27 image: ghcr.io/mailu/postfix:2024.06.52
environment: *default-env environment: *default-env
secrets: secrets:
- secret_key - secret_key
@@ -142,7 +151,7 @@ services:
- app - app
antispam: antispam:
image: ghcr.io/mailu/rspamd:2024.06.27 image: ghcr.io/mailu/rspamd:2024.06.52
environment: *default-env environment: *default-env
secrets: secrets:
- secret_key - secret_key
@@ -153,7 +162,7 @@ services:
disable: true disable: true
webmail: webmail:
image: ghcr.io/mailu/webmail:2024.06.27 image: ghcr.io/mailu/webmail:2024.06.52
# entrypoint: "tail -f /dev/null" # entrypoint: "tail -f /dev/null"
environment: *default-env environment: *default-env
networks: networks:
@@ -168,7 +177,7 @@ services:
disable: true disable: true
certdumper: certdumper:
image: ldez/traefik-certs-dumper:v2.9.3 image: ldez/traefik-certs-dumper:v2.11.2
entrypoint: sh -c ' entrypoint: sh -c '
apk add jq apk add jq
; while ! [ -e /traefik/${ACME_JSON} ] ; while ! [ -e /traefik/${ACME_JSON} ]
@@ -225,3 +234,4 @@ secrets:
secret_key: secret_key:
external: true external: true
name: ${STACK_NAME}_secret_key_${SECRET_SECRET_KEY_VERSION} name: ${STACK_NAME}_secret_key_${SECRET_SECRET_KEY_VERSION}
+3
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.