search for: _account

Displaying 7 results from an estimated 7 matches for "_account".

Did you mean: account
2017 Apr 20
2
Voicemail asking for login
...Goto(VoiceMail) same => n(DialDesk),Verbose(0,${CALLERID(all)} Calling ${EXTEN}) same => n,Dial(SIP/stocktrans2,30) same => n(VoiceMail),Set(CDR(userfield)=VoiceMail) same => n,Verbose(0,${CALLERID(all)} going into voice mail for stocktrans2) same => n,Set(_ACCOUNT=stocktrans2) same => n,VoiceMail(stocktrans2 at VoiceMail,u) same => n,Hangup() Here is mine. exten => darcy,1,Verbose(0,Entering extension darcy) same => n,GotoIf($["${DEVICE_STATE(SIP/9999901001)}" = "UNAVAILABLE"]?DialCell) same => n,Goto...
2017 Apr 19
2
Voicemail asking for login
On 2017-04-19 11:57 AM, J Montoya or A J Stiles wrote: > I fished this out of an old extensions.conf from a defunct project. It might > be relevant to your use case: > > exten => 1571,1,NoOp(Call to 1571: voicemail retrieval) > exten => 1571,n,AGI(lookup_caller_id.agi,${CALLERID(num)}) > exten => 1571,n,NoOp(CLID is ${clid}) > exten =>
2017 Apr 18
4
Voicemail asking for login
...ed "<<<" to the end of each line in case it is not clear where the actual line endings are. "Alex Chernyshev" <4164251212> going into voice mail for stocktrans2<<< -- Executing [stocktrans2 at LocalSets:19] Set("SIP/alex-00000175", "_ACCOUNT=stocktrans2") in new stack<<< -- Executing [stocktrans2 at LocalSets:20] VoiceMail("SIP/alex-00000175", "stocktrans2 at VoiceMail,u") in new stack<<< > 0x7f7fea5dc000 -- Probation passed - setting RTP source address to 72.143.94.110:28503...
2017 Apr 17
3
Voicemail asking for login
...extension %ACCOUNT%) same => n(DialDesk),Verbose(0,${CALLERID(all)} Calling ${EXTEN}) same => n,Dial(SIP/%ACCOUNT%,30) same => n(VoiceMail),Set(CDR(userfield)=VoiceMail) same => n,Verbose(0,${CALLERID(all)} going into voice mail for %ACCOUNT%) same => n,Set(_ACCOUNT=%ACCOUNT%) same => n,VoiceMail(%ACCOUNT%@VoiceMail,u) same => n,Hangup() And for voicemail.conf: %ACCOUNT% => %VM_PASSWORD%,%NAME%,%LOGIN%@Vex.Net Here is the sip.conf template: [%ACCOUNT%](client-phone) secret=%PASSWORD% callerid=%NAME% <%CLID%> mailbox=%ACCOUNT%@Voice...
2017 Apr 19
2
Voicemail asking for login
...box (so we can see > if it also uses the context 'VoiceMail', or maybe something else > instead, like 'default'?). "" <6477190146> going into voice mail for alex<<< -- Executing [alex at LocalSets:19] Set("SIP/thinktel-00000181", "_ACCOUNT=alex") in new stack<<< -- Executing [alex at LocalSets:20] VoiceMail("SIP/thinktel-00000181", "alex at VoiceMail,u") in new stack<<< -- <SIP/thinktel-00000181> Playing '/var/spool/asterisk/voicemail/VoiceMail/alex/unavail.gsm' (la...
2016 Aug 30
2
Multiple phones when one is unregistered
...t;7165550000") same => n,Dial(SIP/user1&SIP/thinktel/7165550000,30) same => n,Goto(VoiceMail) same => n(DialDesk),Verbose(0,${CALLERID(all)} Calling ${EXTEN}) same => n,Dial(SIP/user1,30) same => n(VoiceMail),Set(CDR(userfield)=VoiceMail) same => n,Set(_ACCOUNT=user1) same => n,VoiceMail(user1 at VoiceMail,u) same => n,Hangup() It's a complicated extension but I believe that the following is the essential part. user1,1,Verbose(0,Entering extension user1) same => n,Dial(SIP/user1,30) same => n,VoiceMail(user1 at VoiceMail,u) s...
2016 Aug 30
12
Multiple phones when one is unregistered
I have an extension that looks like this: exten => 5555551111,1,Verbose(Door buzzer calling) same => n,Dial(SIP/user1&SIP/user2&SIP/user3) The idea is that any of the three users can answer the phone to let someone in. The problem is that if, say, user2 unplugs his phone then the call immediately goes to his voice mail and the other two do not have the ability to open the door.