aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2022-05-10 15:15:47 +0200
committerGravatar Christian Hesse <mail@eworm.de>2022-05-11 13:48:27 +0200
commitfbc6852687ab964a4303d4fa1b29ab6321ad38b7 (patch)
treefa52d3c5232f1102618d7c14b1893d4d29a62ab6
parent735df85b450be430999384e947d1c7b473e691ab (diff)
sms-forward: RouterOS v7 path syntax
-rw-r--r--sms-forward16
1 files changed, 8 insertions, 8 deletions
diff --git a/sms-forward b/sms-forward
index 436985d..b392805 100644
--- a/sms-forward
+++ b/sms-forward
@@ -21,27 +21,27 @@
$ScriptLock $0;
-:if ([ / tool sms get receive-enabled ] = false) do={
+:if ([ /tool/sms/get receive-enabled ] = false) do={
$LogPrintExit2 warning $0 ("Receiving of SMS is not enabled.") true;
}
$WaitFullyConnected;
-:local Settings [ / tool sms get ];
+:local Settings [ /tool/sms/get ];
# forward SMS in a loop
-:while ([ :len [ / tool sms inbox find ] ] > 0) do={
- :local Phone [ / tool sms inbox get ([ find ]->0) phone ];
+:while ([ :len [ /tool/sms/inbox/find ] ] > 0) do={
+ :local Phone [ /tool/sms/inbox/get ([ find ]->0) phone ];
:local Messages "";
:local Delete [ :toarray "" ];
- :foreach Sms in=[ / tool sms inbox find where phone=$Phone ] do={
- :local SmsVal [ / tool sms inbox get $Sms ];
+ :foreach Sms in=[ /tool/sms/inbox/find where phone=$Phone ] do={
+ :local SmsVal [ /tool/sms/inbox/get $Sms ];
:if ($Phone = $Settings->"allowed-number" && \
($SmsVal->"message")~("^:cmd " . $Settings->"secret" . " script ")) do={
$LogPrintExit2 debug $0 ("Removing SMS, which started a script.") false;
- / tool sms inbox remove $Sms;
+ /tool/sms/inbox/remove $Sms;
} else={
:set Messages ($Messages . "\n\nOn " . $SmsVal->"timestamp" . \
" type " . $SmsVal->"type" . ":\n" . $SmsVal->"message");
@@ -56,7 +56,7 @@ $WaitFullyConnected;
message=("Received " . [ $IfThenElse ($Count = 1) "this message" ("these " . $Count . " messages") ] . \
" by " . $Identity . " from " . $Phone . ":" . $Messages) });
:foreach Sms in=$Delete do={
- / tool sms inbox remove $Sms;
+ /tool/sms/inbox/remove $Sms;
}
}
}