<div dir="ltr">So, to only block failures does this regex look right? I basically just removed &quot;failure|challenge&quot; and replaced with &quot;failure&quot;<div><br></div><div><div>failregex = ^\.\d+ \[WARNING\] sofia_reg\.c:\d+ SIP auth (failure) \((REGISTER|INVITE)\) on sofia profile \&#39;[^&#39;]+\&#39; for \[.*\] from ip &lt;HOST&gt;$</div></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Sep 11, 2016 at 2:23 AM, Angel Elena <span dir="ltr">&lt;<a href="mailto:craem@craem.net" target="_blank">craem@craem.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Great!!!<br>
<br>
Thanks for sharing.<br>
<span class=""><br>
------------------------------<wbr>--<br>
Ángel Elena Medina       _o)<br>
<a href="mailto:craem@craem.net">craem@craem.net</a>          / \\<br>
<a href="http://blog.craem.net" rel="noreferrer" target="_blank">http://blog.craem.net</a>  _(___V<br>
@craem_<br>
------------------------------<wbr>--<br>
<br>
-----Mensaje original-----<br>
</span>De:     Don Hawkins &lt;<a href="mailto:hawkins@hawkinsegroup.com">hawkins@hawkinsegroup.com</a>&gt;<br>
Enviado:        Dom 11-09-2016 03:22<br>
<span class="">Asunto: Re: [Freeswitch-users] Getting fail2ban working properly<br>
Para:   FreeSWITCH Users Help &lt;<a href="mailto:freeswitch-users@lists.freeswitch.org">freeswitch-users@lists.<wbr>freeswitch.org</a>&gt;;<br>
</span><div><div class="h5">&gt; No problem, I need to take notes anyway. Here they are...<br>
&gt;<br>
&gt;<br>
&gt; A.  /etc/fail2ban/filter.d/<wbr>freeswitch.conf needs the following text:<br>
&gt;<br>
&gt; <a href="https://github.com/fail2ban/fail2ban/blob/master/config/filter.d/freeswitch.conf" rel="noreferrer" target="_blank">https://github.com/fail2ban/<wbr>fail2ban/blob/master/config/<wbr>filter.d/freeswitch.conf</a><br>
&gt;<br>
&gt; NOTE: Internal and Public sofia profiles need:  &lt;param name=&quot;log-auth-failures&quot;<br>
&gt; value=&quot;true&quot;/&gt;<br>
&gt;<br>
&gt;<br>
&gt; B.  /etc/fail2ban/jail.conf and in /etc/fail2ban/jail.local (not sure which one<br>
&gt; is working, I had to create jail.local)<br>
&gt;<br>
&gt; [freeswitch]<br>
&gt; enabled  = true<br>
&gt; port     = 5060,5061,5080,5081,5076 5074 5071<br>
&gt; filter   = freeswitch<br>
&gt; logpath  = /var/log/freeswitch/<wbr>freeswitch.log<br>
&gt; maxretry = 3<br>
&gt;<br>
&gt;<br>
&gt; C. Drop these rules into iptables to block the scanners on ports 5060 and 5080<br>
&gt;<br>
&gt; iptables -I INPUT -j DROP -p udp --dport 5060 -m string --string<br>
&gt; &quot;VaxSIPUserAgent&quot; --algo bm<br>
&gt; iptables -I INPUT -j DROP -p udp --dport 5060 -m string --string<br>
&gt; &quot;friendly-scanner&quot; --algo bm<br>
&gt; iptables -I INPUT -j DROP -p udp --dport 5060 -m string --string &quot;sipcli&quot;<br>
&gt; --algo bm<br>
&gt; iptables -I INPUT -j DROP -p udp --dport 5080 -m string --string<br>
&gt; &quot;VaxSIPUserAgent&quot; --algo bm<br>
&gt; iptables -I INPUT -j DROP -p udp --dport 5080 -m string --string<br>
&gt; &quot;friendly-scanner&quot; --algo bm<br>
&gt; iptables -I INPUT -j DROP -p udp --dport 5080 -m string --string &quot;sipcli&quot;<br>
&gt; --algo bm<br>
&gt;<br>
&gt;<br>
&gt; D. Change SSH port from 22 to a custom number<br>
&gt;<br>
&gt; vi /etc/ssh/sshd_config<br>
&gt;<br>
&gt;<br>
&gt; E. Update SSH jail in /etc/fail2ban/jail.conf to custom port number.<br>
&gt;<br>
&gt; [ssh]<br>
&gt;<br>
&gt; enabled  = true<br>
&gt; port     = 9898,22<br>
&gt; filter   = sshd<br>
&gt; logpath  = /var/log/auth.log<br>
&gt; maxretry = 6<br>
&gt;<br>
&gt;<br>
&gt; F. I also have additional security using CDR records (curl).  If a call comes<br>
&gt; in that does not have an &#39;account number&#39; set (a custom variable we set for all<br>
&gt; incoming and outgoing calls from our customers) then we execute a shell command<br>
&gt; to block that IP without delay because they obviously aren&#39;t one of our<br>
&gt; customers. We are using mod_httapi and all calls start that way for us, so it&#39;s<br>
&gt; easy to set the variable as all calls start with &lt;continue&gt;.<br>
&gt;<br>
&gt;<br>
&gt; iptables -A INPUT -s 65.55.44.100 -j DROP<br>
&gt;<br>
&gt;<br>
&gt; Where 65.55.44.100 is the ip to block.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Don<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Sat, Sep 10, 2016 at 7:58 PM, George Assaad &lt;<a href="mailto:gassaad@emassembly.com">gassaad@emassembly.com</a><br>
</div></div><span class="">&gt; &lt;mailto:<a href="mailto:gassaad@emassembly.com">gassaad@emassembly.com</a><wbr>&gt; &gt; wrote:<br>
&gt; Hi Don,<br>
&gt; Could you please share your final settings since it works.<br>
&gt;<br>
&gt; Thanks,<br>
&gt;<br>
&gt; George<br>
&gt;<br>
&gt; On Sep 10, 2016, at 5:49 PM, Don Hawkins &lt;<a href="mailto:hawkins@hawkinsegroup.com">hawkins@hawkinsegroup.com</a><br>
</span><span class="">&gt; &lt;mailto:<a href="mailto:hawkins@hawkinsegroup.com">hawkins@hawkinsegroup.<wbr>com</a>&gt; &gt; wrote:<br>
&gt;<br>
&gt; Just want to update everyone that the registration attempts have almost stopped<br>
&gt; 100% since blocking the sniffers and setting a 4 hour block time after three<br>
&gt; failed registrations.<br>
&gt;<br>
&gt; Good day!<br>
&gt;<br>
&gt; On Thu, Sep 8, 2016 at 4:21 PM, jungle Boogie &lt;<a href="mailto:jungleboogie0@gmail.com">jungleboogie0@gmail.com</a><br>
</span><span class="">&gt; &lt;mailto:<a href="mailto:jungleboogie0@gmail.com">jungleboogie0@gmail.<wbr>com</a>&gt; &gt; wrote:<br>
&gt; On 8 September 2016 at 12:54, Don Hawkins &lt;<a href="mailto:hawkins@hawkinsegroup.com">hawkins@hawkinsegroup.com</a><br>
</span><span class="">&gt; &lt;mailto:<a href="mailto:hawkins@hawkinsegroup.com">hawkins@hawkinsegroup.<wbr>com</a>&gt; &gt; wrote:<br>
&gt; &gt; Can someone share with me how to block all ports except the important ones?<br>
&gt;<br>
&gt; I had the same question about a month ago:<br>
&gt; <a href="http://lists.freeswitch.org/pipermail/freeswitch-users/2016-August/121694.html" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>pipermail/freeswitch-users/<wbr>2016-August/121694.html</a><br>
&gt; &lt;<a href="http://lists.freeswitch.org/pipermail/freeswitch-users/2016-August/121694.html" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>pipermail/freeswitch-users/<wbr>2016-August/121694.html</a>&gt;<br>
&gt;<br>
&gt;<br>
&gt; Colin gives good advice here:<br>
&gt; <a href="http://lists.freeswitch.org/pipermail/freeswitch-users/2016-August/121730.html" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>pipermail/freeswitch-users/<wbr>2016-August/121730.html</a><br>
&gt; &lt;<a href="http://lists.freeswitch.org/pipermail/freeswitch-users/2016-August/121730.html" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>pipermail/freeswitch-users/<wbr>2016-August/121730.html</a>&gt;<br>
&gt;<br>
&gt;<br>
&gt; I&#39;ve also had success with contacting the originating network and<br>
&gt; request their customer to stop the traffic to me.<br>
&gt;<br>
</span>&gt; Here&#39;s the abuse form for <a href="http://online.net" rel="noreferrer" target="_blank">online.net</a> &lt;<a href="http://online.net/" rel="noreferrer" target="_blank">http://online.net/</a>&gt; :<br>
<span class="">&gt; <a href="https://console.online.net/en/account/abuses/search" rel="noreferrer" target="_blank">https://console.online.net/en/<wbr>account/abuses/search</a><br>
&gt;<br>
&gt; By the way, if the fail2ban page on confluence needs updating, please<br>
&gt; update it or list what&#39;s wrong with it. I do see it indicates to<br>
&gt; create the jail.local and that&#39;s what you were missing for yours to<br>
&gt; work properly.<br>
&gt;<br>
&gt;<br>
</span>&gt; --<br>
&gt; -------<br>
&gt; inum: 883510009027723<br>
&gt; sip: <a href="mailto:jungleboogie@sip2sip.info">jungleboogie@sip2sip.info</a> &lt;mailto:<a href="mailto:jungleboogie@sip2sip.info">jungleboogie@sip2sip.<wbr>info</a>&gt;<br>
<span class="">&gt;<br>
&gt; ______________________________<wbr>______________________________<wbr>_____________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
</span>&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a> &lt;mailto:<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.<wbr>org</a>&gt;<br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a> &lt;<a href="http://www.freeswitchsolutions.com/" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com/</a>&gt;<br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a> &lt;<a href="http://www.freeswitch.org/" rel="noreferrer" target="_blank">http://www.freeswitch.org/</a>&gt;<br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a> &lt;<a href="http://confluence.freeswitch.org/" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org/</a>&gt;<br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a> &lt;<a href="http://www.cluecon.com/" rel="noreferrer" target="_blank">http://www.cluecon.com/</a>&gt;<br>
<span class="">&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.<wbr>freeswitch.org</a><br>
&gt; &lt;mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@<wbr>lists.freeswitch.org</a>&gt;<br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a><br>
</span><span class="">&gt; &lt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a>&gt;<br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a><br>
</span>&gt; &lt;<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/options/freeswitch-<wbr>users</a>&gt;<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a> &lt;<a href="http://www.freeswitch.org/" rel="noreferrer" target="_blank">http://www.freeswitch.org/</a>&gt;<br>
<span class="">&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Sincerely,<br>
&gt; Don Hawkins<br>
&gt; CEO<br>
&gt; Hawkins Enterprise Group LLC<br>
</span>&gt; <a href="http://hawkinsegroup.com" rel="noreferrer" target="_blank">http://hawkinsegroup.com</a> &lt;<a href="http://hawkinsegroup.com/" rel="noreferrer" target="_blank">http://hawkinsegroup.com/</a>&gt;<br>
&gt; Zello PTT &lt;<a href="http://zello.com/" rel="noreferrer" target="_blank">http://zello.com/</a>&gt; : push2don<br>
&gt; P: <a href="tel:469-214-5044" value="+14692145044">469-214-5044</a><br>
<span class="">&gt; ______________________________<wbr>______________________________<wbr>_____________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
</span>&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a> &lt;mailto:<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.<wbr>org</a>&gt;<br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a> &lt;<a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a>&gt;<br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
<span class="">&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a> &lt;<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a>&gt;<br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a> &lt;<a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a>&gt;<br>
</span>&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a> &lt;<a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a>&gt;<br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.<wbr>freeswitch.org</a><br>
&gt; &lt;mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@<wbr>lists.freeswitch.org</a>&gt;<br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a><br>
<span class="">&gt; &lt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a>&gt;<br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a><br>
</span><span class="">&gt; &lt;<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/options/freeswitch-<wbr>users</a>&gt;<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a> &lt;<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a>&gt;<br>
&gt;<br>
&gt;<br>
</span><span class="">&gt; ______________________________<wbr>______________________________<wbr>_____________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
</span>&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a> &lt;mailto:<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.<wbr>org</a>&gt;<br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a> &lt;<a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a>&gt;<br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
<span class="">&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a> &lt;<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a>&gt;<br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a> &lt;<a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a>&gt;<br>
</span>&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a> &lt;<a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a>&gt;<br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.<wbr>freeswitch.org</a><br>
&gt; &lt;mailto:<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@<wbr>lists.freeswitch.org</a>&gt;<br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a><br>
<span class="">&gt; &lt;<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a>&gt;<br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a><br>
</span>&gt; &lt;<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/options/freeswitch-<wbr>users</a>&gt;<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a> &lt;<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a>&gt;<br>
<span class="">&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Sincerely,<br>
&gt; Don Hawkins<br>
&gt; CEO<br>
&gt; Hawkins Enterprise Group LLC<br>
</span>&gt; <a href="http://hawkinsegroup.com" rel="noreferrer" target="_blank">http://hawkinsegroup.com</a> &lt;<a href="http://hawkinsegroup.com" rel="noreferrer" target="_blank">http://hawkinsegroup.com</a>&gt;<br>
&gt; Zello PTT &lt;<a href="http://zello.com" rel="noreferrer" target="_blank">http://zello.com</a>&gt; : push2don<br>
&gt; P: <a href="tel:469-214-5044" value="+14692145044">469-214-5044</a><br>
<div class="HOEnZb"><div class="h5">&gt;<br>
&gt; ______________________________<wbr>______________________________<wbr>_____________<br>
&gt;<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;<br>
&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;<br>
&gt; <a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt;<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt; <a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a><br>
&gt;<br>
&gt; <a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt;<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.<wbr>freeswitch.org</a><br>
&gt;<br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a><br>
&gt;<br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a><br>
&gt;<br>
&gt; <a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
<br>
______________________________<wbr>______________________________<wbr>_____________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.<wbr>freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" rel="noreferrer" target="_blank">http://confluence.freeswitch.<wbr>org</a><br>
<a href="http://www.cluecon.com" rel="noreferrer" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.<wbr>freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a></div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><span style="color:rgb(102,102,102)"><span>Sincerely,<br>Don Hawkins<br>CEO<br>Hawkins Enterprise Group LLC<br><a href="http://hawkinsegroup.com" target="_blank">http://hawkinsegroup.com</a><br><a href="http://zello.com" target="_blank">Zello PTT</a>: push2don<br></span></span></div><div><span style="color:rgb(102,102,102)"><span>P: 469-214-5044<br></span></span></div><div dir="ltr"><span style="color:rgb(102,102,102)"><span><a value="+12146991224"></a></span></span></div></div></div></div></div></div>
</div>