<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: VERP on Rails</title>
	<atom:link href="http://keakaj.com/wisdom/2007/08/08/verp-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/</link>
	<description>Programming Wisdom for Mac OS X and Ruby on Rails Developers</description>
	<lastBuildDate>Sun, 21 Aug 2011 22:45:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Processing incoming emails &#124; Callum Macdonald</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-10049</link>
		<dc:creator>Processing incoming emails &#124; Callum Macdonald</dc:creator>
		<pubDate>Sun, 21 Aug 2011 22:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-10049</guid>
		<description>[...] also read a few articles about having postfix send mail to a script. This one is useful. This article talks about configuring custom reply-to addresses to know which emails bounce, something [...]</description>
		<content:encoded><![CDATA[<p>[...] also read a few articles about having postfix send mail to a script. This one is useful. This article talks about configuring custom reply-to addresses to know which emails bounce, something [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valery</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-1234</link>
		<dc:creator>Valery</dc:creator>
		<pubDate>Wed, 26 May 2010 19:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-1234</guid>
		<description>Here is my solution http://blog.gipoo.net/2010/5/26/handling-bounced-emails-in-ruby-on-rails</description>
		<content:encoded><![CDATA[<p>Here is my solution <a href="http://blog.gipoo.net/2010/5/26/handling-bounced-emails-in-ruby-on-rails" rel="nofollow">http://blog.gipoo.net/2010/5/26/handling-bounced-emails-in-ruby-on-rails</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Armstrong</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-940</link>
		<dc:creator>Brian Armstrong</dc:creator>
		<pubDate>Fri, 17 Jul 2009 05:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-940</guid>
		<description>bounces: &#124; &quot;RAILS_ENV=production /usr/local/bin/ruby /u/apps/your_app/current/script/runner &#039;BounceHandler.receive(STDIN.read)&#039;&quot;

Does this above line start an instance of your rails app for EVERY received bounce?  Seems like it could quickly kill your server if you got a bunch of bounces quickly, like while sending out a mass mail.  Maybe better to run it from a cron somehow, or am I missing something?

Thanks for posting this,
Brian</description>
		<content:encoded><![CDATA[<p>bounces: | &#8220;RAILS_ENV=production /usr/local/bin/ruby /u/apps/your_app/current/script/runner &#8216;BounceHandler.receive(STDIN.read)&#8217;&#8221;</p>
<p>Does this above line start an instance of your rails app for EVERY received bounce?  Seems like it could quickly kill your server if you got a bunch of bounces quickly, like while sending out a mass mail.  Maybe better to run it from a cron somehow, or am I missing something?</p>
<p>Thanks for posting this,<br />
Brian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-872</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Fri, 15 May 2009 06:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-872</guid>
		<description>oh, my bad. i didn&#039;t know this: 

&quot;To receive emails, you need to implement a public instance method called receive that takes a tmail object as its single parameter. The Action Mailer framework has a corresponding class method, which is also called receive, that accepts a raw, unprocessed email as a string, which it then turns into the tmail object and calls the receive instance method.&quot;</description>
		<content:encoded><![CDATA[<p>oh, my bad. i didn&#8217;t know this: </p>
<p>&#8220;To receive emails, you need to implement a public instance method called receive that takes a tmail object as its single parameter. The Action Mailer framework has a corresponding class method, which is also called receive, that accepts a raw, unprocessed email as a string, which it then turns into the tmail object and calls the receive instance method.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rob</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-868</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Thu, 14 May 2009 00:06:07 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-868</guid>
		<description>I&#039;m a little confused.  email is being read in from STDIN, so it&#039;s a string; how does it know what .body and .to mean?</description>
		<content:encoded><![CDATA[<p>I&#8217;m a little confused.  email is being read in from STDIN, so it&#8217;s a string; how does it know what .body and .to mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: renuka</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-683</link>
		<dc:creator>renuka</dc:creator>
		<pubDate>Tue, 16 Dec 2008 04:52:26 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-683</guid>
		<description>Hello,

Above setting is working fine now but now i have one another problem i want to store message id for mail and i am not able to get message id using this sendmail method so can anyone help me?

Thanks,</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Above setting is working fine now but now i have one another problem i want to store message id for mail and i am not able to get message id using this sendmail method so can anyone help me?</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: renuka</title>
		<link>http://keakaj.com/wisdom/2007/08/08/verp-on-rails/comment-page-1/#comment-680</link>
		<dc:creator>renuka</dc:creator>
		<pubDate>Mon, 15 Dec 2008 09:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://keakaj.com/wisdom/2007/08/08/verp-on-rails/#comment-680</guid>
		<description>Hi,

I have done same setting like you have described but still i am not able to get its working still i am not able to get bounce emails so can you say me whats wrong?

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have done same setting like you have described but still i am not able to get its working still i am not able to get bounce emails so can you say me whats wrong?</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.176 seconds -->

