routeros-scripts/sms-action
2020-02-26 11:51:49 +01:00

22 lines
469 B
Text

#!rsc
# RouterOS script: sms-action
# Copyright (c) 2018-2020 Christian Hesse <mail@eworm.de>
#
# run action on received SMS
:global SmsAction;
:global LogAndError;
:local Action $action;
:if ([ :typeof $Action ] = "nothing") do={
$LogAndError "This script is supposed to run from SMS hook with action=...";
}
:local Code ($SmsAction->$Action);
:local Parsed [ :parse $Code ];
:log info ("Acting on SMS action '" . $Action . "': " . $Code);
:delay 1s;
$Parsed;