diff --git a/emhttp/plugins/dynamix/agents/Boxcar.xml b/emhttp/plugins/dynamix/agents/Boxcar.xml index 79344fc7e..b896f7fbe 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" \ diff --git a/emhttp/plugins/dynamix/agents/Join.xml b/emhttp/plugins/dynamix/agents/Join.xml index 19872f120..39c0edfb6 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" \ diff --git a/emhttp/plugins/dynamix/agents/Prowl.xml b/emhttp/plugins/dynamix/agents/Prowl.xml index aaef58a82..345abaf90 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" \ diff --git a/emhttp/plugins/dynamix/agents/Pushbullet.xml b/emhttp/plugins/dynamix/agents/Pushbullet.xml index c67efcc85..b2f2ca779 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\"}" \ diff --git a/emhttp/plugins/dynamix/agents/Pushover.xml b/emhttp/plugins/dynamix/agents/Pushover.xml index fde95484a..21aedbedd 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" \ diff --git a/emhttp/plugins/dynamix/agents/Pushplus.xml b/emhttp/plugins/dynamix/agents/Pushplus.xml index 5ff40697f..2eef053a3 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" \ diff --git a/emhttp/plugins/dynamix/agents/ServerChan.xml b/emhttp/plugins/dynamix/agents/ServerChan.xml index 4d02aa59b..4dfdf33f6 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" \