diff options
Diffstat (limited to 'telegram-chat')
-rw-r--r-- | telegram-chat | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/telegram-chat b/telegram-chat index 3d94221..d7b6f18 100644 --- a/telegram-chat +++ b/telegram-chat @@ -125,13 +125,16 @@ $WaitFullyConnected; } } } else={ - $LogPrintExit2 warning $0 ("Received a message from untrusted contact " . \ + :local Message ("Received a message from untrusted contact " . \ [ $IfThenElse ($FromUserName = false) "without username" ("'" . $FromUserName . "'") ] . \ - " (ID " . $FromID . ")!") false; + " (ID " . $FromID . ")!"); :if ($Text ~ ("^! *" . [ $EscapeForRegEx $Identity ] . "\$")) do={ + $LogPrintExit2 warning $0 $Message false; $SendTelegram2 ({ origin=$0; chatid=$ChatID; silent=false; \ subject=([ $SymbolForNotification "speech-balloon" ] . "Telegram Chat"); \ message=("You are not trusted.") }); + } else={ + $LogPrintExit2 info $0 $Message false; } } } |