added backup and email client

This commit is contained in:
2026-02-01 00:02:35 +01:00
parent ff857be01a
commit e4fdfbc95f
210 changed files with 24211 additions and 742 deletions
+16
View File
@@ -0,0 +1,16 @@
# Teste SMTP direkt vom Container
docker exec -it plesk-test bash -c '
echo "Teste Port 587..."
# Prüfe ob Port 587 hört
ss -tlnp | grep 587
# Prüfe Postfix master.cf
echo ""
echo "=== Submission Config ==="
grep -A 10 "^submission" /etc/postfix/master.cf
# Prüfe SASL
echo ""
echo "=== SASL Status ==="
ls -la /var/spool/postfix/private/auth 2>/dev/null || echo "Auth socket nicht gefunden"
'