chatmaild: fix umask for doveauth + metadata (#494)

* chatmaild: fix umask for doveauth + metadata

fix #453
This commit is contained in:
missytake
2025-02-17 19:10:26 +01:00
committed by GitHub
parent 8ec6e6e985
commit f4e371676b
4 changed files with 6 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ jobs:
-H "Authorization: Bearer ${{ secrets.HETZNER_API_TOKEN }}" \ -H "Authorization: Bearer ${{ secrets.HETZNER_API_TOKEN }}" \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d '{"image":"debian-12"}' \ -d '{"image":"debian-12"}' \
"https://api.hetzner.cloud/v1/servers/${{ secrets.STAGING_SERVER_ID }}/actions/rebuild" "https://api.hetzner.cloud/v1/servers/${{ secrets.STAGING_IPV4_SERVER_ID }}/actions/rebuild"
- run: scripts/initenv.sh - run: scripts/initenv.sh

View File

@@ -17,6 +17,9 @@
- use old crypt lib in python < 3.11 - use old crypt lib in python < 3.11
([#483](https://github.com/deltachat/chatmail/pull/483)) ([#483](https://github.com/deltachat/chatmail/pull/483))
- chatmaild: set umask to 0700 for doveauth + metadata
([#490](https://github.com/deltachat/chatmail/pull/492))
- remove MTA-STS daemon - remove MTA-STS daemon
([#488](https://github.com/deltachat/chatmail/pull/488)) ([#488](https://github.com/deltachat/chatmail/pull/488))

View File

@@ -7,6 +7,7 @@ Restart=always
RestartSec=30 RestartSec=30
User=vmail User=vmail
RuntimeDirectory=chatmail-metadata RuntimeDirectory=chatmail-metadata
UMask=0077
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target

View File

@@ -7,6 +7,7 @@ Restart=always
RestartSec=30 RestartSec=30
User=vmail User=vmail
RuntimeDirectory=doveauth RuntimeDirectory=doveauth
UMask=0077
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target