Brandon Armstead wrote:
Alex,
Thank you for this information! This is now making some more sense
as to the results I am seeing. Thanks again!
As an addition: Reply routes can be separated in to the "default reply route" and "named reply routes":
The "default reply route" is executed for every reply (except 100) and is executed before any "named reply routes".
onreply_route { ... }
The "named reply routes" are executed only if activated with t_on_reply() and the received reply matches an active transaction. There can be only one of these reply routes activated. This reply route is executed after the default reply route:
t_on_reply("1");
onreply_route[1] { ... }
see also http://www.kamailio.org/dokuwiki/doku.php/core-cookbook:3.1.x#routing_blocks
regards klaus