On Tue, Jul 1, 2008 at 4:07 PM, Henk Oegema &lt;<a href="mailto:pabx_freeswitch@telenet.be">pabx_freeswitch@telenet.be</a>&gt; wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">[..snip..]<br>
</div>2008-07-01 21:05:04 [INFO] mod_dialplan_xml.c:222 dialplan_hunt() Processing<br>
1000-&gt;0031344641353@default<br>
2008-07-01 21:05:04 [DEBUG] mod_dialplan_xml.c:107 parse_exten() test<br>
conditions destination_number(0031344641353) =~ /^(0031\d*})$/<br>
2008-07-01 21:05:04 [DEBUG] mod_dialplan_xml.c:109 parse_exten() Regex<br>
mismatch<br>
</blockquote></div><br>Regex problem. You&#39;ve got:<br><br>&lt;condition field=&quot;destination_number&quot; expression=&quot;^(0031\d*})$&quot;&gt;<br><br>You probably want:<br><br>&lt;condition field=&quot;destination_number&quot; expression=&quot;^(0031\d+)$&quot;&gt;<br>
<br>I changed the &#39;*&#39; to a &#39;+&#39; as you probably want at least one digit after the 0031 to match, but that&#39;s up to you. The problem was with the &#39;}&#39; just before the closing parentheses.<br><br>- Gonzalo<br>