search for: nextension

Displaying 9 results from an estimated 9 matches for "nextension".

Did you mean: extension
2009 Sep 27
0
Is channel local what I need?
On 1.6.0.16-rc1: I'm using app_fax.so to send a fax, and then send a confirm. 'send' => 1. Set(UniqueFile=/var/spool/asterisk/outgoing/call-${UNIQUEID}) [pbx_config] 2. System(env echo -e "Channel:DAHDI/g0/........\\nContext:fax-tx\\nExtension: s\\nPriority: 1\\n" >${UniqueFile}) [pbx_config] [ Context 'fax-tx' created by 'pbx_config' ] 's' => 1. SendFAX(${FaxFile}.tif) [pbx_config] 'h' => 1. Set(RID=${REMOTESTATIONID}) [pbx_config] ........
2009 Sep 27
1
digium fax: failed to queue document
In my quest to actually send a fax, I'm now stuck trying to send the confirm. First I send the fax: -- Executing [send at outbound-fax:2] System("Console/dsp", "env echo -e "Channel:DAHDI/g0/12036378447\\nContext:fax-tx\\nExtension: s\\nPriority: 1\\n" >/var/spool/asterisk/outgoing/call-1254012878.0") in new stack -- Auto fallthrough, channel 'Console/dsp' status is 'UNKNOWN' << Hangup on console >> -- Attempting call on DAHDI/g0/12036378447 for s at fax-tx:1 (Retry 1)...
2012 Mar 07
1
Finish ChanSpy() when channel spied hangs up
Is there any way to do this? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20120307/77764e4b/attachment.htm>
2003 Oct 13
1
PRI/E1: machine freeze/dies after a few calls
...er Versuche anz2=$3 # Kan?le sle=$4 # Timeout bis zum n?chsten Versuch if [ -z $4 ]; then sle=0 fi s=1 i=1 while [ $s -le $anz ];do echo "$s try started..." while [ $i -le $anz2 ];do echo -e "Channel: Zap/g1/$n$i\nMaxRetries: 0\nContext: callgen\nExtension: 1\nPriority: 1\nCallerid:334778\n" > /var/spool/asterisk/outgoing/call.$i.$s sleep 2 i=$((i + 1)) done i=1 echo "sleep for $sle sec....." sleep $sle s=$((s + 1)) done The calls goes out over the first two ports and through a pri switch (teles...
2004 Jun 21
0
A Callback AGI script
...import sys context="incoming" extension="300" canal = "CAPI/02xxx89127:"+sys.argv[1] cf = open("/var/spool/asterisk/outgoing/"+sys.argv[1]+".call",'w+') cf.write("Channel:"+canal+"\nMaxRetries:2\ncontext:"+context+"\nextension:"+extension+"\npriority:1\nRetryTime:10\nWaitTime:20\n") [root@asterisk1]# cat /etc/asterisk/extensions.conf | grep -i 300 exten => 300,1,DISA,9641|incoming exten => 300,2,Hangup
2005 Feb 28
1
Manager "Message: Originate failed" beinggenerated when callee does not pick up
<<I am getting "Message: Originate failed" even the phone is ringing on the other end of the line.>> Originate will ring your own extension first and when you pick up, call the other number. If you don't pick up your extension, you will receive the message you see. Bill Seddon ________________________________ From: asterisk-users-bounces@lists.digium.com on behalf
2011 May 19
2
click to call with php
Hello, i have asterisk 1.4 installed and i want to use click to call in order to do an outbound call if there is any php code in order to do this operation thanks and regards -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110519/417ac394/attachment.htm>
2011 Aug 24
0
Time-limited calls -- revisited
...warn_time=${STRFTIME($[${EPOCH} + 60],,%Y%m%d%H%M.%S)}) exten => s,n,NoOp(Right now the time is ${now}) exten => s,n,NoOp(Warning will sound at ${warn_time}) exten => s,n,System(echo -e "Channel:Local/s at one-minute-warning\nContext:one- minute-warning\nSetVar: __WARNED_PARTY=${ARG1}\nExtension:pbk" > /tmp/warn_${warn_time}) exten => s,n,System(touch -t ${warn_time} /tmp/warn_${warn_time}) exten => s,n,System(mv /tmp/warn_${warn_time} /var/spool/asterisk/outgoing/) exten => s,n,Set(TIMEOUT(absolute)=119) -- AJS Answers come *after* questions.
2013 Feb 20
2
exten => h,n,AGI(generateCall.php,${NEXT})
...lNumbers[$next]) { $callFile = "/var/spool/asterisk/outgoing/".$outdialNumbers[$next].".call"; $f = fopen($callFile,'w'); $callFileContent = "\nChannel: dongle/dongle0/".$outdialNumbers[$next]."\nContext: call\nExtension: call\nPriority: 1\nSet: NEXT=".$next."\n"; fwrite($f, $callFileContent); fclose($f); chmod($callFile, 0777);}?>____________________________________________________________________________mac at almighty ~ $ ls /usr/share/asterisk/agi-bin/ -ltotal 4-rwxrwxrwx...