Dovecot Systax Problem
parent
0dde4e616d
commit
20943ecdd4
|
|
@ -172,11 +172,12 @@ setfacl -dR -m u:www-data:rwx,u:${APP_USER}:rwx storage bootstrap/cache || true
|
||||||
log "[✓] Schreibrechte für Laravel korrigiert."
|
log "[✓] Schreibrechte für Laravel korrigiert."
|
||||||
|
|
||||||
# --- DKIM: Verzeichnisse & Basisrechte --------------------------------------
|
# --- DKIM: Verzeichnisse & Basisrechte --------------------------------------
|
||||||
# Laravel-Storage: private/dkim von mailwolt beschreibbar
|
install -d -m 2775 -o "$APP_USER" -g www-data "$APP_DIR/storage/app/private"
|
||||||
install -d -m 0770 -o "$APP_USER" -g "$APP_GROUP" "$APP_DIR/storage/app/private"
|
install -d -m 2775 -o "$APP_USER" -g www-data "$APP_DIR/storage/app/private/dkim"
|
||||||
install -d -m 0770 -o "$APP_USER" -g "$APP_GROUP" "$APP_DIR/storage/app/private/dkim"
|
setfacl -R -m u:${APP_USER}:rwx,u:www-data:rwx "$APP_DIR/storage/app/private" || true
|
||||||
|
setfacl -dR -m u:${APP_USER}:rwx,u:www-data:rwx "$APP_DIR/storage/app/private" || true
|
||||||
|
|
||||||
# OpenDKIM: keys & dns-Verzeichnis
|
# --- OpenDKIM: keys & DNS-Verzeichnis --------------------------------------
|
||||||
install -d -m 0750 -o opendkim -g opendkim /etc/opendkim
|
install -d -m 0750 -o opendkim -g opendkim /etc/opendkim
|
||||||
install -d -m 0750 -o opendkim -g opendkim /etc/opendkim/keys
|
install -d -m 0750 -o opendkim -g opendkim /etc/opendkim/keys
|
||||||
install -d -m 0755 -o root -g root /etc/mailwolt
|
install -d -m 0755 -o root -g root /etc/mailwolt
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ StandardOutput=append:/var/log/${APP_USER}-ws.log
|
||||||
StandardError=append:/var/log/${APP_USER}-ws.log
|
StandardError=append:/var/log/${APP_USER}-ws.log
|
||||||
KillSignal=SIGINT
|
KillSignal=SIGINT
|
||||||
TimeoutStopSec=15
|
TimeoutStopSec=15
|
||||||
|
UMask=0002
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
|
@ -47,6 +48,7 @@ StandardOutput=append:/var/log/${APP_USER}-schedule.log
|
||||||
StandardError=append:/var/log/${APP_USER}-schedule.log
|
StandardError=append:/var/log/${APP_USER}-schedule.log
|
||||||
KillSignal=SIGINT
|
KillSignal=SIGINT
|
||||||
TimeoutStopSec=15
|
TimeoutStopSec=15
|
||||||
|
UMask=0002
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
|
@ -70,6 +72,7 @@ StandardOutput=append:/var/log/${APP_USER}-queue.log
|
||||||
StandardError=append:/var/log/${APP_USER}-queue.log
|
StandardError=append:/var/log/${APP_USER}-queue.log
|
||||||
KillSignal=SIGINT
|
KillSignal=SIGINT
|
||||||
TimeoutStopSec=15
|
TimeoutStopSec=15
|
||||||
|
UMask=0002
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue