similar to: AGI - CallerID ??

Displaying 20 results from an estimated 20000 matches similar to: "AGI - CallerID ??"

2004 Jul 01
2
DISA and AGI: authenticate by caller ID?
I'm having trouble getting an AGI exec command to spawn app_disa. The script executes properly, but does not spawn DISA. The CLI gives no helpful clues. Am I doing the exec incorrectly? I want to have a way to authenticate callers to the extension by Caller ID... if their caller ID is in my database and set to active, they can call out. [like a calling card but auth'd by CID instead
2004 Jun 10
4
How to get the Called id with AGI
Hi all, Is there a way to get the "called id" (the B number) with AGI perl ? I know how to get the caller id which is working fine and is just below: #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); $callerid = $input{'callerid'}; $AGI->say_digits($callerid); } Thanks in advance, Angel.
2003 Nov 27
1
AGI (IF/ELSE)
I need some help with some statements..... #!/usr/bin/perl use Asterisk::AGI; $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); my $callerid = $input{'callerid'}; if ($optemp != 1) { my $empid = $AGI->get_data('employee',-1,5); $AGI->stream_file(entered); $AGI->say_digits($empid); my $optemp =
2004 Jan 13
6
SIP and AGI crash...
Hi, I'm trying to use the say-ani agi asterisk-perl script and am experiencing crashes, I am also experienceing problems with the test-agi scripts shipped with asterisk. The clearest demonstration of the problem is that if I dial extension 125 configured as... exten => 125,1,Ringing exten => 125,2,Wait(3) exten => 125,3,Answer exten => 125,4,Wait(2) exten =>
2008 Feb 04
8
AGI: Not getting answers from get_data in a call-file call
I have the following situation: I drop a call-file into the Asterisk spool directory and I get called back. That all works. And I have this script: #!/usr/bin/perl -w use Asterisk::AGI; my $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse(); $AGI->answer(); my $i; $i = $AGI->channel_status(); $AGI->say_digits($i); $i =
2003 Apr 11
1
Weird AGI/X100P behavior
I've got a single phone line coming into an X100P. In extensions.conf I've got this: [inboundzap] exten => s,1,Answer exten => s,2,EAgi,hanguptest.agi I see the ring come in and Asterisk detects it and tries to do something with it: NOTICE[20492]: File chan_zap.c, Line 4017 (ss_thread): Got event 2 (Ring/Answered)... -- Executing Answer("Zap/1-1", "") in
2003 Apr 29
6
callerid send to shell script with system command
hi! anyone has a idea how to send caller id (incoming number) to shell script like: exten => s,1,wait,2 exten => s,2,System(/bin/script callerid-number) exten =>s,3,answer i need to run script in shell with command line like "/bin/script -a 123456789 " this 123456789 must be callerid (incoming call) number. tnx, Thomas
2006 Feb 09
1
Re: Help on Vicidial
Here is another log from the * server CLI, I reall hope some one can help me out on this one. thanks |SELECT count(*) FROM vicidial_auto_calls where status = 'LIVE' and server_ip='127.0.0.1' and campaign_id = '' and call_time < "" and lead_id != '';| -- VDAD get agent: |0|update of vla table: |127.0.0.1 |UPDATE vicidial_live_agents set
2003 Oct 10
1
Asterisk crash on AGI
Hi I've just started to play around with AGI scripts and have run into problems. When I run Asterisk in console mode everything works just fine. If I run Asterisk in 'regular' mode (not console) it crashes if I hang up on the script. I have used Python scripts to test this and also the "agi-test.agi" script. (the Asterisk code was compiled from CVS code just a few days
2007 Nov 14
4
Problem with AGI Script
I have asterisk 1.2.18 running on a new system we just installed. Although I've used AGIs many times in the past, I'm stumped on this one. It may just be a simple issue that I need another eyeset to look at. My AGI does the following: #!/usr/bin/perl #Load a few modules... use Asterisk::AGI; use DBI; $AGI = new Asterisk::AGI; #Grab input from Asterisk my %input =
2009 Apr 08
1
Perl AGI
Hi all, I have the below peace of my AGI script...the problem here is that I cannot fetch the extension value to inside the script and assign it to another variable...I highlighted it in red #!/usr/bin/perl #use DBD::mysql; use DBI; use DBD::mysql; use Asterisk::AGI; ############################ #To read asterisk variable values. $AGI = new Asterisk::AGI; my %input = $AGI->ReadParse();
2006 Feb 28
1
FW: Re: Delay on Phone ringing
Skipped content of type multipart/alternative-------------- next part -------------- asterisk1*CLI> soft hangup Zap/1-1 Requested Hangup on channel 'Zap/1-1' == Spawn extension (macro-exten-vm, s-BUSY, 2) exited non-zero on 'Zap/1-1' in macro 'exten-vm' == Spawn extension (ext-local, 220, 1) exited non-zero on 'Zap/1-1' -- Hungup 'Zap/1-1' --
2003 Sep 12
1
asterisk and defunct perl procs
Trying to figure out why I'm having all of my test (and demo) perl script in a defunct status. Each run creates a problem: ps output root 26253 1356 0 16:39 pts/1 00:00:00 asterisk -vvvc root 26270 26253 0 16:40 pts/1 00:00:00 [pj.pl <defunct>] root 26271 26253 0 16:40 pts/1 00:00:00 [pj.pl <defunct>] root 26273 26253 0 16:40 pts/1 00:00:00 [pj.pl
2004 May 10
1
AGI.pm wait_for_digit() not working for me!!!
Hello everybody!!! I really need your help guys, I am using the AGI mode in meetme application, and I want that AGI should wait for an input from the client/user i.e. a digit and then proceed, but I have used that AGI function agi->wait_for_digit(), but no use....my agi just passes, or ignores this function, where AGI should stop here and wait for the input.... .....my extension in my
2005 Sep 01
1
dialparties.agi is returning no extensions to dial
Hi, I set up a ring group. I would like for people who select a certain voice menu option to ring a list of extensions (I have just one extension in there at the moment) and if it doesn't answer to go to an extension's voice mail. I am using a version of asterisk from CVS, last updated a couple of weeks ago. This line in extensions_addtional.conf sends the call to ringgroup 3 if
2004 Oct 05
5
Asterisk Perl AGI
Hello everybody: This could be a stupid question, or may be not; I'm not sure 'cause I have not a very wide experience working with Asterisk, actually I just started last week. I need to make an IVR system work and I choose working with AGIs, written in Perl. The available documentation I've found show it as a very simple proccess, but it doesn't work for me... and I
2013 Jan 02
3
Dialing out and recording
Hi, I am using asterisk via AGI and want to be able to record a call. The scenario is: 1. A call comes in 2. The call is redirected to a mobile number via a local extension and ChannelRedirect 3. The local extension looks like something this: exten => _X.,1,Dial(SIP/${EXTEN},60,?) exten => _X.,n,Agi(agi://localhost/aj.agi?action=??..) I have looked through all arguments of Dial
2009 Feb 03
2
Contact lookup
Hi All, Asterisk 1.4.12 on CentOS 5 I'd like to be able to look up each incoming CLI to retrieve an associated name, if available, and then pass that to the extensions so that they can see both the name and number of the caller. I'm not after LDAP or anything else maintained externally, just a contact lookup for my system. I suspect that Astdb could be used for this, as could a
2004 May 07
1
meetme conf-background.agi
Hello there! Somebody tried the meetme|b which initiates the conf-background AGI. Actually I want to originate another call from a conference.my AGI originates the call and connects it to the conference, but the calleeee is nowhere My extension exten => 21,1,meetme(21|pb) and my AGI **************************************************************************** #!/usr/bin/perl -w
2007 May 17
4
FastAGI hangs up channel if server is not available
Hi all, Running 1.2.14 When I call a FastAGI script such as this script for an incoming call: [calldirect] exten=>s,1,Answer() exten=>s,2,AGI(agi://192.168.1.175/calldirect?check&${CALLERID(num)}) exten=>s,3,Goto(check_time,s,1) and the FastAGI server is not running (Asterisk gets "connection refused" TCP error), Asterisk just terminates the call like so: May 17