From 8233fc4fcaf472eaaefb6c39d4b7367189ab8a5e Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sat, 22 Mar 2025 13:56:58 +0100 Subject: [PATCH] no chown --- dovecot/run_s3_email_downloader.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dovecot/run_s3_email_downloader.sh b/dovecot/run_s3_email_downloader.sh index f83ef56..44dde43 100755 --- a/dovecot/run_s3_email_downloader.sh +++ b/dovecot/run_s3_email_downloader.sh @@ -21,7 +21,7 @@ GROUP_ID=1000 # Group ID für aknuth echo "Setze Berechtigungen für Dovecot in Docker..." find "$MAIL_DIR" -type d -exec chmod 0755 {} \; # rwxr-xr-x für Verzeichnisse find "$MAIL_DIR" -type f -exec chmod 0644 {} \; # rw-r--r-- für Dateien -chown -R $USER_ID:$GROUP_ID "$MAIL_DIR" +# chown -R $USER_ID:$GROUP_ID "$MAIL_DIR" echo "Berechtigungen gesetzt." # Deaktiviere die virtuelle Umgebung (optional)