Re: [asterisk-users] VoiceMail - Allow * for only some users

2016-07-21 Thread Andrew Ruthven
Hi John, Ah ha!  Excellent. That works. Now for a further tweak, in my stdexten I set voicemail_option with with b or u, as appropriate and use ${voicemail_option) instead of option in the call to Voicemail below so the correct prompt is used. Thank you! On Thu, 2016-07-21 at 14:53 -0700, John

Re: [asterisk-users] VoiceMail - Allow * for only some users

2016-07-21 Thread John Kiniston
I think you almost have it. In your vmfwd context have a wildcard match that sends the caller back to the originating voicemail and then define specific extensions that are allowed to forward. [vmfwd] exten => _,1,Voicemail(box@context,option) same => n,Hangup ; Andrew Ruthven