-
-
Save yuwonodarmawan/06ef8cfc4c7ea73177361ad145e31844 to your computer and use it in GitHub Desktop.
FreePBX/Asterisk dialplan override configuration to reroute *97 (check voicemail) for one extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[app-vmmain] | |
include => app-vmmain-custom | |
exten => *97,1,Answer | |
exten => *97,n,Wait(1) | |
exten => *97,n,Macro(user-callerid,) | |
exten => *97,n,GotoIf($["${AMPUSER}" = "103"]?googryan) | |
exten => *97,n,Macro(get-vmcontext,${AMPUSER}) | |
exten => *97,n(check),MailBoxExists(${AMPUSER}@${VMCONTEXT}) | |
exten => *97,n,GotoIf($["${VMBOXEXISTSSTATUS}" = "SUCCESS"]?mbexist) | |
exten => *97,n,VoiceMailMain() | |
exten => *97,n,GotoIf($["${IVR_RETVM}" = "RETURN" & "${IVR_CONTEXT}" != ""]?playret) | |
exten => *97,n,Macro(hangupcall,) | |
exten => *97,check+101(mbexist),VoiceMailMain(${AMPUSER}@${VMCONTEXT}) | |
exten => *97,n,GotoIf($["${IVR_RETVM}" = "RETURN" & "${IVR_CONTEXT}" != ""]?playret) | |
exten => *97,n,Macro(hangupcall,) | |
exten => *97,n(playret),Playback(beep&you-will-be-transfered-menu&silence/1) | |
exten => *97,n,Goto(${IVR_CONTEXT},return,1) | |
exten => *97,n(googryan),Playback(pls-wait-connect-call) | |
exten => *97,n,Dial(Local/15855550000@from-internal,15,D(w*)) | |
exten => *97,n,Macro(hangupcall,) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment