How to write VoiceMail dialplans in asterisk -


I have some extensions for which I have written dialplan. Now I want to add voicemail feature in it but I do not know how to add it to the existing dialplan. What should I do to get this to happen? I am running an asterisk on Ubuntu machine. Here my extention.conf File is ..

  [other] [my phone] exten => 2000,1, Dial (SIP / 2000) exten = & gt; 2001,1, Dial (SIP / 2001) exten = & gt; 2002, Dial (SIP / 2002)   

Please help me because I am a very newbie in this field. thank you in advanced.

When I was working with an asterisk, saved me several times. Here is an example of how to do extension configuration

  exten = & gt; 6000,1, North (500) exten = & gt; 6000, n, playback (hello-world) exten = & gt; 6000, n, hangup () exten = & gt; 6001,1, Dial (SIP / Demo-Alice, 20) exten = & gt; 6001, n, voicemail (6001 @ VM-demo, U) exten => 6002,1, Dial (SIP / Demo-Bob, 20) exten = & gt; 6002, N, voicemail (6002 @ VM-demo, U) exten => 6500,1, North (500) exten = & gt; 6500, N, Voicemail Man (@VM-Demo)   

and

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -