Displaying 20 results from an estimated 1100 matches similar to: "Dialplan loop"
2007 Nov 26
3
Correct syntax for IF()?
Hello
I've tried a bunch of things, but still get errors/warnings
when using the IF() function:
============== TEST #1
exten => h,n,Set(WAV_FILE=${IF($[ ${STAT(e,/tmp/${CALLTIME}.wav)}
]?${CALLTIME}.wav)})
[Nov 26 21:52:34] WARNING[5074]: func_logic.c:107 acf_if: Syntax
IF(<expr>?[<true>][:<false>])
============== TEST #2
exten =>
2010 Sep 09
1
syntax error, unexpected '<token>'
Hello list,
getting warning : *syntax error, unexpected '<token>'*
dialplan :
exten => pbx,n,Macro(CheckNetworkProblems,${custID})
exten => pbx,n,NoOp(status = ${STATUS})
exten => pbx,n,GoToIf($["${STATUS}"="congestion"]?backup:nocongestion)
CLI :
[Sep 9 12:27:07] -- Executing [pbx at cust:15]
NoOp("SIP/test13-0000002a",
2009 Mar 27
1
Strange warning message
Can anyone give me any idea on where to start looking for this ? 1.4
svn (ish) It has appeared twice in the last hour on a system that gets
numerous inbound calls to the same number
TIA
Julian
[Mar 27 17:21:07] WARNING[3239]: ast_expr2.fl:407 ast_yyerror:
ast_yyerror(): syntax error: syntax error, unexpected '=', expecting
$end; Input:
= 2
^
[Mar 27 17:21:07] WARNING[3239]:
2010 Nov 03
1
Gotoif changed in 1.8?
Hi Gang,
I'm testing 1.8.0 on one of my machines and this snippet
"chokes" on line 7 (works fine with 1.4.30)
[tb-account-balance]
exten => s,1,Set(BALCOUNT=0)
exten => s,n,NoOp(Verbose(acct ${digitacc} pwd ${digitpwd} ))
exten => s,n(runagi),Set(TEST_RETURN="NONE")
exten =>
2016 Aug 08
2
Trouble applying regex to dialplan variable that contains double-quotes
I am writing a dialplan context under asterisk 11.21.0 to handle SIP message routing between registered SIP peers using chan_sip. I am having trouble with double-quotes when the source peer uses a display name, which appears in quotes before the SIP URI. I
want to extract the SIP URI from MESSAGE(from) in order to (conditionally) route a failure message back to the source peer.
My test dialplan
2006 Apr 07
2
gotoif
Here is a section of my dialplan (macro)
exten => s,200,Wait(1)
exten => s,201,read(holdopt|screen-onhold|1)
exten => s,202,GotoIf($[${holdopt} = 1 ]?4)
exten => s,203,GoTo(200)
it's simple really it loops telling you the caller is on hold until you
press 1 and then it sends you off to another area. The problem right now is
that if the read() times out i get these warnings...
2009 Jan 08
4
AEL question: testing channel variables
Hi!
I use the following condition:
if (${FOOBAR}=YES) {
...
}
The problem is, that if FOOBAR is not defined at all Asterisk generates
a warning:
WARNING[11982]: ast_expr2.fl:407 ast_yyerror: ast_yyerror(): syntax
error: syntax error, unexpected '=', expecting $end; Input:
=YES
Of course I could use the following code, but this bloats up the code:
if (${EXISTS(${FOOBAR})}) {
2006 Oct 13
2
AEL Question
Hi, all. I'm making my first foray into AEL. I'm starting with a
simple macro, but I've already encountered an odd behaviour. I'm
wondering if someone can shed some insight:
Asterisk 1.2.9.1
macro newPlaceCallPSTN {
s => {
TIMEOUT(absolute)=7200;
NoOp(Analog Out List: ${ANALOGOUT});
ChanIsAvail(${ANALOGOUT});
NoOp(Available Out List:
2012 May 02
3
parsing issue
I get an error when I execute this code
exten => rejected,n,Hangup($[-1*${Z}])
May 2 13:42:09] WARNING[23128]: ast_expr2.fl:468 ast_yyerror:
ast_yyerror(): syntax error: syntax error, unexpected $end, expecting
'-' or '!' or '(' or '<token>'; Input:
-1*
The variable "Z" has a negative number, which is the code that I need
to use in the
2007 Oct 17
6
parse error in GosubIf
Greetings everyone,
today I spent the last part of my day trying to find a parse error
inside this snip:
http://pastebin.ca/740081
If there's anyone who can shed some light on why my GosubIf condition
is throwing a parse error, I'd greatly appreciate your insight. This
was really frustrating and is probably a stupid mistake.
Regards,
-Michael
2019 Oct 01
2
Increasing variables - Changes v13 vs v16
Hi list,
on asterisk 13 I use
same => n,Set(__myCpt=$[${myCpt} + 1])
which is working well. On an Asterisk 16 I get, for this same command
[2019-10-01 16:15:01] WARNING[28197][C-00000008]: ast_expr2.fl:470
ast_yyerror: ast_yyerror(): syntax error: syntax error, unexpected '+',
expecting $end; Input:
+ 1
^
What changes in 16 version creates this behavior and how to
2006 Feb 20
3
asterisk error
Hi,
I got this message on my Asterisk messages file and after it Asterisk went down...
2006-02-18 08:13:55 WARNING[3214] ast_expr2.fl: ast_yyerror(): syntax error: syntax error, unexpected TOK_PLUS, expecting TOK_MINUS or TOK_COMPL or TOK_LP or TOKEN; Input:
+ 1
^
2006-02-18 08:13:55 WARNING[3214] ast_expr2.fl: If you have questions, please refer to doc/README.variables in the asterisk source.
2008 Apr 15
1
gotoif syntax error
Asterisk is reporting the following error:
[Apr 15 16:58:32] WARNING[14759] ast_expr2.fl: ast_yyerror(): syntax error:
syntax error, unexpected ':', expecting $end; Input:
: Always
^
here is the dialplan:
exten => OUT,1,Gotoif($[$["${DB(AMPUSER/${ARG1}/recording)}" :
"out=([^|]+)"] = Always]?r,1)
exten =>
2009 Jul 31
1
asterisk 1.6 call forwarding
Dear All,
I'n trying to make a simple call forwarding, however I have small
problem when evaluating an expresion.
Here is my extensions.conf
...
; Unconditional Call Forward
exten => _#21*X.,1,Set(DB(CFIM/${CALLERID(num)})=${EXTEN:4})
exten => _#21*X.,2,Hangup()
exten => #21#,1,Set(ignored=${DB_DELETE(CFIM/${CALLERID(num)})})
exten => #21#,2,Hangup()
...
exten =>
2007 May 14
1
ast_yyerror - Help
Hey all,
We're starting to see "all circuits are busy" and a few dropped calls.
When these happen, in the messages log, I see the following error.
May 14 14:42:13 WARNING[5604] ast_expr2.fl: ast_yyerror(): syntax error:
syntax error, unexpected $end, expecting TOK_MINUS or TOK_COMPL or
TOK_LP or TOKEN; Input:
0?7:
What causes this?
2006 Mar 02
1
error messages on /var/log/asterisk/messages
Hi,
I am using 1.2.3, and sometimes I can see the following message:
Mar 2 08:42:42 WARNING[25937] ast_expr2.fl: ast_yyerror(): syntax error: syntax error, unexpected TOK_PLUS, expecting TOK_MINUS or TOK_COMPL or TOK_LP or TOKEN; Input:
+ 1
^
Mar 2 08:42:42 WARNING[25937] ast_expr2.fl: If you have questions, please refer to doc/README.variables in the asterisk source.
Any ideas?
Thank you
2012 Jul 12
1
Asterisk with OpenBTS and mobile phone
Hello mailinglist,
I want to connect Asterisk with OpenBTS and make a call with a mobile
phone.
I use:
Ubuntu 11.10 + Kernel 3.0.22
GnuRadio 3.3.0
Asterisk 1.8.13
OpenBTS 2.8
Nokia Mobile Phone
OpenBTS works and I can send sms from the OpenBTS server to the
mobile phone. What I also need is a call between Asterisk and OpenBTS.
I have also two soft phones which works with Asterisk. And also
2006 Jun 21
2
FW: syntax error
(Try again from the proper email address)
--Rob
-----Original Message-----
From: Rob Thomas
Sent: Thursday, 22 June 2006 12:22 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: RE: [Asterisk-Users] syntax error
That's freePBX or AMP code that we've since fixed - The replacement line is
exten =>
2007 Nov 16
9
Challenge
The original:
http://pastie.textmate.org/private/lqvrlyyvkv2kbugoxtiz6w
Send your submissions to me by email or on #merb. I''ll blog it, and
pick a winner. The winner does not mean it makes it into Merb, just
means I personally like it best.
But it might make it into Merb.
# Scenario:
# You have a simple application that lists all the monkeys at the zoo.
# Every monkey has a
2004 Sep 02
1
Problem with HasNewVoicemail()
Hi all,
Maybe I'm being thick here, but I've had a look through the mailing list and
the Wiki, and I can't seem to see details of anybody else with this
problem....
With the following line:
exten => s,1,HasNewVoicemail(201)
I am getting the following error:
-- Executing HasNewVoicemail("SIP/201-2f1e", "201") in new stack
Sep 2 12:41:09