I am running Asterisk 11 on a CentOS server and all of the documentation that I have been sorting through (along with books) haven’t helped me since I believe that the documentation is out dated and I have the newest version of asterisk. My dialplans look like this
for the Dial application.
exten => 1001,1,Answer()
exten => 1001,n,Dial(SIP/1001,10)
exten => 1001,n,VoiceMail(1001@default,u)
exten => 1001,n,Hangup()
I have no way of testing this yet but I have been trying to test the voicemailmain application and the extension looks like this
exten => 10,1,VoiceMailMain(${CALLERID(num)}@default)
I am not sure if I was supposed to specify some options inside of the parenthesis but I did anyway assuming that I got the variables right (and that the mailbox is located in the default context). When I tried to dial this extension the softphone got disconnected as if it wasn’t connected to any applications in the first place and I want to know why. Is there a simple way to do voicemail because I am only a beginner and all of the tutorials have some very advanced and complicated setups that are hard for newcomers to comprehend.
I also briefly changed the voicemailmain application extension to look like this and it still didn’t work (the phone keeps getting disconnected)
exten => 2,1,Answer()
exten => 2,n,VoiceMailMain()