rrgv
2007-Sep-19 15:41 UTC
[asterisk-users] How to cancel the password check in VoicemailMain()
Hi
in asterisk 1.4, I need to cancel the password check and allow users
enter in the mailbox without entering password.
I tried this:
exten => 911119,1,Set(LANGUAGE()=es)
exten => 911119,n,VoicemailMain(${Mailbox}@default,s)
exten => 911119,n,Hangup
and this:
exten => 911119,1,Set(LANGUAGE()=es)
exten => 911119,2,VoicemailMain(s)
exten => 911119,n,Hangup
But it does not work, some advice please, thanks
rafael
Mark Michelson
2007-Sep-19 16:03 UTC
[asterisk-users] How to cancel the password check in VoicemailMain()
rrgv wrote:> Hi > in asterisk 1.4, I need to cancel the password check and allow users > enter in the mailbox without entering password. > > I tried this: > > exten => 911119,1,Set(LANGUAGE()=es) > exten => 911119,n,VoicemailMain(${Mailbox}@default,s) > exten => 911119,n,Hangup > > and this: > exten => 911119,1,Set(LANGUAGE()=es) > exten => 911119,2,VoicemailMain(s) > exten => 911119,n,Hangup > > >The syntax is a bit off on your VoiceMailMain call. Change it to this and see if it helps: exten => 911119,n,VoiceMailMain(s${Mailbox}@default) In other words, put the 's' at the beginning of the argument as opposed to a separate option. Mark Michelson