aboutsummaryrefslogtreecommitdiffstats
path: root/sms-action
blob: b651c57c2a761c4a3e7ad20f3b28030827d85bd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!rsc
# RouterOS script: sms-action
# Copyright (c) 2018-2019 Christian Hesse <mail@eworm.de>
#
# run action on received SMS

:global SmsAction;

:local Action $action;

:local Code ($SmsAction->$Action);
:local Parsed [ :parse $Code ];

:log info ("Acting on SMS action '" . $Action . "': " . $Code);
:delay 1s;
$Parsed;