similar to: Call Forward and AGI

Displaying 20 results from an estimated 4000 matches similar to: "Call Forward and AGI"

2007 Jun 28
1
Avaya IP Office DTMF Issue
Hi I have a client using a Avaya IP Office PBX that is taking a SIP trunk from me terminating on a * box. It all works perfectly apart from DTMF. Although you can hear the tones they don't seem to get recognised. I have tried DTMF mode auto, inband, out of band and rfc2833 but no luck. Any ideas? Regards Jon -- Jon Farmer Telford, Shropshire, UK
2006 May 01
1
voicemail dialout
Hi How do i disable dialling out from voicemail? -- Jon Farmer Telford, Shropshire, UK
2006 Apr 25
3
billing realtime
Hi all I think this could be en old question. I would like to do a realtime billing prepaid system, mainly using asterisk. I have found few things; I can not get CDR function into agi because asterisk set them once the call is absolutely finish (at least main values for the main porpouse, billsec,duration, etc..) There is a patch that allow you to use CDR
2006 Apr 05
5
Dial Plan Logic Problem
Hi I can't for the life of me work out why this is not working. When in the campon contect if you hit a DTMF key 2 you get moved to the exten => 2 defined in the mainmenu context not the exten => 2 defined in the campon context. What is wrong? The same happens if you hit key 1. [campon] exten => _*1XXX,1,Answer exten => _*1XXX,2,SetCallerID(${CALLERIDNUM}) exten =>
2007 Feb 01
0
Dialplan programming vs. AGI vs. ???
This depends on your application. As you say you are able to do everything you require in dialplan at that is great. I have used AGI fairly extensively becuase the stuff I want to do can't be done in dialplan alone. For instance i have written a auto attendants that can be dynamically controlled by a non-techie user with real time and in call reconfiguration. Also i have written IVR apps that
2007 Feb 08
2
problem with asterisk AGI
I have a fairly complicated setup. Extensions (1,2 and 3). In 3 - I execute AGI in java which plays few wav files depending on external parameters. Can I have a dial plan inside my AGI? If not, how do I accomodate user who needs to reach extension 2 from my agi? I have tried stream file and get data but the two commands did not work at all.
2006 Dec 06
2
MWI across multiple servers
Been working fine for us so far. -----Original Message----- From: Andrew Joakimsen [mailto:joakimsen@gmail.com] Sent: Wednesday, December 06, 2006 6:33 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] MWI across multiple servers How well would NFS work in this situation? On 12/6/06, Porier, Jeremy M. < jporier@ccu.edu> wrote: We are about to
2006 Jun 12
2
How to retrieve voicemail
Hi, voicemail are working ok, I receive message as attach via email. My question is : how can the user call asterisk and listen to his voicemessages ? thanks Victor
2006 Oct 30
1
Registration problem
Hi all, i have an * version: Asterisk SVN-branch-1.2-r45691, I need to register a linksys 922 phone thru internet and when I make sip debug command i see this debug information: -- SIP read from x.x.x.x:1024: REGISTER sip:mysipserver.com SIP/2.0 Via: SIP/2.0/UDP x.x.x.x:1025;branch=z9hG4bK-839856dc From: "SPA922" <sip:5403@mysipserver.com>;tag=685bbad1fae3325do0 To:
2007 Jan 20
3
Cisco 7970 Unprovisioned
Hi! I did manage to load phone with SIP image : SIP70.8-0-3S, made SEP-MAC.cnf.xml, but phone never read the configuration from it. On the screen it's written "Unprovisioned", and phone is not trying to register with asterisk. Please help!! MihaelaMJ -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Dec 27
3
How to connect two asterisk server
Hi all, I need to connect two asterisk server in same network and i'm using sip user as my clients...... plz anyone suggest me.... Regards, Thiru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061227/aa4e409c/attachment.htm
2006 Dec 04
4
MySQL cmd % pattern matching
Hi All Does anyone know how to use the MySQL cmd in Asterisk with LIKE and % in the query? I have: exten => s,5,Set(query=SELECT name from contacts where tel like %${number}) exten => s,6,MySQL(Connect connid hostname username password dbname) exten => s,7,MySQL(Query resultid ${connid} ${query}) But there seems to be a problem with the % sign and I don't know how to
2004 Feb 25
4
dial plan question
Hi, I have a basic dial plan question; Here is the scenario. Call comes through IAX and my * authenticate, then collect the digits and dials out, simple :). Here is the dial plan; [did-in] ;for did callers exten => 866219xxxx,1,Ringing exten => 866219xxxx,2,Wait,4 exten => 866219xxxx,3,Answer exten => 866219xxxx,4,Authenticate(/etc/asterisk/authenticate.txt|a) exten =>
2010 Sep 16
5
AGI Delimiter in 1.6
Hi I am currently using 1.2.x and 1.4.x behind OpenSER. One of the things I do on INVITES is to re-authenticate the user from OpenSER. Then when the INVITE gets passed to Asterisk I capture the AUTH to a variable in the dialplan and pass to an AGI script. I am now trying to set the same thing up in 1.6 However because the argument delimter in 1.6 has changed from pipe to comma this breaks as the
2006 Jul 02
2
:include breaks has_many :order
It would appear that using :include on a model that has_many with an :order on another model makes it so that the order is ignored. Is this supposed to happen? Strikes me as odd behavior. For example class Farmer < ActiveRecord::Base has_many :cows, :order => ''position'' end class Cow < ActiveRecord::Base acts_as_list :scope => :farmer end If I do
2001 Jan 26
1
[fwd] Ogg123 crash report on EV4 Multia
----- Forwarded message from Telford Tendys <telford@triode.net.au> ----- Delivery-Date: Thu Jan 25 22:22:57 2001 Date: Fri, 26 Jan 2001 16:26:27 +1100 From: Telford Tendys <telford@triode.net.au> To: feedback@vorbis.com Subject: Comments on your code User-Agent: Mutt/1.2.5i Dear Vorbis, I didn't even know about ogg or vorbis until I was at a conference and someone said, ``if
2011 Jan 16
4
persistence by reachability
Hello guys, I have these models class Farmer < ActiveRecord::Base has_many :cows end class Cow < ActiveRecord::Base set_table_name :cows belongs_to :farmer end ... graph = Farmer.find(x) # Retrieves four cows of x graph.cows[1].name = "Trottolina" graph.save while adding a new cow to collection works perfectly fine, ActiveRecord doesn''t
2005 May 25
15
PHP/AGI Problem
Hi I am currently developing a IVR application using PHP/AGI. I am using the PHPAGI class at http://phpagi.sourceforge.net/ to handle the commuication with my *. The application basically asks a caller to enter in some information which is then processed and a answer is read back out to them. I want the application to loop back to the beginning after giving the answer so they can try another
2019 Apr 04
2
PJSIP Delay in Dialing
Thanks Joshua. Hopefully I'll be able to retry tomorrow. On Thu, 4 Apr 2019 at 15:30, Joshua C. Colp <jcolp at digium.com> wrote: > On Thu, Apr 4, 2019, at 11:27 AM, Mark Farmer wrote: > > Thanks, I did enable debugging but didn't see any attempts to resolve > > hostnames. I will give it another look. > > > > I did have an empty resolver_unbound.conf
2006 Nov 16
2
Fwd: building-a-multi-site-supported-application
Was looking for creating subdomains dynamically, and found this one. I dont know how to set this up in my linux PC(The eg. is in mac) http://railstips.org/2006/11/13/building-a-multi-site-supported-application Any help is appreciated -- -- Amala Singh http://www.tamil.net/ தமிழ் இணையம் Telford, UK http://www.mindcolonies.com http://www.ryze.com/go/amalasingh -- -- Nandri, Amala Singh