<HTML >
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">

                                                                <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-16"><TITLE></TITLE>

<META http-equiv=EXPIRES content=0>
<META http-equiv=EXPIRESABSOLUTE content="Tue, 01 Jun 1999 12:00:00 GMT">
<META http-equiv=PRAGMA content=NO-CACHE>
<META http-equiv=CACHE-CONTROL content=PRIVATE>
<META http-equiv=CACHE-CONTROL content=NO-CACHE>
<META content="MSHTML 6.00.2900.2838" name=GENERATOR></HEAD>
                                                        <BODY >
                                                                <DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006>Hi everyone,</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006>I am still trying to find a solution to this problem. 
(but couldn't find yet)</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006>Victor was trying to help me but I think he's not able 
to reply these days.</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006>Is there any idea to achieve what I 
need.</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006>Thanks,</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=282570108-12072006>ilker</SPAN></FONT></DIV><BR>
<DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left>
<HR tabIndex=-1>
<FONT face=Tahoma size=2><B>From:</B> serusers-bounces@lists.iptel.org 
[mailto:serusers-bounces@lists.iptel.org] <B>On Behalf Of </B>&#304;lker Aktuna 
(Ko&#231;.net)<BR><B>Sent:</B> Tuesday, July 11, 2006 1:41 PM<BR><B>To:</B> Victor 
Stanescu<BR><B>Cc:</B> serusers@iptel.org<BR><B>Subject:</B> RE: [Serusers] 
prevent INVITE without REGISTERing<BR></FONT><BR></DIV>
<DIV></DIV>
<DIV><!-- Converted from text/plain format -->
<P><FONT size=2>Hi,<BR><BR>What if my proxy does not handle authenticating 
INVITE messages ?<BR><BR>In that case I think the best way is to lookup location 
table for the source URI.<BR>If the source URI location matches the location in 
that table then we must permit INVITE message.<BR>How can I configure this 
?<BR><BR>Thanks,<BR>ilker<BR><BR>-----Original Message-----<BR>From: 
serusers-bounces@lists.iptel.org [<A 
href="mailto:serusers-bounces@lists.iptel.org">mailto:serusers-bounces@lists.iptel.org</A>] 
On Behalf Of Victor Stanescu<BR>Sent: Monday, July 10, 2006 1:49 PM<BR>Cc: 
serusers@iptel.org<BR>Subject: Re: [Serusers] prevent INVITE without 
REGISTERing<BR><BR>Please read "domain" instead of "gtstelecom.ro": 
www_authorize("domain",<BR>"subscriber") and proxy_authorize("domain", 
"subscriber"), otherwise the code fragment will not be correct. I forgot to 
replace with a generic name.<BR><BR>Victor Stanescu wrote:<BR>&gt; I think it is 
easier to force him to authenticate the INVITE. If he is<BR>&gt; able to 
authenticate the INVITE, why do you care if he is registered<BR>&gt; or 
not?<BR>&gt;<BR>&gt; if (method=="REGISTER") {<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
if(!src_ip=="other") {<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
if (!www_authorize("gtstelecom.ro", "subscriber")) 
{<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
www_challenge("domain", 
"0");<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
break;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
};<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
save("location");<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
log("Replicating 
REGISTER\n");<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
t_replicate("other", "5060");<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; } else 
{<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
save("location");<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; 
};<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&gt; } else 
{<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; # this is an 
INVITE<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; if (!proxy_authorize("gtstelecom.ro", 
"subscriber")) {<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
proxy_challenge("domain", 
"1");<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
break;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; };<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; # 
route the call<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp; ...<BR>&gt; };<BR>&gt;<BR>&gt; 
&#304;lker Aktuna (Ko&#231;.net) wrote:<BR>&gt;&gt;<BR>&gt;&gt; Hi 
all,<BR>&gt;&gt;&nbsp;<BR>&gt;&gt; Is it possible to prevent any user calling 
without registering ? What<BR>&gt;&gt; is the best way to do this ?<BR>&gt;&gt; 
I guess I'll have to check if the source URI exists in location 
table.<BR>&gt;&gt; What is the easiest way to do this 
?<BR>&gt;&gt;&nbsp;<BR>&gt;&gt; If there is a more robust way to do it, please 
suggest...<BR>&gt;&gt;&nbsp;<BR>&gt;&gt; Thanks,<BR>&gt;&gt; 
ilker<BR>&gt;&gt;&nbsp;<BR>&gt;&gt;</FONT></P></DIV>
<!--445D5241795C-->
<br><br><a href="http://387555.sigclick.mailinfo.com/sigclick/07090204/04064D07/0701054D/0364151131.jpg"><img src="http://387555.signature1.mailinfo.com/confirm2.6/07090204/04064D07/0701054D/0364151131.jpg" border="0" nosend="1"></a><!--445D5241795C//--></DIV>
                                                                <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana">
                                                                        <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana">
                                                                                <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana">_____________________________________________________________________________________________________________________________________________</DIV>
                                                                                <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana">Bu e-posta mesaji kisiye ozel olup, gizli bilgiler iceriyor olabilir. Eger bu e-posta mesaji size yanlislikla ulasmissa,&nbsp; icerigini hic bir sekilde kullanmayiniz ve ekli dosyalari acmayiniz. Bu durumda lutfen e-posta mesajini kullaniciya hemen geri gonderiniz&nbsp; ve&nbsp; tum kopyalarini mesaj kutunuzdan siliniz. Bu e-posta mesaji, hic bir sekilde, herhangi bir amac icin cogaltilamaz, yayinlanamaz ve para karsiligi satilamaz.&nbsp; Bu e-posta mesaji viruslere karsi anti-virus sistemleri tarafindan taranmistir. Ancak yollayici, bu e-posta mesajinin - virus koruma sistemleri ile kontrol ediliyor olsa bile - virus icermedigini garanti etmez ve meydana gelebilecek zararlardan dogacak hicbir sorumlulugu kabul etmez. </DIV>
                                                                                <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana">This message is intended solely for the use of the individual or entity to whom it is addressed , and may contain confidential&nbsp; information. If you are not the intended recipient of this message or you receive this mail in error, you should refrain from making any use of the contents and from opening any attachment. In that case, please notify the sender immediately and return the message to the sender, then, delete and destroy all copies. This e-mail message, can not be copied, published or sold for any reason. This e-mail message has been swept by anti-virus systems for the presence of computer viruses. In doing so, however,&nbsp; sender&nbsp; cannot warrant that virus or other forms of data corruption may not be present and do not take any responsibility in any occurrence.</DIV>
                                                                                <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana">_____________________________________________________________________________________________________________________________________________</DIV>
                                                                                <DIV STYLE="FONT-SIZE: 7pt; COLOR: gray; FONT-FAMILY: verdana" ALIGN="justify">
</DIV>
</DIV>
</DIV></BODY></HTML>