El Jueves, 3 de Septiembre de 2009, Ricardo Martinez escribió:
failure_route[1] { ... if ( t_check_status("486") ) { xlog("L_INFO","[$ci] 486 Received\n");
}
...
t_relay();
}
You are calling t_relay without creating a new branch so there is no more branches and the log you get is correct.
You should do something like:
failure_route[1] { ... if ( t_check_status("486") ) { xlog("L_INFO","[$ci] 486 Received\n");
} ... append_branch("sip:XXXX@VOICEMAIL_IP"); t_relay(); }