Hi folks,<br><br>I am moving production to SER2 rc 2.0 and can not make @to.tag==&quot;&quot;&nbsp; to work.<br><br>For example, in initial INVITEs:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # if this is an initial INVITE (without a To-tag) we might try another
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # (forwarding or voicemail) target after receiving an error<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (method==&quot;INVITE&quot; &amp;&amp; @to.tag==&quot;&quot;) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xlog(&quot;L_ERR&quot;,&quot;LXLOG: initial INVITE (no Totag) setting FAILURE_ROUTE&quot;);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t_on_failure(&quot;FAILURE_ROUTE&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>FAILURE_ROUTE is never called.<br><br>While next check works (in the sense the failure route is processed).<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (method==&quot;INVITE&quot;) {
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xlog(&quot;L_ERR&quot;,&quot;LXLOG: INVITE&nbsp; setting FAILURE_ROUTE&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t_on_failure(&quot;FAILURE_ROUTE&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br><br><br>So I am wondering whether @to.tag==&quot;&quot;&nbsp; works for empty To tag....can anyone confirm it?
<br><br>Thanks,<br>Samuel.<br>