You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
375 B

loadmodule "dmq.so"
loadmodule "dmq_usrloc.so"
# ---- dmq params ----
modparam("dmq", "server_address", "sip:MY_IP_ADDRESS:5090")
modparam("dmq", "notification_address", "sip:10.132.0.16:5090")
modparam("dmq", "multi_notify", 0)
modparam("dmq_usrloc", "enable", 1)
route[HANDLE_DMQ]
{
if (is_method("KDMQ") && $Rp == 5090)
{
dmq_handle_message();
}
}