You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exten => _X.,n,GotoIf($[foo${DB(CF/${EXTEN})} != foo]?normal:forward)
muss sein
exten => _X.,n,GotoIf($[foo${DB(CF/${EXTEN})} != foo]?forward:normal)
wobei ich eher nach
exten => _X.,n,GotoIf($["${DB(CF/${EXTEN})}" != ""]?forward:normal)
tendieren würde...
Freundliche Grüße,
Rob Maris
The text was updated successfully, but these errors were encountered:
Hallo Herr Wintermeyer,
in Kap. 15.6.1 (Einfaches Forwarding) steht:
exten => _X.,n,GotoIf($[foo$ {DB(CF/${EXTEN})} != foo]?normal:forward)$[foo$ {DB(CF/${EXTEN})} != foo]?forward:normal)$["$ {DB(CF/${EXTEN})}" != ""]?forward:normal)
muss sein
exten => _X.,n,GotoIf(
wobei ich eher nach
exten => _X.,n,GotoIf(
tendieren würde...
Freundliche Grüße,
Rob Maris
The text was updated successfully, but these errors were encountered: