From cf1bb883996dcc55a70282d4c2afaded76c3f0ae Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:39:24 +0200 Subject: [PATCH 1/7] Update Boxcar.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/Boxcar.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/Boxcar.xml b/emhttp/plugins/dynamix/agents/Boxcar.xml index 79344fc7e9..b896f7fbe6 100644 --- a/emhttp/plugins/dynamix/agents/Boxcar.xml +++ b/emhttp/plugins/dynamix/agents/Boxcar.xml @@ -14,7 +14,7 @@ ############ MESSAGE=$(echo -e "$MESSAGE") - curl -s -k \ + curl -s \ -d "user_credentials=$ACCESS_TOKEN" \ -d "notification[title]=$TITLE" \ -d "notification[long_message]=$MESSAGE" \ From 93c24f1deb6c6704ddfe919d72e2b3c45f30efee Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:41:02 +0200 Subject: [PATCH 2/7] Update Join.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/Join.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/Join.xml b/emhttp/plugins/dynamix/agents/Join.xml index 19872f1203..39c0edfb63 100644 --- a/emhttp/plugins/dynamix/agents/Join.xml +++ b/emhttp/plugins/dynamix/agents/Join.xml @@ -14,7 +14,7 @@ TITLE=$(echo -e "$TITLE") MESSAGE=$(echo -e "$MESSAGE") - curl -s -k -G \ + curl -s -G \ -d "apikey=$API_KEY" \ --data-urlencode "title=$TITLE" \ --data-urlencode "text=$MESSAGE" \ From 405b68619678e307acb410050c50fb0b900c0b21 Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:41:30 +0200 Subject: [PATCH 3/7] Update Prowl.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/Prowl.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/Prowl.xml b/emhttp/plugins/dynamix/agents/Prowl.xml index aaef58a829..345abaf908 100644 --- a/emhttp/plugins/dynamix/agents/Prowl.xml +++ b/emhttp/plugins/dynamix/agents/Prowl.xml @@ -28,7 +28,7 @@ ;; esac - curl -s -k \ + curl -s \ -F "apikey=$API_KEY" \ -F "application=$APP_NAME" \ -F "event=$TITLE" \ From 5e605c24d5d9d63cc4d6e2baefd754f15e37d61b Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:41:51 +0200 Subject: [PATCH 4/7] Update Pushbullet.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/Pushbullet.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/Pushbullet.xml b/emhttp/plugins/dynamix/agents/Pushbullet.xml index c67efcc85a..b2f2ca779a 100644 --- a/emhttp/plugins/dynamix/agents/Pushbullet.xml +++ b/emhttp/plugins/dynamix/agents/Pushbullet.xml @@ -14,7 +14,7 @@ ########## MESSAGE=$(echo "$MESSAGE" | sed -e 's::\\n:gI' -e 's/<[^>]*>//g') - curl -s -k \ + curl -s \ -X POST --header "Authorization: Bearer $TOKEN" \ --header 'Content-Type: application/json' \ -d "{\"type\": \"note\", \"title\": \"$TITLE\", \"body\": \"$MESSAGE\"}" \ From 17de7730995718ae838ecda2da9982422e335384 Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:43:31 +0200 Subject: [PATCH 5/7] Update Pushover.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/Pushover.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/Pushover.xml b/emhttp/plugins/dynamix/agents/Pushover.xml index fde95484a7..21aedbedd3 100644 --- a/emhttp/plugins/dynamix/agents/Pushover.xml +++ b/emhttp/plugins/dynamix/agents/Pushover.xml @@ -25,7 +25,7 @@ ;; esac - curl -s -k \ + curl -s \ -F "token=$APP_TOKEN" \ -F "user=$USER_KEY" \ -F "message=$MESSAGE" \ From 12f9759d3596c69e5fa122ca2ee52493a9ca05e1 Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:43:54 +0200 Subject: [PATCH 6/7] Update Pushplus.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/Pushplus.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/Pushplus.xml b/emhttp/plugins/dynamix/agents/Pushplus.xml index 5ff40697fb..2eef053a31 100644 --- a/emhttp/plugins/dynamix/agents/Pushplus.xml +++ b/emhttp/plugins/dynamix/agents/Pushplus.xml @@ -25,7 +25,7 @@ [[ -n "${WEBHOOK}" && "${WEBHOOK}" == "none" ]] && WEBHOOK="" [[ -n "${CALLBACKURL}" && "${CALLBACKURL}" == "none" ]] && CALLBACKURL="" - curl -s -k -X POST \ + curl -s -X POST \ -F "token=$TOKEN" \ -F "title=$TITLE" \ -F "content=$MESSAGE" \ From 9860d729e616921e6c5a5aaec6be5faebdc230d3 Mon Sep 17 00:00:00 2001 From: Sacred-Shadow <61997661+Sacred-Shadow@users.noreply.github.com> Date: Fri, 3 Apr 2026 06:44:20 +0200 Subject: [PATCH 7/7] Update ServerChan.xml -k removed from curl, as the public API uses a valid certificate. --- emhttp/plugins/dynamix/agents/ServerChan.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/agents/ServerChan.xml b/emhttp/plugins/dynamix/agents/ServerChan.xml index 4d02aa59bc..4dfdf33f6a 100644 --- a/emhttp/plugins/dynamix/agents/ServerChan.xml +++ b/emhttp/plugins/dynamix/agents/ServerChan.xml @@ -20,7 +20,7 @@ [[ -n "${CHANNEL}" && "${CHANNEL}" == "none" ]] && CHANNEL="" [[ -n "${OPENID}" && "${OPENID}" == "none" ]] && OPENID="" - curl -s -k -X POST \ + curl -s -X POST \ -F "title=$TITLE" \ -F "desp=$MESSAGE" \ -F "channel=$CHANNEL" \