On Tue, Jul 1, 2008 at 4:07 PM, Henk Oegema <<a href="mailto:pabx_freeswitch@telenet.be">pabx_freeswitch@telenet.be</a>> 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->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've got:<br><br><condition field="destination_number" expression="^(0031\d*})$"><br><br>You probably want:<br><br><condition field="destination_number" expression="^(0031\d+)$"><br>
<br>I changed the '*' to a '+' as you probably want at least one digit after the 0031 to match, but that's up to you. The problem was with the '}' just before the closing parentheses.<br><br>- Gonzalo<br>