Thanks, now it&#39;s working, but in my user directory I have something like this :<div><br></div><div><span class="Apple-style-span" style="font-family: sans-serif; font-size: 13px; line-height: 19px; "><pre style="padding-top: 1em; padding-right: 1em; padding-bottom: 1em; padding-left: 1em; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-color: rgb(47, 111, 171); border-right-color: rgb(47, 111, 171); border-bottom-color: rgb(47, 111, 171); border-left-color: rgb(47, 111, 171); color: black; background-color: rgb(249, 249, 249); line-height: 1.1em; ">
 <span onmouseover="_tipon(this)" onmouseout="_tipoff()" style="background-color: rgb(230, 236, 249); "> &lt;user id=&quot;john&quot; number-alias=&quot;1368&quot;&gt;</span> </pre></span><div>and in my dialplan.xml I have to put the two entry for working :</div>
<div><br></div><div><div>&lt;condition field=&quot;destination_number&quot; expression=&quot;^(toto|john|8400|1368)$&quot;&gt;</div><div><br></div><div>If I only put john, when I try to call the &quot;1368&quot; it&#39;s not working. Is it a normal way ?</div>
<div><br></div><div>Thanks</div><div><br></div></div><div><br></div><br><div class="gmail_quote">2009/9/29 Peter Hinman <span dir="ltr">&lt;<a href="mailto:Peter.Hinman@parcelpool.com">Peter.Hinman@parcelpool.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">


  

<div bgcolor="#ffffff" text="#000000">
I&#39;ve noticed that when using an alphanumeric ID, case sensitivity
causes issues.  It doesn&#39;t seem to matter what case the userID is in
the XML directory.  What does seem to matter is how the user registered
their phone.  If the user registered in all upper case (JOHN_SMITH),
then dialing John_Smith will not work.  <br>
<br>
My work around for this is to tell all users to register their phones
in lower case, and then my dial plan uses LUA to force all dialed
extensions to lowercase.<br>
<br>
Peter<br>
<br>
<br>
Jonathan Barou wrote:
<blockquote type="cite"><div><div></div><div class="h5">Hi everybody,
  <div><br>
  </div>
  <div>I have a problem with &quot;Alphanumeric to numeric user mapping&quot;</div>
  <div><br>
  </div>
  <div>I have done like it&#39;s written here :</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div><span style="font-family:sans-serif;font-size:13px;line-height:19px">
  <h2 style="border-bottom:1px solid rgb(170, 170, 170);margin:0px 0px 0.6em;color:black;font-weight:normal;padding-top:0.5em;padding-bottom:0.17em;font-size:19px"><span>Alphanumeric
to numeric user mapping</span></h2>
  <p style="margin:0.4em 0px 0.5em;line-height:1.5em">Say you want
a user&#39;s id to be alphanumeric (like an email username), such as <a href="mailto:johnsmith@pbx.example.com" target="_blank">johnsmith@pbx.example.com</a>. These users have
alphanumeric usernames in their sip phone config, but you want to map
them from their sip username to a numeric extension, and vice versa.</p>
  <p style="margin:0.4em 0px 0.5em;line-height:1.5em">As of version
1.0.4, Freeswitch makes this trivial to accomplish. A user&#39;s ID can be
any alphanumeric string, and this can be simply tied to an extension
number using the &#39;number-alias&#39; property. This property creates an
aliased directory entry that points to the alphanumeric user entry.</p>
  <p style="margin:0.4em 0px 0.5em;line-height:1.5em"><i>NOTE: When
using this attribute, you must be careful not to create a directory
collision by having another user whose ID is the same as another user&#39;s
alias</i></p>
  <p style="margin:0.4em 0px 0.5em;line-height:1.5em">Here is an
example from the user directory:</p>
  <pre style="border:1px dashed rgb(47, 111, 171);padding:1em;color:black;background-color:rgb(249, 249, 249);line-height:1.1em">  &lt;user id=&quot;johnsmith&quot; number-alias=&quot;1001&quot;&gt;
    &lt;!-- Insert the usual user configuration variables and params here,
         including user password, voicemail password, caller ID info, etc --&gt;
  &lt;/user&gt;
  </pre>
  <p style="margin:0.4em 0px 0.5em;line-height:1.5em">So when a
user dials extension number 1001, your dialplan can use the &#39;user_data&#39;
function to look up the ID attribute associated with that number alias.
In the default dialplan, the &#39;Local Extension&#39; section can be made to
work with a small change to the &#39;bridge&#39; line:</p>
  <pre style="border:1px dashed rgb(47, 111, 171);padding:1em;color:black;background-color:rgb(249, 249, 249);line-height:1.1em">  &lt;action application=&quot;bridge&quot; data=&quot;user/${user_data(${dialed_extension}@${domain_name} attr id)}@${domain_name}&quot;/&gt;
  </pre>
  <p style="margin:0.4em 0px 0.5em;line-height:1.5em"><i>NOTE:
Using this user_data function in combination with mod_xml_curl will
generate an additional request each time the user_data function is
called. Note that it is already called once in the Local Extension
section to determine the callgroup. <b>Beware of performance
implications of this with high-volume systems.</b></i></p>
  </span></div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>But when I want to call my alias-number, FS says &quot;No Route,
Abording&quot;</div>
  <div><br>
  </div>
  <div>My version of FreeSWITCH is the 1.0.4pre9.</div>
  <div><br>
  </div>
  <div>Do you have any ideas ? Did I forget something to do?</div>
  <div><br>
  </div>
  <div>Thanks </div>
  <div><br>
  </div>
  <div><br clear="all">
  <br>
-- <br>
Jonathan BAROU<br>
SQLI LYON - CRCI <br>
  <a href="mailto:jbarou@sqli.com" target="_blank">jbarou@sqli.com</a><br>
  <a href="mailto:lyon.crci@sqli.com" target="_blank">lyon.crci@sqli.com</a><br>
  <br>
  </div>
  </div></div><pre><hr size="4" width="90%"><div class="im">
_______________________________________________
FreeSWITCH-users mailing list
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a>
  </div></pre>
</blockquote>
</div>

<br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Jonathan BAROU<br>SQLI LYON - CRCI <br><a href="mailto:jbarou@sqli.com">jbarou@sqli.com</a><br><a href="mailto:lyon.crci@sqli.com">lyon.crci@sqli.com</a><br><br>
</div>