Displaying 3 results from an estimated 3 matches for "sales_support".
2010 Dec 30
4
call is not going to Voicemail with "1,n"
...lan and use "n" instead of numbers but I've noticed it is not executing my voicemail if I substitute number with "n"
In the example below when the call is not answered, it does not go to voicemail; call just hangup.
exten => 1,1,Playback(transfer)
exten => 1,n,Dial(${sales_support}&IAX2/iaxy-322,20,jrw)
exten => 1,103,Voicemail(11,b)
exten => 1,104,Hangup()
exten => 1,n,Voicemail(11,b) ; Right to voicemail
exten => 1,n,Hangup()
Here is the transcript:
-- Executing [1 at office-open:1] Playback("SIP/pstn-5665-000000be", "transfer&q...
2004 Nov 28
3
soxmix
...ver. sox-12.17.5 on Gentoo but the option "m" does not combine
two WAV files (In and Out) into one file. I have two separate files
in /monitor folder.
exten => 711,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP})
exten => 711,2,Monitor(wav,${CALLFILENAME},m)
exten => 711,3,Dial(${sales_support},20,r)
exten => 711,4,Voicemail(u11) ; Right to voicemail
exten => 711,5,Hangup()
--
#Joseph
2013 Jun 14
1
GotoIf($["${CALLERID(number)}
I'm trying to to to "dial1" if caller id match:
but dial plan execute 220,n(dial1) regardless
exten => 220,n,GotoIf($["${CALLERID(number)}" = "7804792668"]?dial1)
exten => 220,n(dial1),Dial(${sales_support}&${accounting}&${family},25,m(penguin)w)
exten => 220,n,
I was under impression that if condition is met it will jump to "n(label)" no comma in between
but dial plan is executing it regardless.
--
Joseph