Compare commits

..

1 Commits

Author SHA1 Message Date
d1ce242dc9 feat: initial version
Some checks failed
Test Stalwart Installation Action / Error Handling Tests (pull_request) Successful in 16s
Test Stalwart Installation Action / Basic Installation (No Config) (pull_request) Successful in 49s
Test Stalwart Installation Action / Full Configuration (Domains + Users) (pull_request) Failing after 49s
Test Stalwart Installation Action / Test Summary (pull_request) Failing after 3s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-15 09:12:12 -05:00

View File

@@ -213,8 +213,7 @@ jobs:
echo "HTTP Status Code: $HTTP_CODE"
echo "JMAP Response:"
cat /tmp/jmap_response_no_auth.json
echo ""
# Check if request succeeded
if [ "$HTTP_CODE" != "200" ]; then
echo "::error::JMAP endpoint returned HTTP $HTTP_CODE for unauthenticated request"
@@ -237,7 +236,7 @@ jobs:
# Test user1@test1.local authentication (follow redirects with -L)
HTTP_CODE=$(curl -s -L \
-o /tmp/jmap_response_auth.json \
-o /tmp/jmap_response_auth.json
-w "%{http_code}" \
-u "user1@test1.local:UserPass123!" \
"http://localhost:8080/.well-known/jmap")
@@ -245,7 +244,6 @@ jobs:
echo "HTTP Status Code: $HTTP_CODE"
echo "JMAP Response:"
cat /tmp/jmap_response_auth.json
echo ""
# Check if request succeeded
if [ "$HTTP_CODE" != "200" ]; then