[Home]

Summary:ASTERISK-21997: [patch] - Incorrect Ring tone for Malaysia
Reporter:Filip Jenicek (phill)Labels:
Date Opened:2013-07-02 07:05:28Date Closed:2013-07-21 13:24:02
Priority:MinorRegression?Yes
Status:Closed/CompleteComponents:Resources/res_indications
Versions:11.4.0 Frequency of
Occurrence
Constant
Related
Issues:
is caused byASTERISK-06579 Tones for Malaysia
Environment:Attachments:( 0) malaysia_ring.patch
Description:The Malaysian ringtone in indications.conf is not correct. It should be: ring = 425/400,0/200,425/400,0/2000

Tone definitions in zonedata.c and indications.conf files differ.
Dahdi 2.7.0 - zonedata.c
{noformat}
         .tones =   {
                       { DAHDI_TONE_DIALTONE, "425" },
                       { DAHDI_TONE_BUSY, "425/500,0/500" },
                       { DAHDI_TONE_RINGTONE, "425/400,0/200,425/400,0/2000" },
                       { DAHDI_TONE_CONGESTION, "425/500,0/500" },
                       { DAHDI_TONE_CALLWAIT, "425/100,0/4000" },
                       { DAHDI_TONE_DIALRECALL, "350+440" },
                       { DAHDI_TONE_RECORDTONE, "1400/500,0/60000" },
                       { DAHDI_TONE_INFO, "950/330,0/15,1400/330,0/15,1800/330,0/1000" },
                       { DAHDI_TONE_STUTTER, "450+425" },
               },
{noformat}
Asterisk 11.4.0 - indications.conf
{noformat}
[my]
description = Malaysia
ringcadence = 2000,4000
dial = 425
busy = 425/500,0/500
ring = 425/400,0/200
congestion = 425/500,0/500
{noformat}

This issue is actually a regression of ASTERISK-6579
Comments:By: Filip Jenicek (phill) 2013-07-02 07:10:17.590-0500

-ring = 425/400,0/200
+ring = 425/400,0/200,425/400,0/2000


By: Matt Jordan (mjordan) 2013-07-02 10:35:44.502-0500

Thanks Filip!