search for: confno

Displaying 20 results from an estimated 83 matches for "confno".

Did you mean: confn
2007 Mar 15
1
asterisk n-way call problem
...ATURES=nway-start) exten => _XX,2,SIPDtmfMode(inband) exten=> 10,3,Dial(SIP/saad,,tT) exten=> 10,n,Hangup exten=> 11,3,Dial(SIP/riz,,tT) exten=> 11,n,Hangup exten=> 12,3,Dial(SIP/rehmat,,tT) exten=> 12,n,Hangup [dynamic-nway] exten => _XXX,1,Answer exten => _XXX,n,Set(CONFNO=${EXTEN}) exten => _XXX,n,Set(MEETME_EXIT_CONTEXT=dynamic-nway-invite) exten => _XXX,n,Set(DYNAMIC_FEATURES=) exten => _XXX,n,MeetMe(${CONFNO},pdMX) exten => _XXX,n,Hangup [dynamic-nway-invite] exten => 0,1,Read(DEST,dial,,i) exten => 0,n,Set(DYNAMIC_FEATURES=nway-inv#nway-noinv)...
2012 Jan 23
1
ConfBridge details
...re used. I tried something like the below, but not only does Confbridge not return, but i'd need something that erases the database entry after the conference is empty, not after 1 particular user leaves. [macro-confbridge-setup] exten => s,1,Set(NUM=$[0${NUM} + 1]); exten => s,n,Set(CONFNO=99${NUM}) exten => s,n,GotoIf(${DB_EXISTS(confbridge:${CONFNO})}?1) exten => s,n,Set(DB(confbridge/${CONFNO})=1) [foo] exten => s,1,Macro(confbridge-setup) exten => s,n,ConfBridge(${CONFNO}) exten => s,n,NoOp( ${DB_DELETE(confbridge/${CONFNO})} ) -- Jeremy Kister http://jeremy....
2007 Apr 23
1
problem with 3-way conferenicing
...sole that "res_features.c:1415 ast_bridge_call: Bridge failed on channels SIP/ua1-ac750040 and AsyncGoto/Local/33@nway-conf-dest-7ecf,1<ZOMBIE>" Here is my dial plan: [manu] exten => ca1,1,Dial(SIP/ca1,,wWtTkKrR) [nway-conf] exten => _.,1,Answer exten => _.,n,Set(CONFNO=${EXTEN}) exten => _.,n,Set(MEETME_EXIT_CONTEXT=nway-conf-invite) exten => _.,n,Set(DYNAMIC_FEATURES=) exten => _.,n,MeetMe(${CONFNO},pdMX) exten => _.,n,Hangup [nway-conf-invite] exten => 0,1,Read(DEST,dial,,i) exten => 0,n,Set(DYNAMIC_FEATURES=nway-conf-inv#nway-conf-noi...
2008 Aug 20
1
3-way conference call
...3 after that. Any body have some idea for my problem?? Here my dial plan: ////////////////////////////////extensions.conf/////////////////////////////// [manu] exten =>100,1,Dial(SIP/user2,,tT) exten =>200,1,Dial(SIP/user3,,tT) [nway-conf] exten =>_X,1,Answer exten =>_X,n,Set(CONFNO=${EXTEN}) exten =>_X,n,Set(MEETME_EXIT_CONTEXT=nway-conf-invite) exten =>_X,n,Set(DYNAMIC_FEATURES=) ;exten =>_XXX,n,AGI(conf.agi,adduser) exten =>_X,n,MeetMe(${CONFNO},pdMX) ;exten =>h,1,DeadAGI(conf.agi,deluser) exten =>_X,n,Hangup [nway-conf-invite] exten =>0,1,Rea...
2011 Jun 02
1
Three-way conference in Asterisk
Hi How to set a threeway conference in asterisk only for VOIP (I am using only SIP channel). Thanks Nikhil
2007 Jun 08
0
Unexpected behaviour shown by "meetme kick confno usernumber"
Hi, I have Asterisk 1.4.4 on my linux box. Whenever i try to kick a participant in conference say "59681446" using following command meetme kick 59681446 1 where "1" is the participant number, following are the actions that asterisk takes * IVR "You have been kicked from this conference" is played. * Participant is taken out from that conference
2013 Feb 20
1
Meetme and MEETME_EXIT_CONTEXT
...ng Asterisk 1.8.12.2 I am having trouble with exiting the conference room by entering a single digit. option X of the Meetme()-application should do this. I have following in extensions.conf : /exten => _1000X,n,Set(MEETME_EXIT_CONTEXT=dynamic-nway-invite)// //exten => _1000X,n,MeetMe(${CONFNO},dMX)// // // //[dynamic-nway-invite]// //exten => 0,1,NoOp(confno = ${CONFNO})// //exten => 0,n,Read(DEST,dial,,i)// //exten => 0,n,Set(DYNAMIC_FEATURES=nway-inv#nway-noinv)// //exten => 0,n,Dial(Local/${DEST}@${LocalContext},,g)// //exten => 0,n,Set(DYNAMIC_FEATURES=)// //exten =&g...
2015 Dec 22
2
asterisk 13 n-way call problem
...-- Executing [6052 at dynamic-nway:2] Answer("OOH323/7272-6385", "") in new stack -- Executing [6052 at dynamic-nway:2] Answer("SIP/6052-00000ab6", "") in new stack -- Executing [6052 at dynamic-nway:3] Set("OOH323/7272-6385", "CONFNO=6052") in new stack -- Executing [6052 at dynamic-nway:3] Set("SIP/6052-00000ab6", "CONFNO=6052") in new stack -- Executing [6052 at dynamic-nway:4] Set("OOH323/7272-6385", "MEETME_EXIT_CONTEXT=dynamic-nway-invite") in new stack -- Execu...
2003 Jul 03
1
That is not a valid conference number meesage
I've just started trying to use this functionality and I get the invalid conference number message. Any ideas? I started out with: exten => 7315,1,Meetme,1234 and confno = 1234 and then tried: exten => 7315,1,Meetme and confno = 1234 and enter 1234 at prompt. All give the same message.
2006 Mar 08
1
Location of MeetMe Recordings
...terisk 1.2.4 is love being able to recording conferences. However, using the default variables, the files are being written to /var/lib/asterisk/sounds instead of /var/spool/asterisk/meetme. If I change MEETME_RECORDINGFILE variable to something different in works, bit I lose the ability to define CONFNO as part of the file name, which is handy when sorting for users to review. I call meetme using (,r,) so the conference number is not defined yet. My /etc/asterisk/asterisk.conf file is set to point to /var/spool/asterisk for recording related bits, and voicemail and general recordings are being st...
2008 Jan 15
3
Meetme recording
Hello, Is there a way to change the format from the default? 'r' - Record conference (records as ${MEETME_RECORDINGFILE} using format ${MEETME_RECORDINGFORMAT}). Default filename is meetme-conf-rec-${CONFNO}-${UNIQUEID} and the default format is wav. - requires chan_zap.so Many thanks ******************************************************************** This email and any attachments are confidential to the intended recipient and may also be privileged. If you are not the intended recipient please d...
2004 May 23
1
*** Asterisk Sunday News: Conferences on the phone and IRL - "in real life"
...er a conference (in some cases creates a dynamic conference) - MeetMeAdmin - kick users, lock conferences, mute conferences - MeetMeCount - count number of participants for a conference There's also a new family of CLI commands for managing MeetMe: - Meetme List conferences - MeetMe kick <confno> <user> Kick a user out of a conference - MeetMe kick <confno> all Kick all users - MeetMe list <confno> List participants in a conference - MeetMe lock <confno> Lock a conference - no more users - MeetMe unlock <confno> Unlock a conference - MeetMe mute <co...
2004 Jul 11
1
Echo issues (again...)
...g at. This call has echo. Channel: 2 File Descriptor: 20 Span: 1I> Extension: Dialing: no Context: incoming Caller ID string: "External Call" <99999999> Destroy: 0 Signalling Type: FXS Loopstart Owner: Zap/2-1 Real: Zap/2-1 (Linear) Callwait: <None> Threeway: <None> Confno: -1 Propagated Conference: -1 Real in conference: 0 DSP: yes> Relax DTMF: no Dialing/CallwaitCAS: 0/0 Default law: ulaw Fax Handled: no Pulse phone: no Echo Cancellation: 128 taps unless TDM bridged, currently ON Actual Confinfo: Num/0, Mode/0x0000 Actual Confmute: No Actual Hookstate: Offhook...
2004 May 07
6
X100P keeping PSTN line Offhook
...oblem. Thanks!!! ======================================== pbx1*CLI> zap show channel 1 Channel: 1 File Descriptor: 31 Span: 1 Extension: Context: bell Caller ID string: Destroy: 0 Signalling Type: FXS Kewlstart Owner: <None> Real: <None> Callwait: <None> Threeway: <None> Confno: -1 Propagated Conference: -1 Real in conference: 0 DSP: no Relax DTMF: yes Dialing/CallwaitCAS: 0/0 Default law: ulaw Fax Handled: no Pulse phone: no Echo Cancellation: 128 taps, currently OFF Actual Confinfo: Num/0, Mode/0x0000 Actual Confmute: No Actual Hookstate: Offhook ========= zapata.conf...
2007 Jul 17
5
Zap channels unavailable?
...for hours now. Channel: 1 File Descriptor: 11 Span: 1 Extension: Dialing: no Context: from-pstn Caller ID: 702821667 Calling TON: 33 Caller ID name: Destroy: 0 InAlarm: 0 Signalling Type: PRI Signalling Radio: 0 Owner: <None> Real: <None> Callwait: <None> Threeway: <None> Confno: -1 Propagated Conference: -1 Real in conference: 0 DSP: no Relax DTMF: no Dialing/CallwaitCAS: 0/0 Default law: alaw Fax Handled: no Pulse phone: no Echo Cancellation: 128 taps unless TDM bridged, currently OFF PRI Flags: Resetting PRI Logical Span: Implicit Hookstate (FXS only): Onhook If anyone...
2008 Oct 20
1
Zaptel FXO offhook when connected to PSTN
...I> zap show channel 4 Channel: 4 File Descriptor: 18 Span: 11* Extension: Dialing: no Context: from-pstn Caller ID: Calling TON: 0 Caller ID name: Destroy: 0 InAlarm: 1 Signalling Type: FXS Kewlstart Radio: 0* Owner: <None> Real: <None> Callwait: <None> Threeway: <None> Confno: -1 Propagated Conference: -1 Real in conference: 0 DSP: no1* Relax DTMF: no Dialing/CallwaitCAS: 0/0 Default law: ulaw Fax Handled: no Pulse phone: no Echo Cancellation: 128 taps unless TDM bridged, currently OFF Actual Confinfo: Num/0, Mode/0x0000 Actual Confmute: No Hookstate (FXS only): Onhook...
2005 Jun 28
0
BRIstuff/OctoBRI problem: Ring requested on unconfigured channel 255/255 span 5
...l 255/255 span 7 pbx*CLI> zap show channel 131 Channel: 131 File Descriptor: 140 Span: 7 Extension: Dialing: no Context: from-s0-faxmodems Caller ID string: Destroy: 0 InAlarm: 0 Signalling Type: PRI Signalling Owner: <None> Real: <None> Callwait: <None> Threeway: <None> Confno: -1 Propagated Conference: -1 Real in conference: 0 DSP: no Relax DTMF: no Dialing/CallwaitCAS: 0/0 Default law: alaw Fax Handled: no Pulse phone: no Echo Cancellation: 128 taps unless TDM bridged, currently OFF PRI Flags: Call PRI Logical Span: Implicit Actual Hookstate: Onhook pbx*CLI> zap sh...
2004 Jan 21
1
Zap show channel
What are the meaning of these Zap show channel output? Caller ID string: Owner: <None> Real: <None> Callwait: <None> Threeway: <None> Confno: -1 Propagated Conference: -1 Real in conference: 0 DSP: no Relax DTMF: no Dialing/CallwaitCAS: 0/0 Default law: ulaw Fax handled: no Pulse phone: no Echo Cancellation: 0 taps unless TDM bridged, currently OFF Actual Confinfo: Num/0, Mode/0x0000 Actual Confmute: No Are these settings configurable...
2004 Nov 27
1
Meetme Help !!!!
...ence ? 2. how to add a user ? 3. How can a user join a conference ? After looking at certain links on Net I tried to configure meetme.conf like this : [rooms] ; ; Usage is conf => confno[,pin] ; conf => 1234 And in extension.conf: exten => 8600,1,Meetme,1234 When I try to dial 8600 from client ..nothing happened ? even no logs on server ? when I give meetme comm...
2009 Dec 18
0
DTMF doubler when using READ()
Hi there, I have some problems when using READ() statement in the dialplan to collect DTMF digits. I'm using the following within my extensions.conf to receive 6 digits exten => 9070,n,Read(CONFNO,conf-getpin,6) So far it works! The user getting the announcement and asterisk waits for 6 digits. User entered "102030", but asterisk gets "102033"!!! Executing [9070 at incoming:10] Read("SIP/1.1.1.1-08a3dfd0", "CONFNO|conf-getpin|6") in new stack...