<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<p>I've opened ASTERISK-27383 so this isn't forgotten. About the
best practices document I'm not sure if anything current exists (I
got the impression from Astridevcon discussions that there isn't).<br>
</p>
<br>
<div class="moz-cite-prefix">On 10/30/2017 02:19 PM, Nir Simionovich
wrote:<br>
</div>
<blockquote type="cite"
cite="mid:CAE+pvDrsYH2skgXbvx5O8fkUSffU20y=Mx_COqHxGp46_m8Z8A@mail.gmail.com">
<div dir="ltr">Definite +1 on the Documentation side - for sure.
Here is a stupid question, is there a "Best Practices" coding
document somewhere?
<div>I remember that many years ago there was something really
basic, but much has changed since then. </div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Mon, Oct 30, 2017 at 6:53 PM Corey Farrell
<<a href="mailto:git@cfware.com" moz-do-not-send="true">git@cfware.com</a>>
wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0 0 0
.8ex;border-left:1px #ccc solid;padding-left:1ex">
<div text="#000000" bgcolor="#FFFFFF">
<p>I think astdb itself is an inappropriate place to deal
with this. astdb is initialized well before module
preloads so it would be nearly impossible for modules to
provide the astdb implementation. In my opinion astdb is
a database "implementation", not a connector (and that
shouldn't change). For higher level connectors with
configurable backends we have realtime and sorcery. If
someone were to write a redis or memcached connector for
Asterisk I would expect it to be a realtime or sorcery
driver. If func_sorcery can be expanded to perform
writes/deletes maybe it could be used in place of
func_db? I suspect that dialplan use of astdb is a bigger
problem than the ways that Asterisk uses astdb directly on
it's own.<br>
</p>
<p>Documentation: Maybe we need to add a warning to xmldoc
for the astdb app/func/AMI/AGI that all astdb operations
are serialized (dblock global mutex) and thus performance
could suffer if used too much from too many threads? Do
we have any guides/sample files showing how to replace
astdb operations with alternatives (func_odbc for
example)?<br>
</p>
</div>
<div text="#000000" bgcolor="#FFFFFF"> <br>
<div class="m_-3728730221290134355moz-cite-prefix">On
10/29/2017 10:17 AM, Nir Simionovich wrote:<br>
</div>
<blockquote type="cite">
<div dir="ltr">Seems like I have under estimated the task
at hand, as this part of Asterisk requires some <br>
more intricate familiarity with how AstDB truly works.
It would be one thing to "change the backend"<br>
it would a far more complex task to "make two backends
selectable".
<div><br>
</div>
<div>Conclusion - not sure this is worth the effort at
this point in time, maybe in a later stage. :-(</div>
<div><br>
</div>
<div><br>
</div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Thu, Oct 26, 2017 at 6:01 PM Nir
Simionovich <<a
href="mailto:nir.simionovich@gmail.com"
target="_blank" moz-do-not-send="true">nir.simionovich@gmail.com</a>>
wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0 0 0
.8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Correction, seems like this requires a
bit more architecture than I anticipated.
<div><br>
</div>
<div>Basically, we need to separate this into
several files and turn the entire AstDB concept<br>
into a pluggable module type module. </div>
<div><br>
</div>
<div>But, as AstDB is a mandatory module for
Asterisk, can we create a situation where <br>
a pluggable module is a mandatory requirement for
Asterisk to launch correctly?</div>
<div><br>
</div>
<div>Is there anything like that in Asterisk? can
someone point me in some proper example<br>
or preferably, something that I can look at and
learn from?</div>
<div><br>
</div>
<div><br>
</div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Thu, Oct 26, 2017 at 4:47 PM Nir
Simionovich <<a
href="mailto:nir.simionovich@gmail.com"
target="_blank" moz-do-not-send="true">nir.simionovich@gmail.com</a>>
wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0 0 0
.8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">I'll have a look at it.
<div><br>
</div>
<div>If I read the code correctly, the AstDB is
invoked from the <font face="monospace"
size="2">asterisk.c</font> file, when
asterisk is launched.</div>
<div>I think the best would be to add a
configuration file like <font
face="monospace" size="2">astdb.conf</font>,
which will look something like this:</div>
<div><br>
</div>
<div><font face="monospace" size="2">[general]</font></div>
<div><font face="monospace" size="2">engine=builtin
; values can be either builtin, redis or
memcache (or others in the future)</font></div>
<div><font face="monospace" size="2"><br>
</font></div>
<div><font face="monospace" size="2">;[redis]</font></div>
<div><font face="monospace" size="2">;server =
127.0.0.1<br>
</font></div>
<div><font face="monospace" size="2">;port =
6379</font></div>
<div>
<div><font face="monospace" size="2">;database
= 15 ; By default AstDB will use Redis
database number 15</font></div>
<font face="monospace" size="2"><br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-Apple-interchange-newline">
</font></div>
<div>
<div><font face="monospace" size="2">;[memcache]</font></div>
<div><font face="monospace" size="2">;server =
127.0.0.1<br>
</font></div>
<div><font face="monospace" size="2">;port =
11211</font></div>
<div>
<div><font face="monospace" size="2">;prefix
= asterisk</font></div>
</div>
</div>
<div><br>
</div>
<div>Then, inside the db.c file add the proper
statements and backend to support each of
these. I'm confident <br>
that from a design perspective, this is not
optimal, but it would serve as a nice PoC to
indicate if the task <br>
is feasible or not.</div>
<div><br>
</div>
<div>For example, the following:</div>
<div>
<div><br>
</div>
</div>
<div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(put_stmt,
"INSERT OR REPLACE INTO astdb (key, value)
VALUES (?, ?)")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(get_stmt,
"SELECT value FROM astdb WHERE key=?")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(del_stmt,
"DELETE FROM astdb WHERE key=?")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(deltree_stmt,
"DELETE FROM astdb WHERE key || '/' LIKE ?
|| '/' || '%'")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(deltree_all_stmt,
"DELETE FROM astdb")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(gettree_stmt,
"SELECT key, value FROM astdb WHERE key ||
'/' LIKE ? || '/' || '%' ORDER BY key")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(gettree_all_stmt,
"SELECT key, value FROM astdb ORDER BY
key")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(showkey_stmt,
"SELECT key, value FROM astdb WHERE key
LIKE '%' || '/' || ? ORDER BY key")</font></div>
<div><font face="monospace" size="2">DEFINE_SQL_STATEMENT(create_astdb_stmt,
"CREATE TABLE IF NOT EXISTS astdb(key
VARCHAR(256), value VARCHAR(256), PRIMARY
KEY(key))")</font></div>
</div>
<div><br>
</div>
<div>Can be augmented with something like the
following:</div>
<div><br>
</div>
<div>
<div><font face="monospace" size="2">DEFINE_REDIS_STATEMENT(put_redis_stmt,
"");</font></div>
<div><font face="monospace" size="2">DEFINE_REDIS_STATEMENT(get_redis_stmt,
"");</font></div>
<div><font face="monospace" size="2">DEFINE_REDIS_STATEMENT(del_redis_stmt,
"");</font></div>
<div><br>
</div>
</div>
<div><font size="2">Following this, we can
simply point to the proper statements
following the engine selection.</font></div>
<div><font size="2"><br>
</font></div>
<div><font size="2">What do you think, sounds
reasonable?</font></div>
<div><font size="2"><br>
</font></div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Thu, Oct 26, 2017 at 4:30 PM
Olle E. Johansson <<a
href="mailto:oej@edvina.net" target="_blank"
moz-do-not-send="true">oej@edvina.net</a>>
wrote:<br>
</div>
<blockquote class="gmail_quote" style="margin:0
0 0 .8ex;border-left:1px #ccc
solid;padding-left:1ex">
<div style="word-wrap:break-word">
<div>
<blockquote type="cite">
<div>On 26 Oct 2017, at 15:25, Nir
Simionovich <<a
href="mailto:nir.simionovich@gmail.com"
target="_blank"
moz-do-not-send="true">nir.simionovich@gmail.com</a>>
wrote:</div>
<br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667Apple-interchange-newline">
<div>
<div dir="ltr">I suspect the original
code didn't change the overall
mechanism dramatically, it's mainly
a new implementation.
<div>This thing is this - replacing
the implementation seems straight
forward enough, making it
configurable, seems<br>
like a pain in the butt.</div>
</div>
</div>
</blockquote>
</div>
</div>
<div style="word-wrap:break-word">
<div>Look for the “appleraisin” branch if
you want to see code :-)</div>
</div>
<div style="word-wrap:break-word">
<div><br>
</div>
<div>/O<br>
<blockquote type="cite">
<div>
<div dir="ltr">
<div><br>
</div>
<div><br>
</div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Thu, Oct 26, 2017
at 4:23 PM Olle E. Johansson <<a
href="mailto:oej@edvina.net"
target="_blank"
moz-do-not-send="true">oej@edvina.net</a>>
wrote:<br>
</div>
<blockquote class="gmail_quote"
style="margin:0 0 0
.8ex;border-left:1px #ccc
solid;padding-left:1ex">
<div style="word-wrap:break-word">
<div>
<blockquote type="cite">
<div>On 26 Oct 2017, at
15:20, Nir Simionovich
<<a
href="mailto:nir.simionovich@gmail.com"
target="_blank"
moz-do-not-send="true">nir.simionovich@gmail.com</a>>
wrote:</div>
<br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109Apple-interchange-newline">
<div>
<div dir="ltr">Just looked
into the code, this is
not a simple task to put
a new backend for astdb.
The code isn't even
designed<br>
for something like that.
Judging from what I can
tell, and tell me if I'm
wrong - turning this
into a configurable
thing<br>
would be more or less an
open-heart surgery.</div>
</div>
</blockquote>
</div>
</div>
<div style="word-wrap:break-word">
<div>My patch wasn’t that bad,
but it was before sqlite.</div>
<div><br>
</div>
</div>
<div style="word-wrap:break-word">
<div>/O</div>
</div>
<div style="word-wrap:break-word">
<div><br>
<blockquote type="cite">
<div>
<div dir="ltr">
<div><br>
</div>
<div><br>
</div>
</div>
<br>
<div class="gmail_quote">
<div dir="ltr">On Thu,
Oct 26, 2017 at 4:16
PM Olle E. Johansson
<<a
href="mailto:oej@edvina.net"
target="_blank"
moz-do-not-send="true">oej@edvina.net</a>>
wrote:<br>
</div>
<blockquote
class="gmail_quote"
style="margin:0 0 0
.8ex;border-left:1px
#ccc
solid;padding-left:1ex">
<div
style="word-wrap:break-word">Somewhere
in Asterisk space,
there’s an old patch
where I added ASTDB
over realtime,
meaning you can use
<div>any realtime
storage. If I
remember correctly
there was a bit of
chicken-and-egg
problem with some
astdb</div>
<div>calls happening
before realtime
got launched, but
otherwise it
worked just fine
in production for
a long time.</div>
</div>
<div
style="word-wrap:break-word">
<div><br>
</div>
<div>/O</div>
</div>
<div
style="word-wrap:break-word">
<div><br>
<div>
<blockquote
type="cite">
<div>On 26 Oct
2017, at
15:13, Nir
Simionovich
<<a
href="mailto:nir.simionovich@gmail.com"
target="_blank" moz-do-not-send="true">nir.simionovich@gmail.com</a>>
wrote:</div>
<br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850Apple-interchange-newline">
<div>
<div dir="ltr">I'd
like to +1 on
that idea.
<div><br>
</div>
<div>While I'm
somewhat
reluctant to
using mySQL as
the base of
such a change,
as mySQL is an
overkill for
AstDB,<br>
having a
proper AstDB
configurable
backend is an
interesting
thing.
Personally
speaking, I
would actually
prefer<br>
something like
Memcache or
preferably
Redis. Both
are similar in
function and
usability to
AstDB, both
are fairly<br>
scalable
(Redis
specifically)
and both are
fairly
simplistic in
nature. </div>
<div><br>
</div>
<div>I do
admit that
this got me
intrigued... </div>
<div><br>
</div>
<div><br>
</div>
</div>
<br>
<div
class="gmail_quote">
<div dir="ltr">On
Tue, Sep 26,
2017 at 12:45
AM Matt
Fredrickson
<<a
href="mailto:creslin@digium.com"
target="_blank" moz-do-not-send="true">creslin@digium.com</a>> wrote:<br>
</div>
<blockquote
class="gmail_quote"
style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">
<div
class="gmail_extra">
<div
class="gmail_quote">On
Fri, Sep 22,
2017 at 12:12
PM, Ryan
Wagoner <span
dir="ltr"><<a
href="mailto:rswagoner@gmail.com" target="_blank" moz-do-not-send="true">rswagoner@gmail.com</a>></span>
wrote:<br>
<blockquote
class="gmail_quote"
style="margin:0px 0px 0px 0.8ex;border-left:1px solid
rgb(204,204,204);padding-left:1ex">
<div dir="ltr">I've
been scaling
out FreePBX
horizontally
with Kamailio
and custom
FreePBX
modules mainly
to handle call
center
outbound
dialing
(around 20k
calls per
day). One of
the issues I
ran into was
FreePBX uses
the AstDB
extensively
and will write
changes to it
from the
dialplan or
the FreePBX
user control
panel.
<div><br>
</div>
<div>To
overcome this
I either
needed to
scrap FreePBX
and build a
new GUI using
Asterisk
realtime,
heavily modify
FreePBX (not
an option), or
rewrite AstDB
to use a
database like
mySQL. I
choose the
last option
and have had
the code in
production for
just over a
month. I'm
backing it
with a two
node MariaDB
Galera cluster
with HAProxy
providing
failover for
the client DB
connections.</div>
<div><br>
</div>
<div>I realize
that SQLite
was chosen for
AstDB for
performance
reasons.
However mySQL
seems to
perform just
fine in the
above
scenario.
Right now I
have a db.c
file that just
has the mySQL
code. Does
anybody else
have any
interest in
using mySQL
for the AstDB
backend? I'm
debating if it
would make
sense to have
the option to
select your
AstDB backend.</div>
</div>
</blockquote>
<div><br>
</div>
</div>
</div>
</div>
<div dir="ltr">
<div
class="gmail_extra">
<div
class="gmail_quote">
<div>Hey Ryan,</div>
<div><br>
</div>
<div><span
style="font-size:12.8px">First
off, thanks
for letting us
know about the
fun project
you embarked
upon. I think
Josh already
answered some
of your
questions, but
with regards
to the work
you did - I
believe that
in the past
there have
been others
who have
wanted an ODBC
AstDB driver
as well. If
your code can
be made
configurable,
it may be a
good
contribution.</span></div>
<div><span
style="font-size:12.8px"><br>
</span></div>
<div><span
style="font-size:12.8px">Anyways,
hope you are
doing well,
and perhaps
we'll see your
code up on
gerrit at some
time in the
future. :-)</span></div>
</div>
</div>
</div>
<div dir="ltr">
<div
class="gmail_extra">
<div><br>
</div>
-- <br>
<div
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850m_-3968396189948988291gmail_signature">
<div dir="ltr">
<div>Matthew
Fredrickson<br>
Digium, Inc. |
Engineering
Manager<br>
<a
href="https://maps.google.com/?q=445+Jan+Davis+Drive+NW+-+Huntsville,+AL+35806+-+USA&entry=gmail&source=g"
target="_blank" moz-do-not-send="true">445 Jan Davis Drive NW -
Huntsville, AL
35806 - USA</a></div>
</div>
</div>
</div>
</div>
--<br>
_____________________________________________________________________<br>
-- Bandwidth
and Colocation
Provided by <a
href="http://www.api-digital.com/" rel="noreferrer" target="_blank"
moz-do-not-send="true">http://www.api-digital.com</a>
--<br>
<br>
asterisk-dev
mailing list<br>
To UNSUBSCRIBE
or update
options visit:<br>
<a
href="http://lists.digium.com/mailman/listinfo/asterisk-dev"
rel="noreferrer" target="_blank" moz-do-not-send="true">http://lists.digium.com/mailman/listinfo/asterisk-dev</a></blockquote>
</div>
<div dir="ltr">--
<br>
</div>
<div
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850gmail_signature"
data-smartmail="gmail_signature">
<div dir="ltr">
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier new"">Kind Regards,</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier new""> Nir Simionovich</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier new""> GreenfieldTech</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier new""> (schedule) </span></font><font
face="Courier
New" size="3"><a
href="http://nirsimionovich.appointy.com/" style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">http://nirsimionovich.appointy.com/</a></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3"> (w)<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="http://www.greenfieldtech.net/" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span style="color:blue"><font size="3">http://www.greenfieldtech.net</font></span></a><font
size="3"> </font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3"> (p) <a
href="tel:073-255-7799"
value="+972732557799" target="_blank" moz-do-not-send="true">+972-73-2557799</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(MSN):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nirs@greenfieldtech.net" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span style="color:blue"><font size="3">nirs@greenfieldtech.net</font></span></a></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3"> (m) <a
href="tel:054-698-2826"
value="+972546982826" target="_blank" moz-do-not-send="true">+972-54-6982826</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(GTALK):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nir.simionovich@gmail.com" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span style="color:blue"><font size="3">nir.simionovich@gmail.com</font></span></a><span
style="color:rgb(31,73,125)"></span></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3"> (f) <a
href="tel:073-255-7202"
value="+972732557202" target="_blank" moz-do-not-send="true">+972-73-2557202</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(SKYPE):
greenfieldtech.nir</font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><br>
</div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3">----------------------------------------------------------</font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3">
<a
href="https://mailstrom.co/referral/ARZJE"
style="color:rgb(17,85,204)" target="_blank" moz-do-not-send="true">Zero
Your Inbox</a> | <a
href="https://www.digitalocean.com/?refcode=97eeea09917a"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">Cloud Servers</a></font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span
style="font-family:"courier new""><font size="3">----------------------------------------------------------</font></span><span
style="font-family:calibri;font-size:14px;line-height:0px"> </span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;margin:7.5pt
0in
0pt;line-height:0px"><span
style="font-family:"courier new""></span><br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850webkit-block-placeholder">
</div>
<table
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal"
border="0"
cellspacing="3"
cellpadding="0">
<tbody>
<tr>
<td
style="margin:0px"><br>
</td>
</tr>
</tbody><tbody>
<tr>
<td
style="margin:0px;padding:0.75pt;border:rgb(0,0,0);background-image:initial;background-size:initial;background-origin:initial;background-clip:initial;background-position:initial;background-repeat:initial">
<div
style="margin:0in
0in 0pt"><b><span
style="font-family:"courier new"">Disclaimer:</span></b><br>
</div>
<div
style="margin:0in
0in 0pt"><span
style="font-family:"courier new"">This e-mail is intended
solely for the
person to whom
it is
addressed and
may contain
confidential
or legally
privileged
information.
Access to this
e-mail by
anyone else is
unauthorized.
If an
addressing or
transmission
error has
misdirected
this e-mail,
please notify
the author by
replying to
this e-mail
and destroy
this e-mail
and any
attachments.<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109m_3651031521499455850inbox-inbox-inbox-inbox-Apple-converted-space"> </span><br>
E-mail may be
susceptible to
data
corruption,
interception,
unauthorized
amendment,
viruses and
delays or the
consequences
thereof. If
you are not
the intended
recipient, be
advised that
you have
received this
email in error
and that any
use,
dissemination,
forwarding,
printing or
copying of
this email is
strictly
prohibited.</span></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
-- <br>
_____________________________________________________________________<br>
-- Bandwidth
and Colocation
Provided by <a
href="http://www.api-digital.com/" target="_blank"
moz-do-not-send="true">http://www.api-digital.com</a>
--<br>
<br>
asterisk-dev
mailing list<br>
To UNSUBSCRIBE
or update
options visit:<br>
<a
href="http://lists.digium.com/mailman/listinfo/asterisk-dev"
target="_blank" moz-do-not-send="true">http://lists.digium.com/mailman/listinfo/asterisk-dev</a></div>
</blockquote>
</div>
<br>
</div>
</div>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and
Colocation Provided by
<a
href="http://www.api-digital.com/"
rel="noreferrer"
target="_blank"
moz-do-not-send="true">http://www.api-digital.com</a>
--<br>
<br>
asterisk-dev mailing
list<br>
To UNSUBSCRIBE or
update options visit:<br>
<a
href="http://lists.digium.com/mailman/listinfo/asterisk-dev"
rel="noreferrer"
target="_blank"
moz-do-not-send="true">http://lists.digium.com/mailman/listinfo/asterisk-dev</a></blockquote>
</div>
<div dir="ltr">-- <br>
</div>
<div
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109gmail_signature"
data-smartmail="gmail_signature">
<div dir="ltr">
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier
new"">Kind
Regards,</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier
new""> Nir
Simionovich</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier
new"">
GreenfieldTech</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font
size="3"><span
style="font-family:"courier
new"">
(schedule) </span></font><font
face="Courier New"
size="3"><a
href="http://nirsimionovich.appointy.com/"
style="color:rgb(17,85,204)" target="_blank" moz-do-not-send="true">http://nirsimionovich.appointy.com/</a></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3"> (w)<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="http://www.greenfieldtech.net/" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span style="color:blue"><font size="3">http://www.greenfieldtech.net</font></span></a><font
size="3"> </font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3"> (p) <a
href="tel:073-255-7799" value="+972732557799" target="_blank"
moz-do-not-send="true">+972-73-2557799</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(MSN):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nirs@greenfieldtech.net" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span style="color:blue"><font size="3">nirs@greenfieldtech.net</font></span></a></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3"> (m) <a
href="tel:054-698-2826" value="+972546982826" target="_blank"
moz-do-not-send="true">+972-54-6982826</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(GTALK):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nir.simionovich@gmail.com" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span style="color:blue"><font size="3">nir.simionovich@gmail.com</font></span></a><span
style="color:rgb(31,73,125)"></span></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3"> (f) <a
href="tel:073-255-7202" value="+972732557202" target="_blank"
moz-do-not-send="true">+972-73-2557202</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(SKYPE):
greenfieldtech.nir</font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><br>
</div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3">----------------------------------------------------------</font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3">
<a
href="https://mailstrom.co/referral/ARZJE"
style="color:rgb(17,85,204)" target="_blank" moz-do-not-send="true">Zero
Your Inbox</a> | <a
href="https://www.digitalocean.com/?refcode=97eeea09917a"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">Cloud Servers</a></font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font
size="3">----------------------------------------------------------</font></span><span
style="font-family:calibri;font-size:14px;line-height:0px"> </span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;margin:7.5pt
0in
0pt;line-height:0px"><span
style="font-family:"courier new""></span><br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109webkit-block-placeholder">
</div>
<table
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal"
border="0"
cellspacing="3"
cellpadding="0">
<tbody>
<tr>
<td
style="margin:0px"><br>
</td>
</tr>
</tbody><tbody>
<tr>
<td
style="margin:0px;padding:0.75pt;border:rgb(0,0,0);background-image:initial;background-size:initial;background-origin:initial;background-clip:initial;background-position:initial;background-repeat:initial">
<div
style="margin:0in
0in 0pt"><b><span>Disclaimer:</span></b><br>
</div>
<div
style="margin:0in
0in 0pt"><span>This
e-mail is
intended
solely for the
person to whom
it is
addressed and
may contain
confidential
or legally
privileged
information.
Access to this
e-mail by
anyone else is
unauthorized.
If an
addressing or
transmission
error has
misdirected
this e-mail,
please notify
the author by
replying to
this e-mail
and destroy
this e-mail
and any
attachments.<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667m_5987648790350897109inbox-inbox-inbox-inbox-Apple-converted-space"> </span><br>
E-mail may be
susceptible to
data
corruption,
interception,
unauthorized
amendment,
viruses and
delays or the
consequences
thereof. If
you are not
the intended
recipient, be
advised that
you have
received this
email in error
and that any
use,
dissemination,
forwarding,
printing or
copying of
this email is
strictly
prohibited.</span></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
-- <br>
_____________________________________________________________________<br>
-- Bandwidth and
Colocation Provided by <a
href="http://www.api-digital.com/" target="_blank"
moz-do-not-send="true">http://www.api-digital.com</a>
--<br>
<br>
asterisk-dev mailing list<br>
To UNSUBSCRIBE or update
options visit:<br>
<a
href="http://lists.digium.com/mailman/listinfo/asterisk-dev"
target="_blank"
moz-do-not-send="true">http://lists.digium.com/mailman/listinfo/asterisk-dev</a></div>
</blockquote>
</div>
</div>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation
Provided by <a
href="http://www.api-digital.com/"
rel="noreferrer" target="_blank"
moz-do-not-send="true">http://www.api-digital.com</a>
--<br>
<br>
asterisk-dev mailing list<br>
To UNSUBSCRIBE or update options
visit:<br>
<a
href="http://lists.digium.com/mailman/listinfo/asterisk-dev"
rel="noreferrer" target="_blank"
moz-do-not-send="true">http://lists.digium.com/mailman/listinfo/asterisk-dev</a></blockquote>
</div>
<div dir="ltr">-- <br>
</div>
<div
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667gmail_signature"
data-smartmail="gmail_signature">
<div dir="ltr">
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span>Kind
Regards,</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span>
Nir Simionovich</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span>
GreenfieldTech</span><span
style="color:rgb(31,73,125)"></span></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span>
(schedule) </span></font><font
face="Courier New" size="3"><a
href="http://nirsimionovich.appointy.com/" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true">http://nirsimionovich.appointy.com/</a></font></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">
(w)<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="http://www.greenfieldtech.net/" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span
style="color:blue"><font
size="3">http://www.greenfieldtech.net</font></span></a><font
size="3"> </font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">
(p) <a
href="tel:073-255-7799"
value="+972732557799"
target="_blank"
moz-do-not-send="true">+972-73-2557799</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(MSN):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nirs@greenfieldtech.net" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span
style="color:blue"><font
size="3">nirs@greenfieldtech.net</font></span></a></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">
(m) <a
href="tel:054-698-2826"
value="+972546982826"
target="_blank"
moz-do-not-send="true">+972-54-6982826</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(GTALK):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nir.simionovich@gmail.com" style="color:rgb(17,85,204)"
target="_blank"
moz-do-not-send="true"><span
style="color:blue"><font
size="3">nir.simionovich@gmail.com</font></span></a><span
style="color:rgb(31,73,125)"></span></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">
(f) <a
href="tel:073-255-7202"
value="+972732557202"
target="_blank"
moz-do-not-send="true">+972-73-2557202</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(SKYPE):
greenfieldtech.nir</font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><br>
</div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">----------------------------------------------------------</font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">
<a
href="https://mailstrom.co/referral/ARZJE"
style="color:rgb(17,85,204)" target="_blank" moz-do-not-send="true">Zero
Your Inbox</a> | <a
href="https://www.digitalocean.com/?refcode=97eeea09917a"
style="color:rgb(17,85,204)" target="_blank" moz-do-not-send="true">Cloud
Servers</a></font></span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">----------------------------------------------------------</font></span><span
style="font-family:calibri;font-size:14px;line-height:0px"> </span></div>
<div
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;margin:7.5pt
0in 0pt;line-height:0px"><span></span><br
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667webkit-block-placeholder">
</div>
<table
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal"
border="0" cellspacing="3"
cellpadding="0">
<tbody>
<tr>
<td style="margin:0px"><br>
</td>
</tr>
</tbody><tbody>
<tr>
<td
style="margin:0px;padding:0.75pt;border:rgb(0,0,0);background-image:initial;background-size:initial;background-origin:initial;background-clip:initial;background-position:initial;background-repeat:initial">
<div style="margin:0in 0in
0pt"><b><span
style="font-family:"courier
new"">Disclaimer:</span></b><br>
</div>
<div style="margin:0in 0in
0pt"><span
style="font-family:"courier
new"">This e-mail
is intended solely for
the person to whom it
is addressed and may
contain confidential
or legally privileged
information. Access to
this e-mail by anyone
else is unauthorized.
If an addressing or
transmission error has
misdirected this
e-mail, please notify
the author by replying
to this e-mail and
destroy this e-mail
and any attachments.<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885m_3758218642178964667inbox-inbox-inbox-inbox-Apple-converted-space"> </span><br>
E-mail may be
susceptible to data
corruption,
interception,
unauthorized
amendment, viruses and
delays or the
consequences thereof.
If you are not the
intended recipient, be
advised that you have
received this email in
error and that any
use, dissemination,
forwarding, printing
or copying of this
email is strictly
prohibited.</span></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</blockquote>
</div>
<div dir="ltr">-- <br>
</div>
<div
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885gmail_signature"
data-smartmail="gmail_signature">
<div dir="ltr">
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier
new"">Kind Regards,</span><span
style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier
new""> Nir Simionovich</span><span
style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier
new""> GreenfieldTech</span><span
style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier
new""> (schedule) </span></font><font
face="Courier New" size="3"><a
href="http://nirsimionovich.appointy.com/"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">http://nirsimionovich.appointy.com/</a></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (w)<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="http://www.greenfieldtech.net/"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true"><span
style="color:blue"><font size="3">http://www.greenfieldtech.net</font></span></a><font
size="3"> </font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (p) <a
href="tel:073-255-7799"
value="+972732557799" target="_blank"
moz-do-not-send="true">+972-73-2557799</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(MSN):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nirs@greenfieldtech.net"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true"><span
style="color:blue"><font size="3">nirs@greenfieldtech.net</font></span></a></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (m) <a
href="tel:054-698-2826"
value="+972546982826" target="_blank"
moz-do-not-send="true">+972-54-6982826</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(GTALK):<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nir.simionovich@gmail.com"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true"><span
style="color:blue"><font size="3">nir.simionovich@gmail.com</font></span></a><span
style="color:rgb(31,73,125)"></span></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (f) <a
href="tel:073-255-7202"
value="+972732557202" target="_blank"
moz-do-not-send="true">+972-73-2557202</a> <span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(SKYPE):
greenfieldtech.nir</font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><br>
</p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">----------------------------------------------------------</font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">
<a
href="https://mailstrom.co/referral/ARZJE"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">Zero
Your Inbox</a> | <a
href="https://www.digitalocean.com/?refcode=97eeea09917a"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">Cloud
Servers</a></font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">----------------------------------------------------------</font></span><span
style="font-family:calibri;font-size:medium;line-height:0px"> </span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;margin:7.5pt
0in 0pt;line-height:0px"><span
style="font-family:"courier
new""></span></p>
<table
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal"
border="0" cellspacing="3" cellpadding="0">
<tbody>
<tr>
<td style="margin:0px"><br>
</td>
</tr>
</tbody><tbody>
<tr>
<td
style="margin:0px;padding:0.75pt;border:rgb(0,0,0);background-image:initial;background-size:initial;background-origin:initial;background-clip:initial;background-position:initial;background-repeat:initial">
<p style="margin:0in 0in 0pt"><b><span>Disclaimer:</span></b><br>
</p>
<p style="margin:0in 0in 0pt"><span>This
e-mail is intended solely for the
person to whom it is addressed and
may contain confidential or
legally privileged information.
Access to this e-mail by anyone
else is unauthorized. If an
addressing or transmission error
has misdirected this e-mail,
please notify the author by
replying to this e-mail and
destroy this e-mail and any
attachments.<span
class="m_-3728730221290134355m_-843520988789044234m_4861886266273241885inbox-inbox-inbox-inbox-Apple-converted-space"> </span><br>
E-mail may be susceptible to data
corruption, interception,
unauthorized amendment, viruses
and delays or the consequences
thereof. If you are not the
intended recipient, be advised
that you have received this email
in error and that any use,
dissemination, forwarding,
printing or copying of this email
is strictly prohibited.</span></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</blockquote>
</div>
<div dir="ltr">-- <br>
</div>
<div
class="m_-3728730221290134355m_-843520988789044234gmail_signature"
data-smartmail="gmail_signature">
<div dir="ltr">
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">Kind
Regards,</span><span
style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">
Nir Simionovich</span><span
style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">
GreenfieldTech</span><span
style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">
(schedule) </span></font><font face="Courier
New" size="3"><a
href="http://nirsimionovich.appointy.com/"
style="color:rgb(17,85,204)" target="_blank"
moz-do-not-send="true">http://nirsimionovich.appointy.com/</a></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (w)<span
class="m_-3728730221290134355m_-843520988789044234inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="http://www.greenfieldtech.net/"
style="color:rgb(17,85,204)" target="_blank"
moz-do-not-send="true"><span
style="color:blue"><font size="3">http://www.greenfieldtech.net</font></span></a><font
size="3"> </font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (p) <a
href="tel:073-255-7799"
value="+972732557799" target="_blank"
moz-do-not-send="true">+972-73-2557799</a> <span
class="m_-3728730221290134355m_-843520988789044234inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(MSN):<span
class="m_-3728730221290134355m_-843520988789044234inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nirs@greenfieldtech.net"
style="color:rgb(17,85,204)" target="_blank"
moz-do-not-send="true"><span
style="color:blue"><font size="3">nirs@greenfieldtech.net</font></span></a></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (m) <a
href="tel:054-698-2826"
value="+972546982826" target="_blank"
moz-do-not-send="true">+972-54-6982826</a> <span
class="m_-3728730221290134355m_-843520988789044234inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(GTALK):<span
class="m_-3728730221290134355m_-843520988789044234inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nir.simionovich@gmail.com"
style="color:rgb(17,85,204)" target="_blank"
moz-do-not-send="true"><span
style="color:blue"><font size="3">nir.simionovich@gmail.com</font></span></a><span
style="color:rgb(31,73,125)"></span></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> (f) <a
href="tel:073-255-7202"
value="+972732557202" target="_blank"
moz-do-not-send="true">+972-73-2557202</a> <span
class="m_-3728730221290134355m_-843520988789044234inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(SKYPE):
greenfieldtech.nir</font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><br>
</p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3">----------------------------------------------------------</font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span><font size="3"> <a
href="https://mailstrom.co/referral/ARZJE"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">Zero
Your Inbox</a> | <a
href="https://www.digitalocean.com/?refcode=97eeea09917a"
style="color:rgb(17,85,204)"
target="_blank" moz-do-not-send="true">Cloud
Servers</a></font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span></span></p>
</div>
</div>
</blockquote>
</div>
</blockquote>
</div>
</blockquote>
</div>
<div dir="ltr">-- <br>
</div>
<div class="gmail_signature" data-smartmail="gmail_signature">
<div dir="ltr">
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">Kind
Regards,</span><span style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new""> Nir
Simionovich</span><span style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">
GreenfieldTech</span><span style="color:rgb(31,73,125)"></span></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><font size="3"><span
style="font-family:"courier new"">
(schedule) </span></font><font face="Courier New"
size="3"><a href="http://nirsimionovich.appointy.com/"
target="_blank" style="color:rgb(17,85,204)"
moz-do-not-send="true">http://nirsimionovich.appointy.com/</a></font></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3"> (w)<span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="http://www.greenfieldtech.net/" target="_blank"
style="color:rgb(17,85,204)" moz-do-not-send="true"><span
style="color:blue"><font size="3">http://www.greenfieldtech.net</font></span></a><font
size="3"> </font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3"> (p) +972-73-2557799 <span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(MSN):<span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nirs@greenfieldtech.net" target="_blank"
style="color:rgb(17,85,204)" moz-do-not-send="true"><span
style="color:blue"><font size="3">nirs@greenfieldtech.net</font></span></a></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3"> (m) +972-54-6982826 <span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(GTALK):<span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span></font><a
href="mailto:nir.simionovich@gmail.com" target="_blank"
style="color:rgb(17,85,204)" moz-do-not-send="true"><span
style="color:blue"><font size="3">nir.simionovich@gmail.com</font></span></a><span
style="color:rgb(31,73,125)"></span></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3"> (f) +972-73-2557202 <span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span>(SKYPE):
greenfieldtech.nir</font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><br>
</p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3">----------------------------------------------------------</font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3"> <a
href="https://mailstrom.co/referral/ARZJE"
target="_blank" style="color:rgb(17,85,204)"
moz-do-not-send="true">Zero Your Inbox</a> | <a
href="https://www.digitalocean.com/?refcode=97eeea09917a"
target="_blank" style="color:rgb(17,85,204)"
moz-do-not-send="true">Cloud Servers</a></font></span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal;margin:0in
0in 0pt"><span style="font-family:"courier new""><font
size="3">----------------------------------------------------------</font></span><span
style="font-family:calibri;font-size:medium;line-height:0px"> </span></p>
<p
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;margin:7.5pt
0in 0pt;line-height:0px"><span
style="font-family:"courier new""></span></p>
<table
style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;line-height:normal"
border="0" cellspacing="3" cellpadding="0">
<tbody>
<tr>
<td style="margin:0px"><br>
</td>
</tr>
</tbody><tbody>
<tr>
<td
style="margin:0px;padding:0.75pt;border:rgb(0,0,0);background-image:initial;background-size:initial;background-origin:initial;background-clip:initial;background-position:initial;background-repeat:initial">
<p style="margin:0in 0in 0pt"><b><span
style="font-family:"courier new"">Disclaimer:</span></b><br>
</p>
<p style="margin:0in 0in 0pt"><span
style="font-family:"courier new"">This
e-mail is intended solely for the person to whom
it is addressed and may contain confidential or
legally privileged information. Access to this
e-mail by anyone else is unauthorized. If an
addressing or transmission error has misdirected
this e-mail, please notify the author by replying
to this e-mail and destroy this e-mail and any
attachments.<span
class="inbox-inbox-inbox-inbox-Apple-converted-space"> </span><br>
E-mail may be susceptible to data corruption,
interception, unauthorized amendment, viruses and
delays or the consequences thereof. If you are not
the intended recipient, be advised that you have
received this email in error and that any use,
dissemination, forwarding, printing or copying of
this email is strictly prohibited.</span></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<br>
</blockquote>
<br>
</body>
</html>