[Home]

Summary:ASTERISK-09094: Error when trying to change password of a user by the voicemaila aplicacion
Reporter:Marco Antonio (mtrujillo)Labels:
Date Opened:2007-03-24 20:21:36Date Closed:2007-03-24 20:32:17
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Applications/app_voicemail
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:Sub tree of voice mail is:

#  0 Mailbox options

   * 1 Record your unavailable message
   * 2 Record your busy message
   * 3 Record your name
   * 4 Change your password
   * * Return to the main menu

But when it selects option 4 I obtain the message of " Playing 'vm-options'" and

and repeats the options of sub tree.

After proving I realized that when pressing 5, like option if it indicated to change password to me to solve it what I did was to edit the file ?/usr/src/asterisk- 1.2.16/apps/app_voicemail.conf? in line ?4777? changes the 4 by the 5.

affter:
case '4':
            cmd = vm_tempgreeting(chan, vmu, vms, fmtc, record_gain);
       break;
case '5':
            if (vmu->password[0] == '-') {
               cmd = ast_play_and_wait(chan, "vm-no");
        break;
   }

Before the change:
case '5':
        cmd = vm_tempgreeting(chan, vmu, vms, fmtc, record_gain);
          break;
case '4':
        if (vmu->password[0] == '-') {
            cmd = ast_play_and_wait(chan, "vm-no");
      break;
}


them:

/etc/init.d/asteriskd stop

intro of sources of asterisk:

make && make install

:).


Comments:By: Joshua C. Colp (jcolp) 2007-03-24 20:32:16

Duplicate of 9366.