search for: _70x

Displaying 5 results from an estimated 5 matches for "_70x".

Did you mean: _0x
2004 Sep 10
1
Call Parking Problem
...extension I'm dialing goes to the on hold music. I'm disconnected, I hang up, dial "701" and I see this message on the console "Everyone is busy/congested at this time" I just have the default parkedcalls file, and have this in the extensions. [AnalogPhone] exten => _70X,1,Dial(Zap/1/${EXTEN},20,Ttr) include => parkedcalls [SipPhone] exten => _70X,1,Dial(SIP/1/${EXTEN},20,Ttr) include => parkedcalls
2015 Jun 09
2
Manipulate extension state in 1.8.x
Hi Is there any way to set the presence state of a peer to in-use in asterisk 1.8? The idea is to integrate DND buttons on phones to BLF. Regards -- Ishfaq Malik Department: VOIP Support Company: Packnet Limited t: +44 (0)161 660 2350 f: +44 (0)161 660 9825 e: ish at pack-net.co.uk w: http://www.pack-net.co.uk Registered Address: PACKNET LIMITED, Duplex 2, Ducie House 37 Ducie Street
2015 Jun 09
0
Manipulate extension state in 1.8.x
...) same => n,Hangup() ;DND Off exten => *79,1,NoOP(Turning DND Off) same => n,Set(DEVICE_STATE(Custom:DND${CHANNEL(peername)})=NOT_INUSE) same => n,Playback(do-not-disturb&disabled) same => n,Hangup() Then you can simply hint on your device like: exten => _70X,hint,SIP/${EXTEN}&Custom:DND${EXTEN} On Tue, Jun 9, 2015 at 9:19 AM, Ishfaq Malik <ish at pack-net.co.uk> wrote: > Hi > > Is there any way to set the presence state of a peer to in-use in asterisk > 1.8? > > The idea is to integrate DND buttons on phones to BLF. >...
2004 Aug 08
0
stable-RC1
...(one for parking, another for transfer) only the default one is working. If I put in this default the path to my classes it's ok. But if I want to use SetMusicOnHold(myclass), or default class is played, or nothing if default class is commented in musiconhold.conf. I create an exten => _70X,1,SetMusicOnHold(myclass) in [default] and [incoming] context but its always default one which is played when I park (parking are 701->709). Beside, have someone an idea on how to set musiconhold for calltransfer? Thanks for any hint -- Daniel
2013 Oct 14
1
parking - why doesn't this work?
...ll seems to be put on hold and parked at the same time (to end the call, you need to press "end call" twice). This is my first attempt at parking, and I know this is not the common way to do this, but would like to know why this is failing. Here is my config: [from-office] exten => _70X,1,SET(devstate=${DEVICE_STATE(park:${EXTEN}@parkedcalls)}) same => n,GotoIf($["${devstate}"="INUSE"]?unpark) same => n,Set(PARKINGEXTEN=${EXTEN}) same => n,Park() ;?? same => n,hangup() same => n(unpark),ParkedCall(${EXTEN}) same => n,hangup() ? [parked_statio...