No subject
Thu Jul 10 23:27:17 CEST 2014
=========
xlog([level,] format)
Print a formated message using LOG function.
Meaning of the parameters are as follows:
level - The level that will be used in LOG function. It can be:
L_ALERT - log level -3
L_CRIT - log level -2
L_ERR - log level -1
L_WARN - log level 1
L_NOTICE - log level 2
L_INFO - log level 3
L_DBG - log level 4
If the log level is higher than the "debug" global parameter, the message
is not printed to syslog.
If this parameter is missing, the implicit log level is 'L_ERR'.
===========
On Wed, Aug 13, 2014 at 8:41 AM, Liviu Chircu <liviu at opensips.org> wrote:
> Hello Oleksandr,
>
> By default, OpenSIPS should start with "debug = 2". So unless you've
> explicitly set a lower value within your script, all three messages should
> be logged.
>
> To troubleshoot this, when doing this test, could you also run a
> "opensipsctl fifo debug" command and paste the output here?
> (make sure to load the mi_fifo module if it's not already there)
>
> Best regards,
>
> Liviu Chircu
> OpenSIPS Developerhttp://www.opensips-solutions.com
>
> On 08/13/2014 12:48 AM, Oleksandr Kunytsia wrote:
>
> Hello Liviu,
>
> I've got local developer to test changes, so I can test now your
> suggestions:
>
> I started with such change:
>
> ---------------------------
>
> startup_route {
> #xlog("using localhost for routing");
> xlog("L_INFO"," L-INFO using localhost for routing");
> xlog("L_NOTICE"," L_NOTICE using localhost for routing");
> xlog(" no LEVEL using localhost for routing");
> }
>
> ---------------------------
>
> After I restarted opensips I got only one line in logs:
>
> ==> /var/log/sips.log <==
> local2.err<147>: Aug 12 14:44:05 sip1 /usr/sbin/opensips[28615]: no LEVEL
> using localhost for routing
>
> --------
>
> What is the reason of that?
>
> # /usr/sbin/opensips -V
> version: opensips 1.7.1-tls (x86_64/linux)
> flags: STATS: Off, USE_IPV6, USE_TCP, USE_TLS, DISABLE_NAGLE, USE_MCAST,
> SHM_MEM, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT
> ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16,
> MAX_URI_SIZE 1024, BUF_SIZE 65535
> poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
> svnrevision: unknown
> @(#) $Id: main.c 8537 2011-11-08 17:02:11Z bogdan_iancu $
> main.c compiled on 22:15:48 Nov 23 2011 with gcc 4.1.2
>
> /Oleksandr
>
>
> On Thu, Aug 7, 2014 at 2:25 PM, Liviu Chircu <liviu at opensips.org> wrote:
>
>> I understand what's happening now. The thing is, if you use xlog() with
>> only 1 parameter in your script, that message will simply go to syslog's
>> LOG_ERR (it should be visible!).
>>
>> You can control the logging level within your script with
>> xlog("L_NOTICE", ".....") or xlog("L_DBG", "...") for example.
>>
>> Best regards,
>>
>> Liviu Chircu
>> OpenSIPS Developerhttp://www.opensips-solutions.com
>>
>> On 08/06/2014 08:29 PM, Oleksandr Kunytsia wrote:
>>
>> on my config debug set to 0:
>> ----
>>
>> #
>> # GLOBALS
>> #
>> debug=0
>> log_facility=LOG_LOCAL2
>> log_stderror=no
>> ------
>>
>>
>> I also configured rsyslog for saving LOCAL2 to file with specific
>> template:
>> ----
>> $template precise,"%pri-text%: %timegenerated% %HOSTNAME%
>> %syslogtag%%msg%\n"
>> local2.* -/var/log/sips.log;precise
>> ----
>>
>> extract from /var/log/sips.log:
>>
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5588]: new-int
>> INVITE[PhoneNUM,PhoneNUM57]: SIP 404 after 19161ms from IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5612]: r-lt1
>> INVITE[+1PhoneNUM,PhoneNUM1]: SIP 180 after 25905ms from IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5592]: r-lt1
>> INVITE[+1PhoneNUM,PhoneNUM5]: relayed IP.ADD.RE.SS outbound to IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5600]: r-in1
>> INVITE[+1PhoneNUM,PhoneNUM7]: relayed IP.ADD.RE.SS outbound to IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5588]: new-int
>> INVITE[PhoneNUM7,PhoneNUM]: relayed IP.ADD.RE.SS outbound to IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5560]: r-in1
>> INVITE[+PhoneNUM,PhoneNUM437]: SIP 100 after 3ms from IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5650]: r-lt1
>> INVITE[800PhoneNUM,PhoneNUM248]: relayed IP.ADD.RE.SS outbound to
>> IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5622]: r-lt1
>> INVITE[+PhoneNUM,PhoneNUM015]: SIP 100 after 9ms from IP.ADD.RE.SS
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5624]: Broadvox
>> BYE[PhoneNUM,PhoneNUM00] existing dialog
>> local2.err<147>: Aug 6 17:18:52 r-sip opensips[5604]: r-in1
>> INVITE[80PhoneNUM,PhoneNUM213]: SIP 183 after 7270ms from IP.ADD.RE.SS
>>
>>
>> On Wed, Aug 6, 2014 at 11:17 AM, Muhammad Shahzad <shaheryarkh at gmail.com>
>> wrote:
>>
>>> You can set opensips log level using "debug" parameter.
>>>
>>> http://www.opensips.org/Documentation/Script-CoreParameters-1-11#toc35
>>>
>>> Also make sure your syslog service is configured to send local2.* logs
>>> to the log file(s) where you want to see them. i.e. to see all opensips
>>> logs file named opensips.log set /etc/rsyslog.conf to have entry like this,
>>>
>>> local2.* /var/log/opensips.log
>>>
>>> Then restart the service.
>>>
>>> Hope this helps.
>>>
>>> Thank you.
>>>
>>>
>>>
>>>
>>> On Wed, Aug 6, 2014 at 10:49 AM, Oleksandr Kunytsia <okunia at gmail.com>
>>> wrote:
>>>
>>>> Hello,
>>>>
>>>> Logging of my opensips looks like the following:
>>>>
>>>> ----cut----
>>>> log_facility=LOG_LOCAL2
>>>> log_stderror=no
>>>> ----cut----
>>>>
>>>> Opensips sends logging information as LOCAL2.error messages,
>>>>
>>>> How to configure to send messages with another log_level? e.g.
>>>> local2.info?
>>>>
>>>> _______________________________________________
>>>> Users mailing list
>>>> Users at lists.opensips.org
>>>> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>>>>
>>>>
>>>
>>> _______________________________________________
>>> Users mailing list
>>> Users at lists.opensips.org
>>> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>>>
>>>
>>
>>
>> _______________________________________________
>> Users mailing listUsers at lists.opensips.orghttp://lists.opensips.org/cgi-bin/mailman/listinfo/users
>>
>>
>>
>> _______________________________________________
>> Users mailing list
>> Users at lists.opensips.org
>> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>>
>>
>
>
> _______________________________________________
> Users mailing listUsers at lists.opensips.orghttp://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>
>
> _______________________________________________
> Users mailing list
> Users at lists.opensips.org
> http://lists.opensips.org/cgi-bin/mailman/listinfo/users
>
>
--001a11339e8826f88f0500839f7b
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
<div dir=3D"ltr">Hello Liviu,<div><br></div><div>As I mentioned before, on =
my config</div><div><b>debug=3D0,</b></div><div>the same shows `<b>opensips=
ctl fifo debug`</b></div><div>DEBUG:: 0</div><div><br></div><div>When I com=
mented out debug parameter from config, on restart opensips logs the follow=
ing:</div>
<div>-----------</div><div><div>=3D=3D> /var/log/sips.log <=3D=3D<br>=
</div><div>local2.notice<149>: Aug 13 07:12:00 sip1 /usr/sbin/opensip=
s[24117]: NOTICE:core:main: version: opensips 1.7.1-tls (x86_64/linux)</div=
><div>
local2.notice<149>: Aug 13 07:12:00 sip1 /usr/sbin/opensips[24117]: N=
OTICE:signaling:mod_init: initializing module ...</div><div>local2.warn<=
148>: Aug 13 07:12:00 sip1 /usr/sbin/opensips[24117]: WARNING:core:mk_ne=
t: invalid network address/netmask combination fixed...</div>
<div>local2.notice<149>: Aug 13 07:12:00 sip1 /usr/sbin/opensips[2412=
1]: L_NOTICE using localhost for routing<br></div><div>local2.err<=
147>: Aug 13 07:12:00 sip1 /usr/sbin/opensips[24121]: no LEVEL usi=
ng localhost for routing</div>
</div><div>----------------------------</div><div><br></div><div>So only 2 =
of 3 messages have been logged. </div><div><br></div><div>I found that=
it would prints all those 3 messages (as well as a lot of other INFO msgs =
:) if I put 'debug=3D3' on config file.</div>
<div><br></div><div>From <a href=3D"http://www.opensips.org/html/docs/modul=
es/1.4.x/xlog.html">http://www.opensips.org/html/docs/modules/1.4.x/xlog.ht=
ml</a> - </div><div><br></div><div>=3D=3D=3D=3D=3D=3D=3D=3D=3D</div><d=
iv><br></div><div> xlog([level,] format)</div>
<div><div><br></div><div>Print a formated message using LOG function.</div>=
<div>Meaning of the parameters are as follows:</div><div>level - The level =
that will be used in LOG function. It can be:</div><div><br></div><div>
L_ALERT - log level -3</div><div>L_CRIT - log level -2</div><div>L_ERR - lo=
g level -1</div><div>L_WARN - log level 1</div><div>L_NOTICE - log level 2<=
/div><div>L_INFO - log level 3</div><div>L_DBG - log level 4</div><div>
If the log level is higher than the “debug” global parameter, t=
he message is not printed to syslog.<br></div><div>If this parameter is mis=
sing, the implicit log level is 'L_ERR'.</div></div><div>=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D</div><div>
<br></div><div><br></div></div><div class=3D"gmail_extra"><br><br><div clas=
s=3D"gmail_quote">On Wed, Aug 13, 2014 at 8:41 AM, Liviu Chircu <span dir=
=3D"ltr"><<a href=3D"mailto:liviu at opensips.org" target=3D"_blank">liviu@=
opensips.org</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex">
=20
=20
=20
<div text=3D"#000000" bgcolor=3D"#FFFFFF">
<div><tt>Hello Oleksandr,<br>
<br>
By default, OpenSIPS should start with "debug =3D 2". So =
unless
you've explicitly set a lower value within your script, all
three messages should be logged.<br>
<br>
To troubleshoot this, when doing this test, could you also run a
"opensipsctl fifo debug" command and paste the output her=
e?<br>
(make sure to load the mi_fifo module if it's not already there=
)<br>
<br>
Best regards,<br>
</tt><div class=3D"">
<pre cols=3D"72">Liviu Chircu
OpenSIPS Developer
<a href=3D"http://www.opensips-solutions.com" target=3D"_blank">http://www.=
opensips-solutions.com</a></pre></div><div><div class=3D"h5">
On 08/13/2014 12:48 AM, Oleksandr Kunytsia wrote:<br>
</div></div></div><div><div class=3D"h5">
<blockquote type=3D"cite">
<div dir=3D"ltr">Hello Liviu,
<div><br>
</div>
<div>I've got local developer to test changes, so I can test no=
w
your suggestions:</div>
<div><br>
</div>
<div>I started with such change:</div>
<div><br>
</div>
<div>---------------------------</div>
<div><br>
</div>
<div>startup_route {</div>
<div> #xlog("using localhost for ro=
uting");</div>
<div> xlog("L_INFO"," L-I=
NFO using localhost for
routing");</div>
<div> xlog("L_NOTICE"," L=
_NOTICE using localhost for
routing");</div>
<div> xlog(" no LEVEL using localho=
st for routing");</div>
<div>} </div>
<div><br>
</div>
<div>---------------------------<br>
</div>
<div><br>
</div>
<div>After I restarted opensips I got only one line in logs:</div>
<div><br>
</div>
<div>
<div>=3D=3D> /var/log/sips.log <=3D=3D</div>
<div>local2.err<147>: Aug 12 14:44:05 sip1
/usr/sbin/opensips[28615]: no LEVEL using localhost for
routing</div>
</div>
<div><br>
</div>
<div>--------</div>
<div><br>
</div>
<div>What is the reason of that?</div>
<div><br>
</div>
<div>
<div># /usr/sbin/opensips -V<br>
</div>
<div>version: opensips 1.7.1-tls (x86_64/linux)</div>
<div>flags: STATS: Off, USE_IPV6, USE_TCP, USE_TLS,
DISABLE_NAGLE, USE_MCAST, SHM_MEM, SHM_MMAP, PKG_MALLOC,
F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT</div>
<div>ADAPTIVE_WAIT_LOOPS=3D1024, MAX_RECV_BUFFER_SIZE 262144,
MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535</div>
<div>poll method support: poll, epoll_lt, epoll_et, sigio_rt,
select.</div>
<div>svnrevision: unknown</div>
<div>
@(#) $Id: main.c 8537 2011-11-08 17:02:11Z bogdan_iancu $</div>
<div>main.c compiled on 22:15:48 Nov 23 2011 with gcc 4.1.2</div>
<div><br>
</div>
</div>
<div>/Oleksandr</div>
</div>
<div class=3D"gmail_extra"><br>
<br>
<div class=3D"gmail_quote">
On Thu, Aug 7, 2014 at 2:25 PM, Liviu Chircu <span dir=3D"ltr">&l=
t;<a href=3D"mailto:liviu at opensips.org" target=3D"_blank">liviu at opensips.or=
g</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;bord=
er-left:1px #ccc solid;padding-left:1ex">
<div text=3D"#000000" bgcolor=3D"#FFFFFF">
<div><tt>I understand what's happening now. The thing is,
if you use xlog() with only 1 parameter in your
script, that message will simply go to syslog's
LOG_ERR (it should be visible!).<br>
<br>
You can control the logging level within your script
with xlog("L_NOTICE", ".....") or xlo=
g("L_DBG", "...")
for example.<br>
<br>
Best regards,<br>
</tt>
<div>
<pre cols=3D"72">Liviu Chircu
OpenSIPS Developer
<a href=3D"http://www.opensips-solutions.com" target=3D"_blank">http://www.=
opensips-solutions.com</a></pre>
</div>
<div>
<div> On 08/06/2014 08:29 PM, Oleksandr
Kunytsia wrote:<br>
</div>
</div>
</div>
<div>
<div>
<blockquote type=3D"cite">
<div dir=3D"ltr">on my config debug set to 0:
<div>----</div>
<div>
<div><br>
</div>
<div>#</div>
<div># GLOBALS</div>
<div>#</div>
<div>debug=3D0</div>
<div>log_facility=3DLOG_LOCAL2</div>
<div>log_stderror=3Dno</div>
</div>
<div>------</div>
<div><br>
</div>
<div><br>
</div>
<div>I also configured rsyslog for saving LOCAL2
to file with specific template:</div>
<div>----</div>
<div>
<div>$template precise,"%pri-text%:
%timegenerated% %HOSTNAME% %syslogtag%%msg%\n&quo=
t;
</div>
<div>local2.* &n=
bsp;
-/var/log/sips.log;precise </div>
<div>----<br>
</div>
</div>
<div><br>
</div>
<div>extract from /var/log/sips.log:<br>
</div>
<div>
<div><br>
</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5588]: new-int
INVITE[PhoneNUM,PhoneNUM57]: SIP 404 after
19161ms from IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5612]: r-lt1
INVITE[+1PhoneNUM,PhoneNUM1]: SIP 180 after
25905ms from IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5592]: r-lt1
INVITE[+1PhoneNUM,PhoneNUM5]: relayed
IP.ADD.RE.SS outbound to IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5600]: r-in1
INVITE[+1PhoneNUM,PhoneNUM7]: relayed
IP.ADD.RE.SS outbound to IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5588]: new-int
INVITE[PhoneNUM7,PhoneNUM]: relayed
IP.ADD.RE.SS outbound to IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5560]: r-in1
INVITE[+PhoneNUM,PhoneNUM437]: SIP 100 after
3ms from IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5650]: r-lt1
INVITE[800PhoneNUM,PhoneNUM248]: relayed
IP.ADD.RE.SS outbound to IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5622]: r-lt1
INVITE[+PhoneNUM,PhoneNUM015]: SIP 100 after
9ms from IP.ADD.RE.SS</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5624]: Broadvox
BYE[PhoneNUM,PhoneNUM00] existing dialog</div>
<div>local2.err<147>: Aug 6 17:18:52
r-sip opensips[5604]: r-in1
INVITE[80PhoneNUM,PhoneNUM213]: SIP 183 after
7270ms from IP.ADD.RE.SS</div>
</div>
</div>
<div class=3D"gmail_extra"><br>
<br>
<div class=3D"gmail_quote">On Wed, Aug 6, 2014 at
11:17 AM, Muhammad Shahzad <span dir=3D"ltr"><<a=
href=3D"mailto:shaheryarkh at gmail.com" target=3D"_blank">shaheryarkh at gmail.=
com</a>></span>
wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0=
0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir=3D"ltr">
<div>
<div>
<div>You can set opensips log level
using "debug" parameter.<br>
<br>
<a href=3D"http://www.opensips.org/Docume=
ntation/Script-CoreParameters-1-11#toc35" target=3D"_blank">http://www.open=
sips.org/Documentation/Script-CoreParameters-1-11#toc35</a><br>
<br>
</div>
Also make sure your syslog service is
configured to send local2.* logs to the
log file(s) where you want to see them.
i.e. to see all opensips logs file named
opensips.log set /etc/rsyslog.conf to
have entry like this,<br>
<br>
</div>
local2.* /var/log/opensips.log<br>
<br>
</div>
<div>Then restart the service.<br>
</div>
<div><br>
</div>
Hope this helps.<br>
<div>
<div>
<div><br>
</div>
<div>Thank you.<br>
<br>
<br>
</div>
</div>
</div>
</div>
<div class=3D"gmail_extra"> <br>
<br>
<div class=3D"gmail_quote">
<div>
<div>On Wed, Aug 6, 2014 at 10:49 AM,
Oleksandr Kunytsia <span dir=3D"ltr"><=
<a href=3D"mailto:okunia at gmail.com" target=3D"_blank">okunia at gmail.com</a>&=
gt;</span>
wrote:<br>
</div>
</div>
<blockquote class=3D"gmail_quote" style=3D"ma=
rgin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div>
<div>
<div dir=3D"ltr"><span style=3D"font-fa=
mily:arial,sans-serif;font-size:13px">Hello,</span>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px"><br>
</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">Logging
of my opensips looks like the
following:</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">
<div><br>
</div>
<div>----cut---- </div>
<div>log_facility=3DLOG_LOCAL2</div=
>
<div>log_stderror=3Dno</div>
</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">----cut----<br>
</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px"><br>
</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">Opensips
sends logging information as
LOCAL2.error messages,</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">
<br>
</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">How
to configure to send messages
with another log_level? e.g. <=
a href=3D"http://local2.info/" target=3D"_blank">local2.info</a>?</div>
<div style=3D"font-family:arial,sans-=
serif;font-size:13px">
</div>
</div>
<br>
</div>
</div>
<div>______________________________________=
_________<br>
Users mailing list<br>
<a href=3D"mailto:Users at lists.opensips.or=
g" target=3D"_blank">Users at lists.opensips.org</a><br>
<a href=3D"http://lists.opensips.org/cgi-=
bin/mailman/listinfo/users" target=3D"_blank">http://lists.opensips.org/cgi=
-bin/mailman/listinfo/users</a><br>
<br>
</div>
</blockquote>
</div>
<br>
</div>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href=3D"mailto:Users at lists.opensips.org" targe=
t=3D"_blank">Users at lists.opensips.org</a><br>
<a href=3D"http://lists.opensips.org/cgi-bin/mail=
man/listinfo/users" target=3D"_blank">http://lists.opensips.org/cgi-bin/mai=
lman/listinfo/users</a><br>
<br>
</blockquote>
</div>
<br>
</div>
<br>
<fieldset></fieldset>
<br>
<pre>_______________________________________________
Users mailing list
<a href=3D"mailto:Users at lists.opensips.org" target=3D"_blank">Users at lists.o=
pensips.org</a>
<a href=3D"http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target=
=3D"_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a>
</pre>
</blockquote>
<br>
</div>
</div>
</div>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href=3D"mailto:Users at lists.opensips.org" target=3D"_blank">U=
sers at lists.opensips.org</a><br>
<a href=3D"http://lists.opensips.org/cgi-bin/mailman/listinfo/u=
sers" target=3D"_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/=
users</a><br>
<br>
</blockquote>
</div>
<br>
</div>
<br>
<fieldset></fieldset>
<br>
<pre>_______________________________________________
Users mailing list
<a href=3D"mailto:Users at lists.opensips.org" target=3D"_blank">Users at lists.o=
pensips.org</a>
<a href=3D"http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target=
=3D"_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a>
</pre>
</blockquote>
<br>
</div></div></div>
<br>_______________________________________________<br>
Users mailing list<br>
<a href=3D"mailto:Users at lists.opensips.org">Users at lists.opensips.org</a><br=
>
<a href=3D"http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target=
=3D"_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br=
>
<br></blockquote></div><br></div>
--001a11339e8826f88f0500839f7b--
More information about the Users
mailing list