<font size=2 face="sans-serif">Thanks Carsten,</font>
<br>
<br><font size=2 face="sans-serif">That's what we are looking for.</font>
<br>
<br><font size=2 face="sans-serif">In this configuration the value &quot;</font><tt><font size=2>2440587.49999421</font></tt><font size=2 face="sans-serif">&quot;
doesn't work as permanent. You have to put something like &quot;2999-12-31
00:00:00&quot;</font>
<br>
<br><font size=2 face="sans-serif">Regards,</font>
<br><font size=2 face="sans-serif">Pedro</font>
<br>
<br>
<br>
<br>
<br><font size=1 color=#5f5f5f face="sans-serif">De: &nbsp; &nbsp; &nbsp;
&nbsp;</font><font size=1 face="sans-serif">Carsten Bock &lt;carsten@ng-voice.com&gt;</font>
<br><font size=1 color=#5f5f5f face="sans-serif">Para: &nbsp; &nbsp; &nbsp;
&nbsp;</font><font size=1 face="sans-serif">&quot;SIP Router -
Kamailio (OpenSER) and SIP Express Router (SER) - Users &nbsp; &nbsp; &nbsp;
&nbsp;Mailing List&quot; &lt;sr-users@lists.sip-router.org&gt;</font>
<br><font size=1 color=#5f5f5f face="sans-serif">Fecha: &nbsp; &nbsp; &nbsp;
&nbsp;</font><font size=1 face="sans-serif">18/04/2012 19:04</font>
<br><font size=1 color=#5f5f5f face="sans-serif">Asunto: &nbsp; &nbsp;
&nbsp; &nbsp;</font><font size=1 face="sans-serif">Re: [SR-Users]
sqlite -&gt; usrloc tables deleted after 1 minute</font>
<br><font size=1 color=#5f5f5f face="sans-serif">Enviado por: &nbsp; &nbsp;
&nbsp; &nbsp;</font><font size=1 face="sans-serif">sr-users-bounces@lists.sip-router.org</font>
<br>
<hr noshade>
<br>
<br>
<br><tt><font size=2>Hi,<br>
<br>
If you want to change aliases &amp; location during runtime by updating
or<br>
inserting values to SQLlite, you need to change the &quot;db_mode&quot;
of<br>
usrloc.<br>
Your current setting is &quot;1&quot;, which will only read data at startup
and<br>
save all changes made by Kamailio directly into the database (but it<br>
will never read from the database again).<br>
If you change your db_mode to 3, you will directly read and write to<br>
the database.<br>
<br>
</font></tt><a href=http://kamailio.org/docs/modules/devel/modules_k/usrloc.html#id2495853><tt><font size=2>http://kamailio.org/docs/modules/devel/modules_k/usrloc.html#id2495853</font></tt></a><tt><font size=2><br>
<br>
Kind regards,<br>
Carsten<br>
<br>
2012/4/18 Pedro Antonio Vico Solano &lt;pvsolano@amper.es&gt;:<br>
&gt; I've found it!. If you want a permanent alias/location you have to
put the<br>
&gt; following value on 'expire':<br>
&gt;<br>
&gt; 2440587.49999421<br>
&gt;<br>
&gt; is it possible to modify aliases/location via updating or inserting
values<br>
&gt; on tables via SQLite?<br>
&gt;<br>
&gt; BR,<br>
&gt; Pedro<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; De: &nbsp; &nbsp; &nbsp; &nbsp;Carsten Bock &lt;carsten@ng-voice.com&gt;<br>
&gt; Para: &nbsp; &nbsp; &nbsp; &nbsp;&quot;SIP Router - Kamailio (OpenSER)
and SIP Express Router (SER) -<br>
&gt; Users &nbsp; &nbsp; &nbsp; &nbsp;Mailing List&quot; &lt;sr-users@lists.sip-router.org&gt;<br>
&gt; Fecha: &nbsp; &nbsp; &nbsp; &nbsp;18/04/2012 17:07<br>
&gt; Asunto: &nbsp; &nbsp; &nbsp; &nbsp;Re: [SR-Users] sqlite -&gt; usrloc
tables deleted after 1 minute<br>
&gt; Enviado por: &nbsp; &nbsp; &nbsp; &nbsp;sr-users-bounces@lists.sip-router.org<br>
&gt; ________________________________<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; SQLLite has no datatype for dates, so &quot;0&quot; is probably not
correct...<br>
&gt; </font></tt><a href=https://www.sqlite.org/datatype3.html><tt><font size=2>https://www.sqlite.org/datatype3.html</font></tt></a><tt><font size=2><br>
&gt;<br>
&gt; The Kamailio-SQLLite Module stores datetime-values as a REAL:<br>
&gt; case DB1_DATETIME:<br>
&gt; &nbsp; rc = sqlite3_bind_double(stmt, i, timet_to_sqlite(VAL_TIME(val)));<br>
&gt;<br>
&gt; With the following conversion method:<br>
&gt;<br>
&gt; static double timet_to_sqlite(time_t t)<br>
&gt; {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; return ((((double) t) - 0.5) / 86400.0)
+ 2440587.5;<br>
&gt; }<br>
&gt;<br>
&gt; So, 0 is definitely incorrect and somewhen back in time.<br>
&gt;<br>
&gt; So long,<br>
&gt; Carsten<br>
&gt;<br>
&gt; 2012/4/18 Pedro Antonio Vico Solano &lt;pvsolano@amper.es&gt;:<br>
&gt;&gt; Hello Carsten,<br>
&gt;&gt;<br>
&gt;&gt; Expire column is 0, what I thought it was &quot;permanent&quot;,
am I right?<br>
&gt;&gt;<br>
&gt;&gt; I've tried with the default value: '2020-05-28 21:32:15' and happens
the<br>
&gt;&gt; same. Maybe is it a problem with the data type of 'expire' column?<br>
&gt;&gt;<br>
&gt;&gt; And I've done another test: if I load tables after Kamailio starts
they<br>
&gt;&gt; are<br>
&gt;&gt; not deleted after 1 minute!<br>
&gt;&gt;<br>
&gt;&gt; Strange.<br>
&gt;&gt;<br>
&gt;&gt; BR<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; De: &nbsp; &nbsp; &nbsp; &nbsp;Carsten Bock &lt;carsten@ng-voice.com&gt;<br>
&gt;&gt; Para: &nbsp; &nbsp; &nbsp; &nbsp;&quot;SIP Router - Kamailio (OpenSER)
and SIP Express Router (SER)<br>
&gt;&gt; -<br>
&gt;&gt; Users &nbsp; &nbsp; &nbsp; &nbsp;Mailing List&quot; &lt;sr-users@lists.sip-router.org&gt;<br>
&gt;&gt; Fecha: &nbsp; &nbsp; &nbsp; &nbsp;18/04/2012 15:57<br>
&gt;&gt; Asunto: &nbsp; &nbsp; &nbsp; &nbsp;Re: [SR-Users] sqlite -&gt;
usrloc tables deleted after 1<br>
&gt;&gt; minute<br>
&gt;&gt; Enviado por: &nbsp; &nbsp; &nbsp; &nbsp;sr-users-bounces@lists.sip-router.org<br>
&gt;&gt; ________________________________<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi Pedro,<br>
&gt;&gt;<br>
&gt;&gt; did you check your expires date in your preloaded data? Kamailio
will<br>
&gt;&gt; delete it, if expires is in the past....<br>
&gt;&gt; This is most likely your problem.<br>
&gt;&gt;<br>
&gt;&gt; So long,<br>
&gt;&gt; Carsten<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2012/4/18 Pedro Antonio Vico Solano &lt;pvsolano@amper.es&gt;:<br>
&gt;&gt;&gt; Hello,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I'm having a strange behaviour with sqlite and usrloc tables
(location,<br>
&gt;&gt;&gt; aliases). I've created the database with kamdbctl and preloaded
many<br>
&gt;&gt;&gt; tables<br>
&gt;&gt;&gt; with my own data.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; After starting kamailio 3.2.2 (with sqlite engine) location
and aliases<br>
&gt;&gt;&gt; tables get empty after 1 minute. It does not happen with other
tables<br>
&gt;&gt;&gt; (e.g.<br>
&gt;&gt;&gt; dialplan &amp; subscriber).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ul.dump command also shows empty tables.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Some configuration:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; # -- usrloc params --<br>
&gt;&gt;&gt; # use sqlite database for persistent storage, write-thru<br>
&gt;&gt;&gt; modparam(&quot;usrloc&quot;, &quot;db_mode&quot;, 1)<br>
&gt;&gt;&gt; modparam(&quot;usrloc|dialplan&quot;, &quot;db_url&quot;,<br>
&gt;&gt;&gt; &quot;sqlite:////etc/kamailio/db.sqlite&quot;)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; [Attached SQLite schema.]<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Can anyone help me? Thanks in advance.<br>
&gt;&gt;&gt; BR,<br>
&gt;&gt;&gt; Pedro<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; ADVERTENCIA<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Este mensaje y/o sus anexos, pueden contener información personal
y<br>
&gt;&gt;&gt; confidencial cuyo uso, reproducción o distribución no autorizados
están<br>
&gt;&gt;&gt; legalmente prohibidos. Por lo tanto, si Vd. no fuera su destinatario
y,<br>
&gt;&gt;&gt; erróneamente, lo hubiera recibido, le rogamos que informe
al remitente y<br>
&gt;&gt;&gt; lo<br>
&gt;&gt;&gt; borre de inmediato.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; En cumplimiento de la Ley Orgánica 15/1999, de Protección
de Datos de<br>
&gt;&gt;&gt; Carácter Personal le informamos de que su dirección de correo<br>
&gt;&gt;&gt; electrónico,<br>
&gt;&gt;&gt; así como sus datos personales y de empresa pasarán a formar
parte de<br>
&gt;&gt;&gt; nuestro<br>
&gt;&gt;&gt; fichero de Gestión, y serán tratados con la única finalidad
de<br>
&gt;&gt;&gt; mantenimiento<br>
&gt;&gt;&gt; de la relación adquirida con usted. Los datos personales que
existen en<br>
&gt;&gt;&gt; nuestro poder están protegidos por nuestra Política de Seguridad,
y no<br>
&gt;&gt;&gt; serán<br>
&gt;&gt;&gt; compartidos con ninguna otra empresa. Usted puede ejercitar
los derechos<br>
&gt;&gt;&gt; de<br>
&gt;&gt;&gt; acceso, rectificación, cancelación y oposición dirigiéndose
por escrito a<br>
&gt;&gt;&gt; la<br>
&gt;&gt;&gt; dirección arriba indicada.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; This e-mail and its attachments may include confidential personal<br>
&gt;&gt;&gt; information which may be protected by any legal rules and
cannot be used,<br>
&gt;&gt;&gt; copied, distributed or disclosed to any person without authorisation.
If<br>
&gt;&gt;&gt; you<br>
&gt;&gt;&gt; are not the intended recipient and have received this e-mail
by mistake,<br>
&gt;&gt;&gt; please advise the sender and erase it.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; In compliance with the Spanish Organic Act 15/1999 on Personal
Data<br>
&gt;&gt;&gt; Protection, we hereby inform you that your email address,
as well as your<br>
&gt;&gt;&gt; personal and business information, will be included in our
Management<br>
&gt;&gt;&gt; files<br>
&gt;&gt;&gt; and used solely for purposes corresponding to our commercial<br>
&gt;&gt;&gt; relationship.<br>
&gt;&gt;&gt; All personal data in our possession is protected by our Data
Safety<br>
&gt;&gt;&gt; Policy<br>
&gt;&gt;&gt; and thus shall not be released to any other third party whatsoever.
You<br>
&gt;&gt;&gt; may<br>
&gt;&gt;&gt; exercise your right to access, rectify, cancel and contest
by writing to<br>
&gt;&gt;&gt; the<br>
&gt;&gt;&gt; address provided above.<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; SIP Express Router (SER) and Kamailio (OpenSER) - sr-users
mailing list<br>
&gt;&gt;&gt; sr-users@lists.sip-router.org<br>
&gt;&gt;&gt; </font></tt><a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users"><tt><font size=2>http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</font></tt></a><tt><font size=2><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Carsten Bock<br>
&gt;&gt; CEO (Geschäftsführer)<br>
&gt;&gt;<br>
&gt;&gt; ng-voice GmbH<br>
&gt;&gt; Schomburgstr. 80<br>
&gt;&gt; D-22767 Hamburg / Germany<br>
&gt;&gt;<br>
&gt;&gt; </font></tt><a href="http://www.ng-voice.com/"><tt><font size=2>http://www.ng-voice.com</font></tt></a><tt><font size=2><br>
&gt;&gt; </font></tt><a href="mailto:carsten@ng-voice.com"><tt><font size=2>mailto:carsten@ng-voice.com</font></tt></a><tt><font size=2><br>
&gt;&gt;<br>
&gt;&gt; Mobile +49 179 2021244<br>
&gt;&gt; Office +49 40 34927219<br>
&gt;&gt; Fax +49 40 34927220<br>
&gt;&gt;<br>
&gt;&gt; Sitz der Gesellschaft: Hamburg<br>
&gt;&gt; Registergericht: Amtsgericht Hamburg, HRB 120189<br>
&gt;&gt; Geschäftsführer: Carsten Bock<br>
&gt;&gt; Ust-ID: DE279344284<br>
&gt;&gt;<br>
&gt;&gt; Hier finden Sie unsere handelsrechtlichen Pflichtangaben:<br>
&gt;&gt; </font></tt><a href="http://www.ng-voice.com/imprint/"><tt><font size=2>http://www.ng-voice.com/imprint/</font></tt></a><tt><font size=2><br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Meet ng-voice at LinuxTag 2012 in Berlin - May 23rd - 26th, 2012.
Save the<br>
&gt;&gt; date!<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing
list<br>
&gt;&gt; sr-users@lists.sip-router.org<br>
&gt;&gt; </font></tt><a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users"><tt><font size=2>http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</font></tt></a><tt><font size=2><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ADVERTENCIA<br>
&gt;&gt;<br>
&gt;&gt; Este mensaje y/o sus anexos, pueden contener información personal
y<br>
&gt;&gt; confidencial cuyo uso, reproducción o distribución no autorizados
están<br>
&gt;&gt; legalmente prohibidos. Por lo tanto, si Vd. no fuera su destinatario
y,<br>
&gt;&gt; erróneamente, lo hubiera recibido, le rogamos que informe al remitente
y<br>
&gt;&gt; lo<br>
&gt;&gt; borre de inmediato.<br>
&gt;&gt;<br>
&gt;&gt; En cumplimiento de la Ley Orgánica 15/1999, de Protección de Datos
de<br>
&gt;&gt; Carácter Personal le informamos de que su dirección de correo
electrónico,<br>
&gt;&gt; así como sus datos personales y de empresa pasarán a formar parte
de<br>
&gt;&gt; nuestro<br>
&gt;&gt; fichero de Gestión, y serán tratados con la única finalidad de<br>
&gt;&gt; mantenimiento<br>
&gt;&gt; de la relación adquirida con usted. Los datos personales que existen
en<br>
&gt;&gt; nuestro poder están protegidos por nuestra Política de Seguridad,
y no<br>
&gt;&gt; serán<br>
&gt;&gt; compartidos con ninguna otra empresa. Usted puede ejercitar los
derechos<br>
&gt;&gt; de<br>
&gt;&gt; acceso, rectificación, cancelación y oposición dirigiéndose por
escrito a<br>
&gt;&gt; la<br>
&gt;&gt; dirección arriba indicada.<br>
&gt;&gt;<br>
&gt;&gt; This e-mail and its attachments may include confidential personal<br>
&gt;&gt; information which may be protected by any legal rules and cannot
be used,<br>
&gt;&gt; copied, distributed or disclosed to any person without authorisation.
If<br>
&gt;&gt; you<br>
&gt;&gt; are not the intended recipient and have received this e-mail by
mistake,<br>
&gt;&gt; please advise the sender and erase it.<br>
&gt;&gt;<br>
&gt;&gt; In compliance with the Spanish Organic Act 15/1999 on Personal
Data<br>
&gt;&gt; Protection, we hereby inform you that your email address, as well
as your<br>
&gt;&gt; personal and business information, will be included in our Management<br>
&gt;&gt; files<br>
&gt;&gt; and used solely for purposes corresponding to our commercial relationship.<br>
&gt;&gt; All personal data in our possession is protected by our Data Safety
Policy<br>
&gt;&gt; and thus shall not be released to any other third party whatsoever.
You<br>
&gt;&gt; may<br>
&gt;&gt; exercise your right to access, rectify, cancel and contest by
writing to<br>
&gt;&gt; the<br>
&gt;&gt; address provided above.<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing
list<br>
&gt;&gt; sr-users@lists.sip-router.org<br>
&gt;&gt; </font></tt><a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users"><tt><font size=2>http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</font></tt></a><tt><font size=2><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Carsten Bock<br>
&gt; CEO (Geschäftsführer)<br>
&gt;<br>
&gt; ng-voice GmbH<br>
&gt; Schomburgstr. 80<br>
&gt; D-22767 Hamburg / Germany<br>
&gt;<br>
&gt; </font></tt><a href="http://www.ng-voice.com/"><tt><font size=2>http://www.ng-voice.com</font></tt></a><tt><font size=2><br>
&gt; </font></tt><a href="mailto:carsten@ng-voice.com"><tt><font size=2>mailto:carsten@ng-voice.com</font></tt></a><tt><font size=2><br>
&gt;<br>
&gt; Mobile +49 179 2021244<br>
&gt; Office +49 40 34927219<br>
&gt; Fax +49 40 34927220<br>
&gt;<br>
&gt; Sitz der Gesellschaft: Hamburg<br>
&gt; Registergericht: Amtsgericht Hamburg, HRB 120189<br>
&gt; Geschäftsführer: Carsten Bock<br>
&gt; Ust-ID: DE279344284<br>
&gt;<br>
&gt; Hier finden Sie unsere handelsrechtlichen Pflichtangaben:<br>
&gt; </font></tt><a href="http://www.ng-voice.com/imprint/"><tt><font size=2>http://www.ng-voice.com/imprint/</font></tt></a><tt><font size=2><br>
&gt;<br>
&gt; --<br>
&gt; Meet ng-voice at LinuxTag 2012 in Berlin - May 23rd - 26th, 2012.
Save the<br>
&gt; date!<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing
list<br>
&gt; sr-users@lists.sip-router.org<br>
&gt; </font></tt><a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users"><tt><font size=2>http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</font></tt></a><tt><font size=2><br>
&gt;<br>
&gt;<br>
&gt; ADVERTENCIA<br>
&gt;<br>
&gt; Este mensaje y/o sus anexos, pueden contener información personal
y<br>
&gt; confidencial cuyo uso, reproducción o distribución no autorizados
están<br>
&gt; legalmente prohibidos. Por lo tanto, si Vd. no fuera su destinatario
y,<br>
&gt; erróneamente, lo hubiera recibido, le rogamos que informe al remitente
y lo<br>
&gt; borre de inmediato.<br>
&gt;<br>
&gt; En cumplimiento de la Ley Orgánica 15/1999, de Protección de Datos
de<br>
&gt; Carácter Personal le informamos de que su dirección de correo electrónico,<br>
&gt; así como sus datos personales y de empresa pasarán a formar parte
de nuestro<br>
&gt; fichero de Gestión, y serán tratados con la única finalidad de mantenimiento<br>
&gt; de la relación adquirida con usted. Los datos personales que existen
en<br>
&gt; nuestro poder están protegidos por nuestra Política de Seguridad,
y no serán<br>
&gt; compartidos con ninguna otra empresa. Usted puede ejercitar los derechos
de<br>
&gt; acceso, rectificación, cancelación y oposición dirigiéndose por escrito
a la<br>
&gt; dirección arriba indicada.<br>
&gt;<br>
&gt; This e-mail and its attachments may include confidential personal<br>
&gt; information which may be protected by any legal rules and cannot be
used,<br>
&gt; copied, distributed or disclosed to any person without authorisation.
If you<br>
&gt; are not the intended recipient and have received this e-mail by mistake,<br>
&gt; please advise the sender and erase it.<br>
&gt;<br>
&gt; In compliance with the Spanish Organic Act 15/1999 on Personal Data<br>
&gt; Protection, we hereby inform you that your email address, as well
as your<br>
&gt; personal and business information, will be included in our Management
files<br>
&gt; and used solely for purposes corresponding to our commercial relationship.<br>
&gt; All personal data in our possession is protected by our Data Safety
Policy<br>
&gt; and thus shall not be released to any other third party whatsoever.
You may<br>
&gt; exercise your right to access, rectify, cancel and contest by writing
to the<br>
&gt; address provided above.<br>
&gt; _______________________________________________<br>
&gt; SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing
list<br>
&gt; sr-users@lists.sip-router.org<br>
&gt; </font></tt><a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users"><tt><font size=2>http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</font></tt></a><tt><font size=2><br>
&gt;<br>
<br>
<br>
<br>
-- <br>
Carsten Bock<br>
CEO (Geschäftsführer)<br>
<br>
ng-voice GmbH<br>
Schomburgstr. 80<br>
D-22767 Hamburg / Germany<br>
<br>
</font></tt><a href="http://www.ng-voice.com/"><tt><font size=2>http://www.ng-voice.com</font></tt></a><tt><font size=2><br>
</font></tt><a href="mailto:carsten@ng-voice.com"><tt><font size=2>mailto:carsten@ng-voice.com</font></tt></a><tt><font size=2><br>
<br>
Mobile +49 179 2021244<br>
Office +49 40 34927219<br>
Fax +49 40 34927220<br>
<br>
Sitz der Gesellschaft: Hamburg<br>
Registergericht: Amtsgericht Hamburg, HRB 120189<br>
Geschäftsführer: Carsten Bock<br>
Ust-ID: DE279344284<br>
<br>
Hier finden Sie unsere handelsrechtlichen Pflichtangaben:<br>
</font></tt><a href="http://www.ng-voice.com/imprint/"><tt><font size=2>http://www.ng-voice.com/imprint/</font></tt></a><tt><font size=2><br>
<br>
-- <br>
Meet ng-voice at LinuxTag 2012 in Berlin - May 23rd - 26th, 2012. Save
the <br>
date!<br>
<br>
_______________________________________________<br>
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list<br>
sr-users@lists.sip-router.org<br>
</font></tt><a href="http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users"><tt><font size=2>http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users</font></tt></a><tt><font size=2><br>
</font></tt>
<br><font size=1 color=#008000 face="sans-serif"><br>
ADVERTENCIA </font><font size=2 face="sans-serif"><br>
</font><font size=1 color=#008000 face="sans-serif"><br>
Este mensaje y/o sus anexos, pueden contener información personal y confidencial
cuyo uso, reproducción o distribución no autorizados están legalmente prohibidos.
Por lo tanto, si Vd. no fuera su destinatario y, erróneamente, lo hubiera
recibido, le rogamos que informe al remitente y lo borre de inmediato.<br>
<br>
En cumplimiento de la Ley Orgánica 15/1999, de Protección de Datos de Carácter
Personal le informamos de que su dirección de correo electrónico, así como
sus datos personales y de empresa pasarán a formar parte de nuestro fichero
de Gestión, y serán tratados con la única finalidad de mantenimiento de
la relación adquirida con usted. Los datos personales que existen en nuestro
poder están protegidos por nuestra Política de Seguridad, y no serán compartidos
con ninguna otra empresa. Usted puede ejercitar los derechos de acceso,
rectificación, cancelación y oposición dirigiéndose por escrito a la dirección
arriba indicada.<br>
<br>
This e-mail and its attachments may include confidential personal information
which may be protected by any legal rules and cannot be used, copied, distributed
or disclosed to any person without authorisation. If you are not the intended
recipient and have received this e-mail by mistake, please advise the sender
and erase it.<br>
<br>
In compliance with the Spanish Organic Act 15/1999 on Personal Data Protection,
we hereby inform you that your email address, as well as your personal
and business information, will be included in our Management files and
used solely for purposes corresponding to our commercial relationship.
All personal data in our possession is protected by our Data Safety Policy
and thus shall not be released to any other third party whatsoever. You
may exercise your right to access, rectify, cancel and contest by writing
to the address provided above. </font>