mikeraut Report post Posted 05/18/2010 08:53 PM 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
SupportTeam Report post Posted 05/18/2010 09:26 PM 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
mikeraut Report post Posted 05/18/2010 10:30 PM 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
SupportTeam Report post Posted 05/19/2010 12:20 AM 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
SupportTeam Report post Posted 05/19/2010 12:23 AM Here is the script to try: vmLogin.vgs Share this post Link to post
mikeraut Report post Posted 05/19/2010 06:52 AM Thank you! It works exactly as a hotel system should. Share this post Link to post