mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
14 lines
295 B
Text
14 lines
295 B
Text
#
|
|
# RouterOS script: sms-action
|
|
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
|
|
#
|
|
# run action on received SMS
|
|
|
|
:global "sms-action";
|
|
|
|
:local code ($"sms-action"->$action);
|
|
:local parsed [ :parse $code ];
|
|
|
|
:log info ("Acting on SMS action '" . $action . "': " . $code);
|
|
:delay 1s;
|
|
$parsed;
|