hello we're using Kamailio / freeswitch freeswitch is the Voicemail server now. please how to forward MWI bethwan kamailio and Freeswitch? if user 1000 have a vm i want kamailio to fetch it from FS and advertise it to the subscriber thank you
Hello,
On 9/28/12 1:11 PM, Tayeb Meftah wrote:
hello we're using Kamailio / freeswitch freeswitch is the Voicemail server now. please how to forward MWI bethwan kamailio and Freeswitch? if user 1000 have a vm i want kamailio to fetch it from FS and advertise it to the subscriber thank you
you can check if the subscribe request is for
Event: message-summary
and then forward to freeswitch. Like:
if(is_method("SUBSCRIBE") && $hdr(Event) =~ "message-summary") { $rd = "FREESWITCH_IP"; t_relay(); exit; }
Cheers, Daniel