<div dir="ltr">Hi,<div><br></div><div>so I wrote a hangup hook script... I&#39;am not able to get sendmail running with freeswitch.</div><div><br></div><div>I wrote a perl script which is called as hangup_hook.</div><div>Thanks to $env, its serves all the informations I needed. </div><div>After some testings and playing with hangup_hook I&#39;ve added some more features. </div><div><br></div><div><br></div><div>Only one Problem left. How can I tell FS, thats MWI is not needed. </div><div><br></div><div>Regards</div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-07-28 9:19 GMT+02:00 Berthold Karl <span dir="ltr">&lt;<a href="mailto:sendmeallyouroffers@googlemail.com" target="_blank">sendmeallyouroffers@googlemail.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Thanks for the replies!<div><br></div><div>I&#39;ve tested sendmail, it works for the user which is running freeswitch.</div><div><br></div><div>I&#39;am running FS 1.4.8 under Debian.</div><div><br></div><div>I want to use the FS internal VM-to-E-Mail because all informations about To-, From- etc are configured in the user.xml. If I&#39;am running my own script, I have to setup everything in a second configuration or have to parse the user.xml a second time..</div><div><br></div><div>Thx Dennis for the Sample script,</div><div><br></div><div>Any ideas?</div><div>I&#39;ve tested sendmail with few arguments... everytime its ends with a segfault... It seems FS isn&#39;t creating the Mail under /tmp/. /tmp is World writable/readable. </div><div><br></div><div>Regards</div><div><br></div><div><br></div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">2015-07-27 19:01 GMT+02:00 Mario <span dir="ltr">&lt;<a href="mailto:mario_fs@mgtech.com" target="_blank">mario_fs@mgtech.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Although this is in the Mac OS X page I wrote this up which may help: <a href="https://freeswitch.org/confluence/display/FREESWITCH/Installation+and+Setup+on+OS+X#InstallationandSetuponOSX-EmailVoicemailtoaniPhone" target="_blank">https://freeswitch.org/confluence/display/FREESWITCH/Installation+and+Setup+on+OS+X#InstallationandSetuponOSX-EmailVoicemailtoaniPhone</a><div><br></div><div>To test your email you can do this from a command line:</div><div><span style="color:rgb(211,211,211);font-family:Consolas,&#39;Bitstream Vera Sans Mono&#39;,&#39;Courier New&#39;,Courier,monospace;font-size:14px;line-height:20px;white-space:pre-wrap;background-color:rgb(0,0,0)">printf &quot;Subject: TestnHello&quot; | sendmail -f <a href="mailto:you@domain.com" target="_blank">you@domain.com</a> <a href="mailto:you@domain.com" target="_blank">you@domain.com</a></span></div><div><font color="#d3d3d3" face="Consolas, Bitstream Vera Sans Mono, Courier New, Courier, monospace"><span style="font-size:14px;line-height:20px;white-space:pre-wrap;background-color:rgb(0,0,0)">Mareio G<br></span></font><div><blockquote type="cite"><div><div><div>On Jul 27, 2015, at 8:33 AM, Denis Jakovlev &lt;<a href="mailto:yadenis@seznam.cz" target="_blank">yadenis@seznam.cz</a>&gt; wrote:</div><br></div></div><div>

<div><div><div>
<span style="font-family:&#39;Courier New&#39;;font-size:9pt">Hi,<br>
<br>
Why do not use some simple script after the ends session?<br>
<br>
For example simple bash script send_voicemail.sh<br>
<br>
#!/bin/sh<br>
cd /usr/local/freeswitch/recordings/voicemail/<br>
f=`find -name \*.wav`<br>
for file in $f<br>
do<br>
echo &quot;Processing ${file}&quot;<br>
CURRENT=$(date +%d.%m.%y_%H:%M:%S)<br>
datetime=$CURRENT<br>
echo $datetime<br>
sendemail -f <a href="mailto:voicemail@mail.com" target="_blank">voicemail@mail.com</a> -t <a href="mailto:somemail@mail.com" target="_blank">somemail@mail.com</a> -m &quot;Voicemail&quot; -u &quot;Voicemail od $datetime&quot; -a ${file} -s <a href="http://smtp.mail.com" target="_blank">smtp.mail.com</a> -xu user -xp pass<br>
echo &quot;BackUP ${file}&quot;<br>
mv ${file} /usr/local/freeswitch/recordings/backup_voicemail/<br>
done<br>
<br>
<br>
And in dialplan start like this<br>
&lt;action application=&quot;export&quot; data=&quot;api_hangup_hook=system /usr/local/freeswitch/scripts/send_voicemail.sh&quot;/&gt;<br>
<br>
<br>
<br>
<span style="font-family:&#39;calibri&#39;;color:#c0c0c0"><i>-- <br>
S pozdravem,<br>
Ing.Denis Jakovlev                           <br>
<a href="http://mob.tel" target="_blank">mob.tel</a>. 775-415-382<br>
<br>
pondělí 27. července 2015, 17:11:10, napsal jste:<br>
<br>
</i></span></span></div></div><table>
<tbody><tr>
<td width="2" bgcolor="#0000ff"><br>
</td>
<td><div><div><span style="font-family:&#39;courier new&#39;;font-size:9pt">Why can.t you create your own script and use it to send vm over email?<br>
27 июля 2015 г. 18:32 пользователь &quot;Berthold Karl&quot; &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:sendmeallyouroffers@googlemail.com" target="_blank">sendmeallyouroffers@googlemail.com</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; написал:<br>
Hi,<br>
<br>
my FS is calling the sendmail-command, but sendmail ends with an segfault. It seems like there is no email under /tmp/. Did your sendmail also ends in a segfault?<br>
<br>
2015-02-24 16:51 GMT+01:00 Brian West &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:brian@freeswitch.org" target="_blank">brian@freeswitch.org</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt;:<br>
When you file the JIRA please attach your voicemail.conf.xml.<br>
<br>
On Tue, Feb 24, 2015 at 8:21 AM, Sergey Safarov &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:s.safarov@gmail.com" target="_blank">s.safarov@gmail.com</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
If you want to FS correctly processed parameters vm-mailfrom and email-from, write a request to </span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="https://freeswitch.org/jira/" target="_blank">https://freeswitch.org/jira/</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">On Tue, Feb 24, 2015 at 5:52 AM, Jason Lewis &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:jason@dickson.st" target="_blank">jason@dickson.st</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
Thanks Sergey,<br>
<br>
I had configured the domain variable to the fqdn of the machine. I eventually got it working though, I was missing two key lines from my user config: <br>
      &lt;param name=&quot;vm-email-all-messages&quot; value=&quot;true&quot;/&gt;<br>
      &lt;param name=&quot;vm-attach-file&quot; value=&quot;true&quot; /&gt;<br>
<br>
I&#39;m not sure how I managed to miss those but anyway, that seems to have resolved things.<br>
<br>
It seems as though vm-mailfrom is still being ignored though. Currently I have it set to:<br>
<br>
       &lt;param name=&quot;vm-mailfrom&quot; value=</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:vm@freeswitch.xyz.com.au" target="_blank">&quot;vm@freeswitch.xyz.com.au&quot;</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">/&gt;<br>
<br>
but voicemails get delivered from:<br>
<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:1001@freeswitch.xyz.com.au" target="_blank">1001@freeswitch.xyz.com.au</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Is this worth investigating further?<br>
<br>
Jason<br>
<br>
Sergey Safarov wrote on 23/02/2015 5:05 PM:<br>
Try configure &quot;domain&quot; variable in vars.xml <br>
<br>
&lt;X-PRE-PROCESS cmd=&quot;set&quot; data=&quot;domain=you_domain_name&quot;/&gt;<br>
<br>
After it verify that user registered with domain name<br>
<br>
freeswitch@internal&gt; sofia status profile internal reg<br>
<br>
Registrations:<br>
=================================================================================================<br>
Call-ID:    1B26-2327-466848134BEBC9719CDE-002@SipHost<br>
User:       1201@you_domain_name<br>
Contact:    &quot;1201&quot; &lt;<a>sip:1201@10.21.18.22:5060;fs_nat=yes;fs_path=sip%3A1201%4010.21.18.22%3A5060</a>&gt;<br>
Agent:      204 12-3868-2416-0.10.56.1-DS<br>
Status:     Registered(UDP-NAT)(unknown) EXP(2015-02-23 06:05:22) EXPSECS(139)<br>
Ping-Status:Reachable<br>
Host:       fs1.you_domain_name<br>
IP:         10.21.18.22<br>
Port:       5060<br>
Auth-User:  1201<br>
Auth-Realm: you_domain_name<br>
MWI-Account:1201@you_domain_name<br>
<br>
Sergey<br>
<br>
<br>
On Mon, Feb 23, 2015 at 1:43 AM, Jason Lewis &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:jason@dickson.st" target="_blank">jason@dickson.st</a></div></div><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<div><div><br>
So I&#39;ve managed to see some output from the sendmail program in the FS logs. It appears that my fs instance isn&#39;t correctly setting its domain?<br>
<br>
the FS box has a fqdn, and I also set the domain parameter in the vars.xml file, but still the voicemail is sent with a from address of an IP address.<br>
<br>
Any ideas?<br>
<br>
Net::SMTP&gt;&gt;&gt; Net::SMTP(2.33)<br>
Net::SMTP&gt;&gt;&gt;   Net::Cmd(2.30)<br>
Net::SMTP&gt;&gt;&gt;     Exporter(5.71)<br>
Net::SMTP&gt;&gt;&gt;   IO::Socket::INET(1.35)<br>
Net::SMTP&gt;&gt;&gt;     IO::Socket(1.37)<br>
Net::SMTP&gt;&gt;&gt;       IO::Handle(1.35)<br></div></div>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 220 </span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://mb.xyz.com.au/" target="_blank">mb.xyz.com.au</a><span style="font-family:&#39;courier new&#39;;font-size:9pt"> ESMTP Postfix (Debian/GNU)<br>
Net::SMTP=GLOB(0x23f7748)&gt;&gt;&gt; EHLO localhost.localdomain<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; </span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://250-mb.bongalong.st/" target="_blank">250-mb.bongalong.st</a><div><div><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-PIPELINING<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-SIZE 10240000<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-VRFY<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-ETRN<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-STARTTLS<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-ENHANCEDSTATUSCODES<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250-8BITMIME<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 250 DSN<br>
Net::SMTP=GLOB(0x23f7748)&gt;&gt;&gt; MAIL FROM:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:1002@192.168.1.3" target="_blank">&lt;1002@192.168.1.3&gt;</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 501 5.1.7 Bad sender address syntax<br>
Net::SMTP=GLOB(0x23f7748)&gt;&gt;&gt; RCPT TO:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:jason@xyz.com.au" target="_blank">&lt;jason@xyz.com.au&gt;</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 503 5.5.1 Error: need MAIL command<br>
Net::SMTP=GLOB(0x23f7748)&gt;&gt;&gt; DATA<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 503 5.5.1 Error: need RCPT command<br>
Net::SMTP=GLOB(0x23f7748)&gt;&gt;&gt; QUIT<br>
Net::SMTP=GLOB(0x23f7748)&lt;&lt;&lt; 221 2.0.0 Bye<br>
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1633 Session 3 (loopback/voicemail-a) Ended<br>
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1637 Close Channel loopback/voicemail-a [CS_DESTROY]<br>
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1633 Session 4 (loopback/voicemail-b) Ended<br>
2015-02-22 11:08:14.145852 [NOTICE] switch_core_session.c:1637 Close Channel loopback/voicemail-b [CS_DESTROY]<br>
<br>
<br>
On 20/02/2015 7:10 pm, Sergey Safarov wrote:<br>
You mailer is not understand &quot;mailer-app-args&quot; has been configured in &quot;switch.conf.xml&quot;<br>
Remove extra arg or add required<br>
<br>
пт, 20 февр. 2015, 7:49, Jason Lewis &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:jason@dickson.st" target="_blank">jason@dickson.st</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt;:<br>
Hi,<br>
<br>
I&#39;ve been trying to make freeswitch email voicemails but as far as I can<br>
tell, it never even calls sendmail.<br>
<br>
I have setting mailer-app to &quot;sendmail&quot; and &quot;/usr/sbin/sendmail&quot; to no<br>
avail. I can successfully send an email from the commandline using<br>
sendmail. (sendmail in this case is provided by postfix)<br>
<br>
I see no emails in the postfix mail logs when I leave a voicemail message.<br>
<br>
I also tried creating a shell just to see if it even gets called from<br>
fs, but it does not get called when a voicemail is deposited:<br>
#!/bin/bash<br>
echo $(date --rfc-3339=ns): $* &gt;&gt; /tmp/freeswitchsendmail.log<br>
<br>
After every change, I have run reloadxml and reload mod_voicemail. I<br>
have also tried restarting freeswitch.<br>
<br>
I am running the debian packages of FreeSWITCH Version 1.4.15-1~64bit<br>
(-1 64bit)<br>
<br>
my configuration is based on the vanilla configuration with only very<br>
minor changes.<br>
<br>
I&#39;m at a loss as to how to debug further, but I&#39;m pretty sure the<br>
mailer-app is never called. Is there some setting I&#39;m missing or<br>
something obvious I&#39;m not doing?<br>
<br>
<br>
My config:<br>
1001.xml:<br>
&lt;include&gt;<br>
  &lt;user id=&quot;1001&quot;&gt;<br>
    &lt;params&gt;<br>
      &lt;param name=&quot;password&quot; value=&quot;$${default_password}&quot;/&gt;<br>
      &lt;param name=&quot;vm-password&quot; value=&quot;1001&quot;/&gt;<br>
      &lt;param name=&quot;vm-mailto&quot; value=&quot;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:jason@xyz.com.au" target="_blank">jason@xyz.com.au</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&quot;/&gt;<br>
      &lt;param name=&quot;vm-mailfrom&quot; value=&quot;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:vm@freeswitch.xyz.com.au" target="_blank">vm@freeswitch.xyz.com.au</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&quot;/&gt;<br>
      &lt;!-- &lt;param name=&quot;vm-message-ext&quot; value=&quot;wav&quot;/&gt; --&gt;<br>
    &lt;/params&gt;<br>
    &lt;variables&gt;<br>
      &lt;variable name=&quot;toll_allow&quot; value=&quot;domestic,international,local&quot;/&gt;<br>
      &lt;variable name=&quot;accountcode&quot; value=&quot;1001&quot;/&gt;<br>
      &lt;variable name=&quot;user_context&quot; value=&quot;default&quot;/&gt;<br>
      &lt;variable name=&quot;effective_caller_id_name&quot; value=&quot;Extension 1001&quot;/&gt;<br>
      &lt;variable name=&quot;effective_caller_id_number&quot; value=&quot;1001&quot;/&gt;<br>
      &lt;variable name=&quot;outbound_caller_id_name&quot;<br>
value=&quot;$${outbound_caller_name}&quot;/&gt;<br>
      &lt;variable name=&quot;outbound_caller_id_number&quot;<br>
value=&quot;$${outbound_caller_id}&quot;/&gt;<br>
      &lt;variable name=&quot;callgroup&quot; value=&quot;techsupport&quot;/&gt;<br>
    &lt;/variables&gt;<br>
  &lt;/user&gt;<br>
&lt;/include&gt;<br>
<br>
and in switch.conf.xml I have the following set:<br>
<br>
    &lt;param name=&quot;mailer-app&quot; value=&quot;/usr/sbin/sendmail&quot;/&gt;<br>
    &lt;param name=&quot;mailer-app-args&quot; value=&quot;-t&quot;/&gt;<br>
<br>
<br>
I made a log at level 7 and put it on the pastebin:<br>
<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="https://pastebin.freeswitch.org/23921" target="_blank">https://pastebin.freeswitch.org/23921</a><br>
<br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Jason Lewis<br>
</span></div></div><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://emacstragic.net/" target="_blank">http://emacstragic.net</a><span><br>
<br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><span><br>
<br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services: <br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">-- <br>

Jason Lewis<br>

</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://emacstragic.net/" target="_blank">http://emacstragic.net</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><span><br>
<br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>

Professional FreeSWITCH Consulting Services: <br>

</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
</span></span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
<br>

Official FreeSWITCH Sites<br>

</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
<br>

FreeSWITCH-users mailing list<br>

</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">
</span></span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">-- <br>

Jason Lewis<br>

</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://emacstragic.net/" target="_blank">http://emacstragic.net</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><span><br>
<br>
<br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">-- <br>
<span style="font-size:14pt"><b><i>Brian West<br>
</i></b></span></span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:brian@freeswitch.org" target="_blank">brian@freeswitch.org</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt"><b><i>Twitter: @FreeSWITCH , @briankwest<br>
</i></b></span></span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchbook.com/" target="_blank">http://www.freeswitchbook.com</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchcookbook.com/" target="_blank">http://www.freeswitchcookbook.com</a><span><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt"><b>T:</b></span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="tel:%2B19184209001" target="_blank">+19184209001</a><span style="font-family:&#39;courier new&#39;;font-size:9pt"> | <b>F:</b></span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="tel:%2B19184209002" target="_blank">+19184209002</a><span style="font-family:&#39;courier new&#39;;font-size:9pt"> | <b>M:</b>+1918424WEST (9378)<br>
<b>iNUM:</b>+883 5100 1420 9001 | <b>ISN:</b>410*543 | <b>Skype:</b>briankwest<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitchsolutions.com/" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Official FreeSWITCH Sites<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://confluence.freeswitch.org/" target="_blank">http://confluence.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com</a><span><br>
<br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">FreeSWITCH-users mailing list<br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">UNSUBSCRIBE:</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
</span><a style="font-family:&#39;courier new&#39;;font-size:9pt" href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org</a></td>
</tr>
</tbody></table>
</div><span>_________________________________________________________________________<br>Professional FreeSWITCH Consulting Services: <br><a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br><a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br><br>Official FreeSWITCH Sites<br><a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br><a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br><a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br><br>FreeSWITCH-users mailing list<br><a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br><a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></span></div></blockquote></div><br></div></div><br>_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" rel="noreferrer" target="_blank">http://www.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.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" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" rel="noreferrer" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" rel="noreferrer" target="_blank">http://www.freeswitch.org</a><br></blockquote></div><br></div>
</div></div></blockquote></div><br></div>