回復 358# yiucsw
In IP01 GUI environment, if you don't want to forward incoming calls to voicemail after a certain period of time, please uncheck the option "Enable Voice for this user" when establishing your user extension.
If you want to do it in APL, you may write your incoming call context like this:
[pstn-incoming]
exten => s,1,Answer(500) ; the 500 inside the bracket represent 0.5 seconds after answer, the call will go to 6001
exten => s,n,Dial(SIP/6001,30,r) ; if nobody answer after ringing 30 seconds time, the next line of hangup call is executed
exten => s,n,Hangup()
In that case, the unanswered call will not be transfered to voicemail. |