Re: [asterisk-users] Asterisk 11 dtmf not recognised

2013-05-25 Thread Gopalakrishnan N
With Asterisk 1.8 I got it working. Regards On Sat, May 25, 2013 at 2:37 AM, Gopalakrishnan N < gopalakrishnan...@gmail.com> wrote: > Tried info, rfc2833, inband and finally kept as auto. > On 25 May 2013 02:20, "Doug Lytle" wrote: > >> >> dtmfmode=auto >> >> dtmfmode=info >> >> or >> >> dtmf

Re: [asterisk-users] Asterisk 11 dtmf not recognised

2013-05-25 Thread Gopalakrishnan N
Am using Read application to get the digit, since its recognizing... I would like to get for 3 attempts and then after 3rd attempt it has to playback some different message like entries exceeded. My dialplan as, exten = 100,1(begin),Playback(letters/a) exten = 100,n,Set(rightPIN=1) exten = 100,n,R

Re: [asterisk-users] asterisk-gui-2.1.0-rc1

2013-05-25 Thread Alec Davis
> installed it from SVN. > When I try to execute ./configure , got the following message , > > > configure: error: *** JSON support not found (this typically > means the libjansson development package is missing) > > > After that I tried to install certain packages by, > > > yum groupinst

Re: [asterisk-users] Asterisk on Solaris

2013-05-25 Thread Doug Lytle
Nick Khamis wrote: Hello Everyone, > >I have bumped into the thralling penguin page on linux vs solaris for Searching my Asterisk-users archives that go back to the beginning of 2010, there have been only 3 posters, with a total of 22 messages about Solaris and various parts of Asterisk. My

Re: [asterisk-users] Asterisk on Solaris

2013-05-25 Thread Nick Khamis
Hello Doug, A quick sift through http://www.mail-archive.com/search?l=asterisk-users%40lists.digium.com&q=solaris+10, yielded many unanswered questions, questions with returning questions etc... There was even an email that had the same subject line. Surely, the creator of that email could take a

[asterisk-users] Asterisk 1.8 wrong Def. Username

2013-05-25 Thread Administrator TOOTAI
Hi, We face a strange behavior with Asterisk 1.8.15 and SIP defaultuser definition. in sip.conf [blabla0](natted-phone,ulaw-phone,callgroup1,snom-320) defaultuser=tel-221 mailbox=221 callerid="My CID" dtmfmode=auto ;defaultip=10.0.12.21 CLI sip show peer blabla0 Addr->IP

Re: [asterisk-users] asterisk-gui-2.1.0-rc1

2013-05-25 Thread luke devon
Hi Alec,  I followed that both instructions . It was not success. got the same issue. I'm not sure the reason is the OS. I am Using CentOS 6.4. However, following method was helped me to resolve the problem. http://www.digip.org/jansson/releases/jansson-2.4.tar.gz tar -zxf jansson-2.4.tar.gz cd

Re: [asterisk-users] Asterisk 11 dtmf not recognised

2013-05-25 Thread Gopalakrishnan N
Finally got it working with 3 attempts by the fialplan, exten = 300,1,Playback(letters/a) exten = 300,n,Set(gottries=0) exten = 300,n(getmore),Set(rightPIN=1) exten = 300,n,Read(inPIN,,1,skip,3,3) ; Attempts for 3 times with 3 seconds of timeout exten = 300,n(gotdigit),GotoIf($["${inPIN}" = "${rig