[Home]

Summary:ASTERISK-02927: ALERT_INFO and VXML_URL not sent
Reporter:cherso (cherso)Labels:
Date Opened:2004-12-05 12:13:00.000-0600Date Closed:2011-06-07 14:10:50
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Channels/chan_sip/CodecHandling
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:exten => _X,1,SetVar(ALERT_INFO=<Bellcore-dr1>)
exten => _X,2,Dial(sip/${EXTEN},30,T)

capping with ethereal no Alert-Info header is sent so cisco can't play any different ring tone.
The problem should be in the sip_call function (cahn_sip.c).
Maybe wrong varshead address?
Comments:By: cherso (cherso) 2004-12-05 12:32:16.000-0600

forcing the alert-info header in sip_call everything is working
distinctive_ring = "<Bellcore-dr1>";

something wrong with setvar. Maybe storing vars in the origin chan varshead and reading vars from the called chan varshead?

By: Brian West (bkw918) 2004-12-05 13:01:38.000-0600

This is not a bug.

exten => _X,1,SetVar(_ALERT_INFO=<Bellcore-dr1>)

Prefix the var with an _

bkw