strange,
 
Its
 
route[1] {
 
        # -----------------------------------------------------------------
        # Default Message Handler
        # -----------------------------------------------------------------
 
        t_on_reply("1");
        if(does_uri_exist() && isflagset(20)) {      
                t_on_failure("1");
        };
        #t_on_failure("2");     # Enable Server Processing for CFWD 3XX Replies
        if (!t_relay()) {
 
                if (method=="INVITE" || method=="ACK") {
                        end_media_session();
                };
 
                sl_reply_error();
        };
 
It is the t_on_failure("2") that is causing the issue.
If i comment it , i will not have any problems.
 
This is my failure route 2
 
failure_route[2] {
        if (t_check_status("3[0-9][0-9]")) {
                get_redirects("*");
                add_diversion("unconditional");
                uac_auth();
                t_relay();
                exit;
        };
}
 
Any ideas ?
 
Sam


From: users-bounces@openser.org [mailto:users-bounces@openser.org] On Behalf Of Sam Lee
Sent: Thursday, March 15, 2007 5:52 PM
To: users@openser.org
Subject: [Users] BUG in TM

Hey guys,
 
I'm getting BUG:tm:run_failure_handlers: stack level is 1!! in my syslog. It is generating when i place a call out to PSTN.
 
Any ideas ?
 
Sam