search for: set_callerid

Displaying 10 results from an estimated 10 matches for "set_callerid".

2005 Oct 12
3
AGI and set_callerid for number and name
Hi, I've been trying to use the set_callerid function in the AGI. It sets the CallerIDname properly but I can't figure out how to set the CallerIDnumber. Is it at at possible ? Cheers. SL
2014 Aug 06
1
different callerid for channels
Hi, all. Is there any chance to set individual CALLERID(num) for channels SIP/peer1, SIP/peer2 in a call Dial(SIP/peer1&SIP/peer2). There is an option to use Dial(SIP/peer1&SIP/peer2,,M(set_callerid)), but the macro will be launched after the channel answered. Not really want to use local channel because of not quite usable cdr. Thanks.
2003 Apr 29
1
ISDN - Dialout MSN setting ??
I haven't managed to work this one out yet, so any assistance appreciated ... We want to be able to set the outgoing caller-id on, BRI according to the extension but haven't worked how with asterisk ? we have several hundred inbound numbers on these BRI so we are able o use any one these to sett on outdial. One other point I have been told should work, bu have no way of trying... In
2006 Nov 08
0
Unknown caller id problem
Hi I have a * box with TE110P. When call comes in via ISDN without caller id information, asterisk sets the caller id as "Unknown". Is there any way to change this? I've tried below but only works for calls with caller id. $AGI->set_callerid('74442932'); Thanks Jay
2010 May 11
2
Lookup ${EXTEN} in database, update context/route if found... AGI?
Greetings all- I have a handful of Asterisk 1.4.x installations where users dial 'outbound calls' to the PSTN even though the destination is on the same Asterisk box or on another Asterisk box on the same network. Instead of paying twice for the call to go out to the PSTN on one channel and back in on another channel, I'd like the ability to lookup the destination number in a MySQL
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
2007 Dec 10
0
CAPI didn't get a frame | avoiding initial deadlock | multiple instances of Asterisk
...111) exited non-zero on 'CAPI/ISDN1/141-721' Dec 6 10:11:07 VERBOSE[5858] logger.c: -- Executing NoOp("CAPI/ISDN1/141-721", "from-trunk - h - 112 - 112") in new stack Dec 6 10:11:07 VERBOSE[5858] logger.c: -- Executing AGI("CAPI/ISDN1/141-721", "set_callerid.agi") in new stack Dec 6 10:11:08 DEBUG[5858] res_agi.c: CAPI/ISDN1/141-721 hungup Dec 6 10:11:08 VERBOSE[5858] logger.c: == Spawn extension (from-trunk, h, 2) exited non-zero on 'CAPI/ISDN1/141-721' Dec 6 10:11:08 DEBUG[2692] channel.c: Avoiding initial deadlock for 'CAPI/ISD...
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.
2006 May 23
3
AGI ?
...xHost = "myIAXHost"; my $gSipHost = "MYSIPHost"; ########### SYSTEM VARIABLES ##################### my $AGI = new Asterisk::AGI; my $gDialedNo = shift; my $gNumber = ""; my $gPrefix = ""; my $gAreaCode = ""; ### Sets Outbound CallerID ### $AGI->set_callerid($callerId); open(LOG, ">>$log") or die("Couldn't open $log\n"); ### Log Statement for Troubleshooting ### #print LOG "(". localtime() .") Got Dialed number: $gDialedNo\n"; ### Calls the function parseDialed to seperate the dialed number into area...
2012 Jan 12
1
how to set callerid in php AGI file.
Hi, I am using phpagi for agi scripting. and want to update callerid number but didn't get any success. please help me how to update PHPAGI is new for me. Below is the code which I write. #!/usr/bin/php -q <?php set_time_limit(30); //require(.phpagi.php.); include("phpagi.php"); $agi = new AGI(); //answer the call $agi-> answer();