VoiceGuide IVR Software Main Page
Jump to content

Voicemail Password On Hotel System

Recommended Posts

I am currently installing a voicemail system in an hotel environment. I need the password to be removed so that voicemail retrieval can be done without a guest having to enter a password to listen to their messages. Could support please indicate how I may achieve this? Thanks.

Share this post


Link to post

The voicemail scripts in VoiceGuide's /system/vm/ subdirectory need to be edited and the module that asks for password (and subsequently verifies the entered PIN number) removed.

 

Suggest you make a backup of the voicemail scripts before editing them.

Share this post


Link to post

I would like to use the variable $RV[inband_Calling] to automatically login to the correct mailbox.

If $RV[inband_Calling] is [100] then mailbox 100 must login and VmMmMsgCountCalls must then

continue and let the user know how many calls they have.

The question is how/where do I modify the VBS scripting to bypass the manual (VmLoginAskVmb)

and using the variable result, $RV[inband_Calling], continue with the script.

Share this post


Link to post

Have a look at the attached modified vmLogin.vgs

 

 

The changes are:

 

1.

 

In module [VmLoginStart] this VBScript line:

 

 

sNewRv = sNewRv & "[VmbId]{}[VmbLoginIntro]{none}"

 

was changed to:

 

sNewRv = sNewRv & "[VmbId]{$RV[inband_Calling]}[VmbLoginIntro]{none}"

 

 

2.

 

The path leaving module [VmLoginStart] is now:

 

on {Success} goto [VmMmMsgCountsCalc]

 

 

so the modules VmLoginAskVmb, VmLoginAskPin and VmLoginCheckPin are just bypassed.

 

Try just using the attached script and see if this works as you need it to work.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×