<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: converting vonage voicemails to mp3 (or ogg vorbis)</title>
	<atom:link href="http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3/</link>
	<description>Toby's Geeky Half</description>
	<pubDate>Fri, 30 Jul 2010 23:52:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: The PumaCode.org Blog :: adding caller id information to vonage voicemail emails</title>
		<link>http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3/#comment-307</link>
		<dc:creator>The PumaCode.org Blog :: adding caller id information to vonage voicemail emails</dc:creator>
		<pubDate>Fri, 15 Sep 2006 14:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3-or-ogg-vorbis/#comment-307</guid>
		<description>[...] A few months ago I wrote about a Perl script I use to convert the .wav attachments on my Vonage voicemail emails to .mp3, in order to save mailbox space. One other thing that has always annoyed me about those Vonage emails is that they don&#8217;t contain Caller ID information. Vonage already has this data, so why not put it on the email? [...]</description>
		<content:encoded><![CDATA[<p>[...] A few months ago I wrote about a Perl script I use to convert the .wav attachments on my Vonage voicemail emails to .mp3, in order to save mailbox space. One other thing that has always annoyed me about those Vonage emails is that they don&#8217;t contain Caller ID information. Vonage already has this data, so why not put it on the email? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toby</title>
		<link>http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3/#comment-12</link>
		<dc:creator>toby</dc:creator>
		<pubDate>Wed, 31 May 2006 20:27:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3-or-ogg-vorbis/#comment-12</guid>
		<description>maildrop/xfilter is exactly how I'm running this, so I know it works... it looks like it's trying to run the script through bash instead of perl.

My maildrop entry looks like:
&lt;pre&gt;&lt;code&gt;
if (/^From:.*(prodmx\.vonage\.com&#124;vm\.vonage\.com)/)
{
    xfilter "/usr/local/bin/mailfilters/wavmailtomp3"
    to "mail/._voicemail"
}
&lt;/code&gt;&lt;/pre&gt;

(Where wavmailtomp3 contains the script from above, and _voicemail is my IMAP folder where I filter voicemails to).

Are you sure you included the shebang line (#!/usr/bin/perl), that the path to perl specified there is correct (check with /usr/bin/perl -v), and that the script is marked as executable as the user that maildrop runs as?</description>
		<content:encoded><![CDATA[<p>maildrop/xfilter is exactly how I&#8217;m running this, so I know it works&#8230; it looks like it&#8217;s trying to run the script through bash instead of perl.</p>
<p>My maildrop entry looks like:</p>
<pre><pre><code>
if (/^From:.*(prodmx\.vonage\.com|vm\.vonage\.com)/)
{
    xfilter "/usr/local/bin/mailfilters/wavmailtomp3"
    to "mail/._voicemail"
}
</code></pre></pre>
<p>(Where wavmailtomp3 contains the script from above, and _voicemail is my IMAP folder where I filter voicemails to).</p>
<p>Are you sure you included the shebang line (#!/usr/bin/perl), that the path to perl specified there is correct (check with /usr/bin/perl -v), and that the script is marked as executable as the user that maildrop runs as?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth Green</title>
		<link>http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3/#comment-11</link>
		<dc:creator>Seth Green</dc:creator>
		<pubDate>Wed, 31 May 2006 19:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pumacode.org/2006/05/14/converting-vonage-voicemails-to-mp3-or-ogg-vorbis/#comment-11</guid>
		<description>This is exactly what I'm looking for, but when I try invoking it via maildrop and the xfilter command I end up w/gibberish in my mail queue -- it looks like it's trying to pass the entire delivery history of the message as a single TO: header.

Any help/suggestions would be greatly appreciated.....

Here's a sample logentry:

May 31 15:44:18 [domain snipped] postfix/pipe[10082]: 9C0EF4C136: to=, relay=maildrop, delay=2, status=deferred (temporary failure. Co                          mmand output: bash: -c: line 1: syntax error near unexpected token `(' bash: -c:                           line 1: `Return-Path:  Delivered-To: [recipient snipped] Received: from localhost [domain snipped] [127.0.0.1])  by [domain snipped] (Postfix) with ESMTP id 9C0EF4C136  for                           ; Wed, 31 May 2006 15:44:16 -0400 (EDT) Received: from [domain snipped] ([127.0.0.1])  by localhost (DebServer [127.0.0.1]) (amavisd-new, port 10024)  with ESMTP                           id 09764-03 for ;  Wed, 31 May 2006 15:44:13 -04                          00 (EDT) Received: from [sender snipped]                     by baruchgreen.net (Postfix) with ESMTP id 056C44C135  for ; Wed, 31 May 2006 15:44:08 -0400 (EDT) Received: from [sender snipped] [127.0.0.1])  by [sender snipped] (8.12.8/8.12.8)</description>
		<content:encoded><![CDATA[<p>This is exactly what I&#8217;m looking for, but when I try invoking it via maildrop and the xfilter command I end up w/gibberish in my mail queue &#8212; it looks like it&#8217;s trying to pass the entire delivery history of the message as a single TO: header.</p>
<p>Any help/suggestions would be greatly appreciated&#8230;..</p>
<p>Here&#8217;s a sample logentry:</p>
<p>May 31 15:44:18 [domain snipped] postfix/pipe[10082]: 9C0EF4C136: to=, relay=maildrop, delay=2, status=deferred (temporary failure. Co                          mmand output: bash: -c: line 1: syntax error near unexpected token `(&#8217; bash: -c:                           line 1: `Return-Path:  Delivered-To: [recipient snipped] Received: from localhost [domain snipped] [127.0.0.1])  by [domain snipped] (Postfix) with ESMTP id 9C0EF4C136  for                           ; Wed, 31 May 2006 15:44:16 -0400 (EDT) Received: from [domain snipped] ([127.0.0.1])  by localhost (DebServer [127.0.0.1]) (amavisd-new, port 10024)  with ESMTP                           id 09764-03 for ;  Wed, 31 May 2006 15:44:13 -04                          00 (EDT) Received: from [sender snipped]                     by baruchgreen.net (Postfix) with ESMTP id 056C44C135  for ; Wed, 31 May 2006 15:44:08 -0400 (EDT) Received: from [sender snipped] [127.0.0.1])  by [sender snipped] (8.12.8/8.12.8)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
