[asterisk-bugs] [JIRA] (ASTERISK-20280) "vm-urgent-removed" sound file missing from english core sound packs

Rusty Newton (JIRA) noreply at issues.asterisk.org
Wed Nov 14 09:12:45 CST 2012


    [ https://issues.asterisk.org/jira/browse/ASTERISK-20280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=199719#comment-199719 ] 

Rusty Newton commented on ASTERISK-20280:
-----------------------------------------

This should really be a change in the source, the file exists in core sounds as 'vm-marked-nonurgent', but in app_voicemail we call vm-urgent-removed. 'vm-marked-nonurgent' follows the naming convention of the other "urgent" related sound files. We'll modify the source appropriately.


{code}
                                /* Mark Urgent */
                                if ((flag && ast_strlen_zero(flag)) || (!ast_strlen_zero(flag) && strcmp(flag, "Urgent"))) {
                                        ast_verbose(VERBOSE_PREFIX_3 "marking message as Urgent\n");
                                        res = ast_play_and_wait(chan, "vm-marked-urgent");
                                        strcpy(flag, "Urgent");
                                } else if (flag) {
                                        ast_verbose(VERBOSE_PREFIX_3 "UNmarking message as Urgent\n");
                                        res = ast_play_and_wait(chan, "vm-urgent-removed");
                                        strcpy(flag, "");


{code}

Also changing title of this issue.
                
> "vm-urgent-removed" sound file missing from english core sound packs
> --------------------------------------------------------------------
>
>                 Key: ASTERISK-20280
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-20280
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Applications/app_voicemail
>    Affects Versions: 1.8.16.0
>         Environment: Any
>            Reporter: Tomo Takebe
>            Severity: Trivial
>
> "vm-urgent-removed" is called from app_voicemail when the urgent flag is removed.
> The sound file is missing from recent English core sound packs, however.
> This results in no feedback when key 4 when this functionality is accessed.
> [Aug 20 15:58:42] WARNING[26941]: file.c:667 ast_openstream_full: File vm-urgent-removed does not exist in any format
> The recording was made for the implementation of the urgent flag and is present here:
> ASTERISK-11280

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the asterisk-bugs mailing list