RE: [Asterisk-Users] Queue() with timeout=0

2006-02-23 Thread Bart van Daal
Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Queue() with timeout=0 On 01/31/06 20:49 Bart van Daal said the following: I thought a nul-value as the timeout variable would do (Queue(654|t|||0)). reading the code in app_queue.c, you've not provided a null value

RE: [Asterisk-Users] Queue() with timeout=0

2006-02-03 Thread Bart van Daal
-Commercial Discussion' Subject: RE: [Asterisk-Users] Queue() with timeout=0 On 01/31/06 20:49 Bart van Daal said the following: exten = 654,1,Answer exten = 654,2,SetCIDName(${CALLERIDNAME}) exten = 654,3,SetVar(MONITOR_FILENAME=/var/spool/asterisk/monitor/q${EXTEN}-$ { TIMEST AMP

Re: [Asterisk-Users] Queue() with timeout=0

2006-02-03 Thread Dinesh Nair
On 01/31/06 20:49 Bart van Daal said the following: I thought a nul-value as the timeout variable would do (Queue(654|t|||0)). reading the code in app_queue.c, you've not provided a null value but rather provided a value of 0, as such it will behave as you've observed. try using

RE: [Asterisk-Users] Queue() with timeout=0

2006-02-01 Thread Bart van Daal
On 01/31/06 20:49 Bart van Daal said the following: exten = 654,1,Answer exten = 654,2,SetCIDName(${CALLERIDNAME}) exten = 654,3,SetVar(MONITOR_FILENAME=/var/spool/asterisk/monitor/q${EXTEN}-${ TIMEST AMP}-${UNIQUEID}) exten = 654,4,Queue(654|t|||0) exten = 654,5,Goto(ext-queues,654,1)

Re: [Asterisk-Users] Queue() with timeout=0

2006-01-31 Thread Dinesh Nair
On 01/31/06 20:49 Bart van Daal said the following: exten = 654,1,Answer exten = 654,2,SetCIDName(${CALLERIDNAME}) exten = 654,3,SetVar(MONITOR_FILENAME=/var/spool/asterisk/monitor/q${EXTEN}-${TIMEST AMP}-${UNIQUEID}) exten = 654,4,Queue(654|t|||0) exten = 654,5,Goto(ext-queues,654,1) what