Nabeel
2016-Jul-30 05:43 UTC
[asterisk-users] Removing mailbox and password prompt for voicemail
Hello, I am using Asterisk voicemail on a CentOS 7 server. I would like to be able to remove the 'mailbox' prompt and 'password' prompt when a user tries to access their voicemail. I can remove the 'password' prompt by not setting a password for the user, but the 'mailbox' prompt is always heard. Please let me know how Asterisk can be configured to remove these prompts. Nabeel -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20160730/e9f46f69/attachment.html>
D'Arcy J.M. Cain
2016-Jul-30 14:18 UTC
[asterisk-users] Removing mailbox and password prompt for voicemail
On Sat, 30 Jul 2016 06:43:47 +0100 Nabeel <nabeelshikder at gmail.com> wrote:> I am using Asterisk voicemail on a CentOS 7 server. I would like to > be able to remove the 'mailbox' prompt and 'password' prompt when aI assume that you mean when they access it from their own phone.> user tries to access their voicemail. I can remove the 'password' > prompt by not setting a password for the user, but the 'mailbox'Bad, bad idea. If you remove the password then anyone can get to the mailbox.> prompt is always heard. Please let me know how Asterisk can be > configured to remove these prompts.Define this local extension: exten => *98,1,Verbose(0,${CHANNEL(peername)} calling voicemail) same => n,VoicemailMain(${CHANNEL(peername)}@VoiceMail,s) same => n,Hangup -- D'Arcy J.M. Cain System Administrator, Vex.Net http://www.Vex.Net/ IM:darcy at Vex.Net VoIP: sip:darcy at Vex.Net
Nabeel
2016-Jul-30 14:52 UTC
[asterisk-users] Removing mailbox and password prompt for voicemail
If I remove the password, how can anyone access the mailbox if the 'mailbox' prompt is not played? Nabeel On 30 Jul 2016 3:19 p.m., "D'Arcy J.M. Cain" <darcy at vex.net> wrote:> On Sat, 30 Jul 2016 06:43:47 +0100 > Nabeel <nabeelshikder at gmail.com> wrote: > > I am using Asterisk voicemail on a CentOS 7 server. I would like to > > be able to remove the 'mailbox' prompt and 'password' prompt when a > > I assume that you mean when they access it from their own phone. > > > user tries to access their voicemail. I can remove the 'password' > > prompt by not setting a password for the user, but the 'mailbox' > > Bad, bad idea. If you remove the password then anyone can get to the > mailbox. > > > prompt is always heard. Please let me know how Asterisk can be > > configured to remove these prompts. > > Define this local extension: > > exten => *98,1,Verbose(0,${CHANNEL(peername)} calling voicemail) > same => n,VoicemailMain(${CHANNEL(peername)}@VoiceMail,s) > same => n,Hangup > > > -- > D'Arcy J.M. Cain > System Administrator, Vex.Net > http://www.Vex.Net/ IM:darcy at Vex.Net > VoIP: sip:darcy at Vex.Net >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20160730/e68ebea0/attachment.html>
Brian Wilson
2016-Jul-30 16:11 UTC
[asterisk-users] Removing mailbox and password prompt for voicemail
On Fri, Jul 29, 2016 at 10:43 PM, Nabeel <nabeelshikder at gmail.com> wrote:> Hello, > > I am using Asterisk voicemail on a CentOS 7 server. I would like to be > able to remove the 'mailbox' prompt and 'password' prompt when a user tries > to access their voicemail. I can remove the 'password' prompt by not > setting a password for the user, but the 'mailbox' prompt is always heard. > Please let me know how Asterisk can be configured to remove these prompts. > > Nabeel >It sounds like you really want it to jump straight into one voicemail box with no auth, not just removing the prompts. Try something like this exten => *85,1,VoicemailMain(100,s) When you dial *85, you will get voicemail for mailbox 100, and no passcode prompt. Jumps straight into the menu "You have FOUR new messages..." -- Brian Wilson Wildsong -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20160730/74ed9e1a/attachment.html>
Brian Wilson
2016-Jul-30 17:40 UTC
[asterisk-users] Removing mailbox and password prompt for voicemail
On Sat, Jul 30, 2016 at 7:18 AM, D'Arcy J.M. Cain <darcy at vex.net> wrote:> > Bad, bad idea. If you remove the password then anyone can get to the > mailbox.Depends on your use case, at home I have several phones and one mailbox. So I _want_ everyone to get to the mailbox with a minimum of effort. Brian -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20160730/1c6dc975/attachment.html>