Displaying 1 result from an estimated 1 matches for "sipmail".
Did you mean:
  ispmail
  
2009 Jun 18
2
Multiple Outgoing Lines: extensions.conf
...ks something like below
 
>> 
 
; extensions.conf
; 20th October 2008
 
 
[globals]
sip1=201
sip2=202
sip3=203
sip4=204
 
[general]
autofallthrough=yes
 
[default]
 
[incoming_calls]
 
exten => _89859715,1,Dial(SIP/201)
exten => _89859716,1,Dial(SIP/202)
 
[macro-sipmail]
exten => s,1,Verbose(1,Extension ${ARG1})  ;line req to pick up ext if
it's not reg.
exten => s,n,Dial(SIP/${ARG1},30)
exten => s,n,GotoIf($["${DIALSTATUS}" = "BUSY"]?busy:unavail)
exten => s,n(unavail),Voicemail(${ARG1}@default,u)
exten => s,n,Hangup()...