Hi,everyone!<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I have installed openser 1.2 via aptitude from <a href="http://openser.org">openser.org</a>, and then I config openser follow the install manual(<a href="http://www.openser.org/index.php?option=com_content&amp;task=view&amp;id=26&amp;Itemid=56).the">
http://www.openser.org/index.php?option=com_content&amp;task=view&amp;id=26&amp;Itemid=56).the</a> package with mysql was be installed and databases and tables was create by openser_mysql.sh. I&nbsp; add new user&nbsp; successfully like this:openserctl add fzh fzh 
<a href="mailto:fzh@myserver.com.but">fzh@myserver.com.but</a> i can't login user fzh with window messenger or x-lite.I got an error 478---unresolvable destination(478/TM). i think there may some error in my openser.cfg.<br>
but i can't find it. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; i post my openser.cfg here:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br><br>alias=&quot;<a href="http://myserver.com">myserver.com</a>&quot;<br><br><br># ------------------ module loading ----------------------------------
<br><br># Uncomment this if you want to use SQL database<br>loadmodule &quot;/usr/lib/openser/modules/mysql.so&quot;<br><br>loadmodule &quot;/usr/lib/openser/modules/sl.so&quot;<br>loadmodule &quot;/usr/lib/openser/modules/tm.so&quot;
<br>loadmodule &quot;/usr/lib/openser/modules/rr.so&quot;<br>loadmodule &quot;/usr/lib/openser/modules/maxfwd.so&quot;<br>loadmodule &quot;/usr/lib/openser/modules/usrloc.so&quot;<br>loadmodule &quot;/usr/lib/openser/modules/registrar.so&quot;
<br>loadmodule &quot;/usr/lib/openser/modules/textops.so&quot;<br><br># Uncomment this if you want digest authentication<br># mysql.so must be loaded !<br>loadmodule &quot;/usr/lib/openser/modules/auth.so&quot;<br>loadmodule &quot;/usr/lib/openser/modules/auth_db.so&quot;
<br><br># ----------------- setting module-specific parameters ---------------<br><br># -- usrloc params --<br><br>#modparam(&quot;usrloc&quot;, &quot;db_mode&quot;,&nbsp;&nbsp; 0)<br>modparam(&quot;usrloc&quot;, &quot;db_url&quot;, &quot;
mysql://openser:openserrw@localhost/openser&quot;)<br># Uncomment this if you want to use SQL database <br># for persistent storage and comment the previous line<br>modparam(&quot;usrloc&quot;, &quot;db_mode&quot;, 2)<br>
<br># -- auth params --<br># Uncomment if you are using auth module<br>#<br>modparam(&quot;auth_db&quot;, &quot;calculate_ha1&quot;, yes)<br>#<br># If you set &quot;calculate_ha1&quot; parameter to yes (which true in this config), 
<br># uncomment also the following parameter)<br>#<br>modparam(&quot;auth_db&quot;, &quot;password_column&quot;, &quot;password&quot;)<br><br># -- rr params --<br># add value to ;lr param to make some broken UAs happy<br>
modparam(&quot;rr&quot;, &quot;enable_full_lr&quot;, 1)<br><br># -------------------------&nbsp; request routing logic -------------------<br><br><br>&nbsp;&nbsp;&nbsp; # we record-route all messages -- to make sure that<br>&nbsp;&nbsp;&nbsp; # subsequent messages will go through our proxy; that's
<br>&nbsp;&nbsp;&nbsp; # particularly good if upstream and downstream entities<br>&nbsp;&nbsp;&nbsp; # use different transport protocol<br>&nbsp;&nbsp;&nbsp; if (!method==&quot;REGISTER&quot;)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; record_route();<br><br>&nbsp;&nbsp;&nbsp; # subsequent messages withing a dialog should take the
<br>&nbsp;&nbsp;&nbsp; # path determined by record-routing<br>&nbsp;&nbsp;&nbsp; if (loose_route()) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # mark routing logic in request<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: rr-enforced\r\n&quot;); <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; route(1);<br>&nbsp;&nbsp;&nbsp; };<br><br>&nbsp;&nbsp;&nbsp; if (!uri==myself) {
<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # mark routing logic in request<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: outbound\r\n&quot;); <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # if you have some interdomain connections via TLS<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #if(uri=~&quot;@tls_domain1.net&quot;) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #&nbsp;&nbsp;&nbsp; t_relay(&quot;tls:
<a href="http://domain1.net">domain1.net</a>&quot;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #&nbsp;&nbsp;&nbsp; exit;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #} else if(uri=~&quot;@tls_domain2.net&quot;) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #&nbsp;&nbsp;&nbsp; t_relay(&quot;tls:<a href="http://domain2.net">domain2.net</a>&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #&nbsp;&nbsp;&nbsp; exit;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; #}<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; route(1);<br>&nbsp;&nbsp;&nbsp; };<br><br>&nbsp;&nbsp;&nbsp; # if the request is for other domain use UsrLoc<br>&nbsp;&nbsp;&nbsp; # (in case, it does not work, use the following command<br>&nbsp;&nbsp;&nbsp; # with proper names and addresses in it)
<br>&nbsp;&nbsp;&nbsp; if (uri==&quot;myself&quot;) {<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (method==&quot;REGISTER&quot;) {<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # Uncomment this if you want to use digest authentication<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (!www_authorize(&quot;<a href="http://myserver.com">
myserver.com</a>&quot;, &quot;subscriber&quot;)) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; www_challenge(&quot;<a href="http://myserver.com">myserver.com</a>&quot;, &quot;0&quot;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; exit;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; save(&quot;location&quot;);
<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; exit;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; lookup(&quot;aliases&quot;);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (!uri==myself) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: outbound alias\r\n&quot;); <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; route(1);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br><br>
ngrep -qt port 5060 :<br><br>U 2006/07/31 16:31:30.359879 <a href="http://59.64.183.197:5060">59.64.183.197:5060</a> -&gt; <a href="http://64.233.161.83:5060">64.233.161.83:5060</a><br>&nbsp; REGISTER sip:<a href="http://gmail.com">
gmail.com</a> SIP/2.0..Via: SIP/2.0/UDP <a href="http://59.64.183.197">59.64.183.197</a>;branch=z9hG4bK099e.a821a853.0..<br>&nbsp; Via: SIP/2.0/UDP <a href="http://59.64.183.247:11955">59.64.183.247:11955</a>..Max-Forwards: 69..From: &lt;
<a href="mailto:sip:fzh@gmail.com">sip:fzh@gmail.com</a>&gt;;tag=5ca47f5d<br>&nbsp; 15c24791bb6dbfdc11aace96;epid=e655b5ac9b..To: &lt;<a href="mailto:sip:fzh@gmail.com">sip:fzh@gmail.com</a>&gt;..Call-ID: 135b746590ae485c93<br>
&nbsp; 70134a3a1400c8..CSeq: 1 REGISTER..Contact: &lt;sip:<a href="http://59.64.183.247:11955">59.64.183.247:11955</a>&gt;;methods=&quot;INVITE, MESSAGE,<br>&nbsp;&nbsp; INFO, SUBSCRIBE, OPTIONS, BYE, CANCEL, NOTIFY, ACK, REFER, BENOTIFY&quot;..User-Agent: RTC/1.3.536
<br>&nbsp; 9 (Messenger 5.1.0639)..Event: registration..Allow-Events: presence..Content-Length: 0..P-hint<br>&nbsp; : outbound....<br><br>U 2006/07/31 16:31:30.993136 <a href="http://59.64.183.247:1704">59.64.183.247:1704</a> -&gt; 
<a href="http://59.64.183.197:5060">59.64.183.197:5060</a><br>&nbsp; REGISTER sip:<a href="http://gmail.com">gmail.com</a> SIP/2.0..Via: SIP/2.0/UDP <a href="http://59.64.183.247:11955">59.64.183.247:11955</a>..Max-Forwards: 70..From:
<br>&nbsp; &lt;<a href="mailto:sip:fzh@gmail.com">sip:fzh@gmail.com</a>&gt;;tag=5ca47f5d15c24791bb6dbfdc11aace96;epid=e655b5ac9b..To: &lt;<a href="mailto:sip:fzh@gmail.c">sip:fzh@gmail.c</a><br>&nbsp; om&gt;..Call-ID: 135b746590ae485c9370134a3a1400c8..CSeq: 1 REGISTER..Contact: &lt;sip:
<a href="http://59.64.183.247">59.64.183.247</a>:<br>&nbsp; 11955&gt;;methods=&quot;INVITE, MESSAGE, INFO, SUBSCRIBE, OPTIONS, BYE, CANCEL, NOTIFY, ACK, REFER, BE<br>&nbsp; NOTIFY&quot;..User-Agent: RTC/1.3.5369 (Messenger 5.1.0639
)..Event: registration..Allow-Events: pre<br>&nbsp; sence..Content-Length: 0....<br>&nbsp;&nbsp; <br><br>&nbsp;&nbsp;&nbsp;&nbsp; what can i do ?&nbsp; appreciate for your help <br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fzh
<br><br><br>