<div dir="ltr">On Mon, Oct 21, 2013 at 2:21 PM, Ali Pey <span dir="ltr">&lt;<a href="mailto:alipey@gmail.com" target="_blank">alipey@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div dir="ltr"><div>I need to send a customized voicemail notification based on certain condition once a voicemail is recorded.<br></div></div></blockquote><div><br></div><div>I did this externally to FreeSWITCH by sending the vm-notify to a perl script.</div>
<div><br></div><div>We run FreeSWITCH on CentOS, so it was easy to set up an email address that I called &quot;vm-page&quot;. For this notification, I didn&#39;t need the audio file, so I used vm-notify instead of vm-mailto. In my directory file, I used this:</div>
<div><br></div><div><div>      &lt;param name=&quot;vm-notify-mailto&quot; value=&quot;vm-page&quot;/&gt;</div><div>      &lt;param name=&quot;vm-notify-email-all-messages&quot; value=&quot;true&quot;/&gt;</div></div><div>
<br></div><div>In /etc/aliases, I have this:</div><div><br></div><div><div># Paging notify from phone system</div><div>vm-page:        &quot;|/etc/smrsh/vm-page&quot;</div></div><div><br></div><div>And /etc/smrsh/vm-page is a perl script that parses the message, looking for the &#39;From&#39; line (which contains the caller-ID info), the &#39;Return-Path&#39; header (which contains the voice mailbox number), the &#39;X-Priority&#39; line (which can identify an urgent message), and the &#39;X-Voicemail-Length&#39; header.</div>
<div><br></div><div>In our system, this script parses this stuff, reformats it, and then sends it through an email-to-SMS gateway at <a href="http://vtext.com">vtext.com</a>.</div><div><br></div><div>-- </div><div>Steve</div>
</div><br></div></div>