similar to: Problem in extensions.conf

Displaying 20 results from an estimated 30000 matches similar to: "Problem in extensions.conf"

2004 May 05
1
Problem in Extension.conf
Hi, Have a problem in my extension.conf: I have: [sip] exten => _333.,1,wait,3 exten => _333.,2,Answer exten => _333.,3,AbsoluteTimeout,7 exten => _333.,4,Hangup I wanted to test if * is executing this dial plan by calling 3335254255 for example. The problem is as follow: It waits, it answers but it does not seems to see the Absolutetimeout: call goes forever. What's wrong? Am
2004 May 05
0
Problem with extension.conf
Hi, I am new on this field and I'm looking for some help I have this conf: [sip] exten => _333.,1,wait,3 exten => _333.,2,Answer exten => _333.,3,AbsoluteTimeout,7 exten => _333.,4,Hangup this works up to answer. then it can not stop after the 7 sec i specified in AbsoluteTimeout. Why? Any help? Regards Ghislain
2004 Jan 18
0
Office-wide paging with Asterisk and Cisco 7960 7940 phones
I spoke the other day about my preliminary tests with office-wide paging with Cisco phones using the new SIP 6.1 image which supports auto-answer. I've got a small and crude recipe for those of you who want to experiment and hopefully create some better and more complete examples than the one I've thrown together below. Create a new line on each of the Cisco phones, and put the
2004 Aug 09
3
AbsoluteTimeout Inside A Macro
Hi all, Is it just me and not reading the docs right, or has anybody else had problems with the AbsoluteTimeout application and the 'T' extension when used inside a macro? [macro-attended] ; ARG1 is the device to dial out on, SIP or Zap, or whatever ; ARG2 is the extension to dial using 'attended' dialing exten => s,1,AbsoluteTimeout(30) exten =>
2006 Mar 01
0
perl AGI won't run from extensions.conf
Dear Asterisk Nation, I am attempting to write a perl AGI script that will give the caller status of a P.O. When I run the script directly (by hand) it executes. I know this because it leaves data in TEST.txt. However, when I try to execute it via extensions.conf the CLI says it executes returning 0, but it does not dump data into TEST.txt. Can anyone help me determine why?
2004 Aug 24
0
How can i configure extensions.conf.
I have TDM40B, TDM04B cards, 4 analog and digital phones. First I want to use 4 analog phones with my TDM40B card. I would like to dial between 4 analog phones. The dialing numbers for 4 analog phone will be 800,801,802 and 803. These are my conf files. /etc/zaptel.conf fxsks=1-4 fxoks=5-8 loadzone = us defaultzone=us ;;;;;;;;;;; /etc/asterisk/zapata.conf [channels] relaxdtmf=yes
2007 May 28
1
[1.2.18] Wrong steps in extensions.conf?
Hello, Sometimes, when a call comes in from the PSTN through our VoIP gateway, the information that is sent to our web page that logs calls includes the original CID name instead of the one that is we expect to be rewritten on the fly using Asterisk's LookupCIDName: ================= ;extensions.conf [internal] exten => group,1,LookupCIDName exten =>
2003 Dec 08
3
Strange variable chopping from AGI's
AGI's are resulting in unusual behaviors. Can someone please tell me if this is my inappropriate use of AGI's, inappropriate use of Time::HiRes, or a bug with *: I call this script twice: #!/usr/bin/perl use Time::HiRes qw( gettimeofday ); ($seconds, $microseconds) = gettimeofday; $hirestime = sprintf("%s","$seconds$microseconds"); print "SET VARIABLE
2009 Jun 23
1
[extensions.conf] Any idea why not working as it should?
Hello I noticed a small bug in the way my extensions.conf work: Users can choose extensions 1-4 or 9 to tell why they're calling, and I'll send an e-mail to the person(s) to whom is involved. Extension 4 is actually for personal messages for User1, and extension 9 is for everyone (User1, User2, and User3). => For some reason, when the caller chooses extension 4, both User1 and User2
2007 Apr 11
3
Execute EAGI script with params from extensions.conf
How can I execute an EAGI script with params from extensions.conf Example python script: InfMsg -s 1 in my extensions.conf exten => 492,1,Answer exten => 492,2,eagi,InfMsg -s 1 exten => 492,3,Hangup() It doesn?t work my * report... -- Executing [92@telpin-112:2] EAGI("Zap/4-1", "InfMsg -s 1") in new stack -- Launched AGI Script /var/lib/asterisk/agi-bin/InfMsg
2008 Dec 23
1
second trunk in extensions.conf
I have a TE210P digium card that has 2 E1/T1 ports. the code in my extensions.conf file for span 1 is : [globals] CONSOLE=Console/dsp ; Console interface for demo TRUNK=Zap/g1 ; Trunk interface TRUNKX=Zap/g2 ; 2nd trunk interface ... ... ; dial a long distance outbound number to SPAIN ; This
2011 Feb 24
2
[1.4] Still can't get it to call back
Hello No matter what I try, Asterisk still fails dialing back through a callfile built through an AGI script. The whole thing works fine when the original call that triggers Asterisk is from an internal extension (Xlite), but it fails when it's from my cellphone ringing through the FXO/Zaptel port and I want to wait a few seconds and call back through the FXO/Zaptel. Could it that even
2005 Jan 10
0
Problems calling between two local SIP extensions
Hi, I have two local SIP extensions (both bt100). One is on remote location behind another nat (16), but everyithing seems to be setup correctly as it can register and is listed as OK(57ms). However I can only call in one direction between those two. Extensions are defined in same context: exten => 11,1,Macro(oneline,SIP/11) exten => 16,1,Macro(oneline,SIP/16) both using same macro
2004 Sep 14
1
asterisk does not start...
When I do a 'asterisk -vvvvvc' I get following, but asterisk does NOT stay up: == Parsing '/etc/asterisk/asterisk.conf': Found == Parsing '/etc/asterisk/extconfig.conf': Found
2005 Jan 25
1
Re: I think your problem has to do with how you set the variable.
No Jeremy, excuse me, the error was in my email. The correct command is /bin/echo "Channel: Local/$1@chiamamezzi-dialout";\ /bin/echo "Variable: callid=123456|number=$1|url=pippo|menuid=FOP|redirectnum=0554202880";\ /bin/echo "Context: chiamamezzi-Wave";\ /bin/echo "Exten: s";\ /bin/echo "Priority: 1";\ /bin/echo "Callerid: Asterisk Automatic
2011 Feb 24
2
[1.4.39.2] Simple AGI doesn't reply
Hello The following, dead simple Bash script ran as AGI doesn't reply to Asterisk: ============= extensions.conf [from_fxo] exten => s,1,Wait(2) exten => s,n,Set(CID=${CALLERID(num)}) exten => s,n,AGI(/var/tmp/basic.agi) exten => s,n,Hangup() ============= /var/tmp/basic.agi #!/bin/bash #Ripped from #http://lists.digium.com/pipermail/asterisk-users/2003-July/008554.html while
2005 Feb 18
3
Help asterisk startup errors
Hello all, HI i am very new to asterisk and my boss needs me to investigate setting up asterisk for a new client. I have downloaded and installed (make, make install and make progdocs)asterisk on my personal computer and when i try to run it (./asterisk -vvvc) i get the following output below: NOTE: i am running REDHAT 9.0 on a 796MHz cpu machine: I am excited to be able to work with asterisk
2005 Aug 11
2
wildcard/FXO config
Trying to config the latest Asterisk/zaptel with an Digium Wildcard and a single X100m FXO interface connected to a POTS analog line. Build and install of both work ok - I'm using Suse 8 on a dual Pentium box. I load the driver with "modprobe wctdm" and the LED on the wildcard lights up. Then I start Asterisk with "asterisk -vvvgc" and asterisk fails to start. The
2005 Jan 23
0
Upgrade to the newest cvs now asterisk will not start
Hello group I just update to the newest CVS now I'm not able to get asterisk to start. No error during the make or make install I did a make clean before the make;make install Any help would be great!!!! Here is the output asterisk -vvvvvgcd Parsing /etc/asterisk/asterisk.conf Parsing /etc/asterisk/extconfig.conf == Binding realtime_ext to mysql/realtime/extensions_table == Binding
2005 Jan 23
0
Upgrade to the newest cvs now asterisk will notstart
Looking at the error I tried moving chan_modem* out of the modules folder and asterisk started and its working again... Not sure what changed in the chan_modem_i4l.so but removing it from the folder fixed my problem. -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Eric Hall Sent: Sunday, January 23, 2005