aboutsummaryrefslogtreecommitdiffstats
path: root/global-functions
diff options
context:
space:
mode:
Diffstat (limited to 'global-functions')
-rw-r--r--global-functions10
1 files changed, 8 insertions, 2 deletions
diff --git a/global-functions b/global-functions
index b9f3cc4..1fb832a 100644
--- a/global-functions
+++ b/global-functions
@@ -428,16 +428,22 @@
:global Identity;
:global TelegramTokenId;
:global TelegramChatId;
+ :global TelegramChatIdOverride;
:global UrlEncode;
:global CertificateAvailable;
- :if ([ :len $TelegramTokenId ] > 0 && [ :len $TelegramChatId ] > 0) do={
+ :local ChatId $TelegramChatId;
+ :if ([ :len $TelegramChatIdOverride ] > 0) do={
+ :set ChatId $TelegramChatIdOverride;
+ }
+
+ :if ([ :len $TelegramTokenId ] > 0 && [ :len $ChatId ] > 0) do={
$CertificateAvailable "Go Daddy Secure Certificate Authority - G2";
:do {
/ tool fetch check-certificate=yes-without-crl output=none http-method=post \
("https://api.telegram.org/bot" . $TelegramTokenId . "/sendMessage") \
- http-data=("chat_id=" . $TelegramChatId . "&disable_notification=" . $Silent . \
+ http-data=("chat_id=" . $ChatId . "&disable_notification=" . $Silent . \
"&text=" . [ $UrlEncode ("[" . $Identity . "] " . $Subject . "\n\n" . $Message) ]);
} on-error={
:log warning "Failed sending telegram notification!";