<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ten Fingers And A Brain &#187; E-Mail</title>
	<atom:link href="http://ten-fingers-and-a-brain.com/category/e-mail/feed/" rel="self" type="application/rss+xml" />
	<link>http://ten-fingers-and-a-brain.com</link>
	<description>Martin Lormes on Wordpress, PHP, Nagios, XML, FileMaker, BlackBerry, Arduino</description>
	<lastBuildDate>Tue, 27 Mar 2012 10:06:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Subversion post-commit hook E-mail report script that sends the diff as an attachment</title>
		<link>http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment</link>
		<comments>http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 11:27:19 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[diff]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[hooks]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=341</guid>
		<description><![CDATA[I'm using the post-commit hook to send out E-mail notifications when changes are committed to Subversion repositories. If you search the web you'll find a ton of scripts in various languages for this purpose. They all do more or less the same thing: create an E-mail message for the commit, including such details as the [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Subversion post-commit hook E-mail report script that sends the diff as an attachment" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/">I'm using the post-commit hook to send out E-mail notifications when changes are committed to Subversion repositories. If you search the web you'll find a ton of scripts in various languages for this purpose. They all do more or less the same thing: create an E-mail message for the commit, including such details as the revision author, number, timestamp, a list of the paths that were changed, and a diff of the changes. For one particular project I wanted the diff as an attachment, though, rather than inline in the message text. So I ended up writing my own script. It's a Shell script that should work on most Unix/Linux based systems. Source code Installation instructions To install this for your repository: Copy commit-report.sh to the server hosting your repository, for instance to /usr/local/bin, and make sure it's executable (run chmod +x commit-report.sh) Check line #2 of commit-report.sh – you may need to change that address depending on your individual circumstances I remove...</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2012%2F01%2Fsubversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment%2F&amp;via=10fnab&amp;text=Subversion%20post-commit%20hook%20E-mail%20report%20script%20that%20sends%20the%20diff%20as%20an%20attachment&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>I&#8217;m using the <a href="http://svnbook.red-bean.com/en/1.7/svn.ref.reposhooks.post-commit.html">post-commit hook</a> to send out E-mail notifications when changes are committed to Subversion repositories.</p>
<p>If you search the web you&#8217;ll find a ton of scripts in various languages for this purpose. They all do more or less the same thing: create an E-mail message for the commit, including such details as the revision author, number, timestamp, a list of the paths that were changed, and a diff of the changes.</p>
<p>For one particular project I wanted the diff as an attachment, though, rather than inline in the message text. So I ended up writing my own script. It&#8217;s a Shell script that should work on most Unix/Linux based systems.</p>
<p><span id="more-341"></span></p>
<h3>Source code</h3>
<p><script src="https://gist.github.com/1577891.js"> </script></p>
<h3>Installation instructions</h3>
<p>To install this for your repository:</p>
<ol>
<li>Copy <code>commit-report.sh</code> to the server hosting your repository, for instance to <code>/usr/local/bin</code>, and make sure it&#8217;s executable (run <code>chmod +x commit-report.sh</code>)</li>
<li><del>Check line #2 of <code>commit-report.sh</code> – you may need to change that address depending on your individual circumstances</del> <ins>I removed this item later: see <a href="http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/#comment-7811">this comment</a></ins></li>
<li>Edit line #2 of the file <code>post-commit</code>: change <code>/path/to</code> to the correct path for your server, e.g. <code>/usr/local/bin</code></li>
<li>Edit line #2 of the file <code>post-commit</code>: you probably don&#8217;t want to send reports to foo and bar at foo.local but to some other address(es)</li>
<li>If you want a fancy name in the subject line, instead of &#8220;SVN: `basename-of-your-repository`&#8221; append <code>-name "Your fancy name here"</code> to line #2 in <code>post-commit</code></li>
<li>If you haven&#8217;t used the post-commit hook yet, copy the file <code>post-commit</code> to the <code>hooks</code> directory in your repository – Note: Don&#8217;t check it in, but copy it to the respository itself, e.g. in <code>/srv/svn/repositories/myrepo/hooks</code></li>
<li>If you&#8217;ve already used the post-commit hook, and it&#8217;s a Shell script, append line #2 of the file <code>post-commit</code> to your script. If it&#8217;s not a Shell script you&#8217;ll have to figure out a way to call <code>commit-report.sh</code> with the correct parameters in your language</li>
</ol>
<p>You can always test <code>commit-report.sh</code> by invoking it manually.</p>
<h3>Troubleshooting</h3>
<p><strong>Update:</strong> Pointers for troubleshooting have been added later, based on your feedback&#8230;</p>
<ul>
<li>If the script runs without any errors on the console, but you never receive a commit report, change line #2 of <code>commit-report.sh</code>: put something like <code>FROMADDRESS="youremail@yourdomain"</code> in here</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2012/01/subversion-post-commit-hook-e-mail-report-script-that-sends-the-diff-as-an-attachment/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress plugin updated: Comment E-Mail Verification (0.4.2)</title>
		<link>http://ten-fingers-and-a-brain.com/2011/07/wordpress-plugin-updated-comment-e-mail-verification-0-4-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-updated-comment-e-mail-verification-0-4-2</link>
		<comments>http://ten-fingers-and-a-brain.com/2011/07/wordpress-plugin-updated-comment-e-mail-verification-0-4-2/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 21:53:17 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[email verification]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=241</guid>
		<description><![CDATA[Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Comment E-Mail Verification" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as users don't have to wait for the blog admin to approve the comment. This plugin is in still in early development. The current version number is 0.4.2 Please go to http://wordpress.org/extend/plugins/comment-email-verify/ to download and test it! A list of shortcodes for the message template is available here.</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2011%2F07%2Fwordpress-plugin-updated-comment-e-mail-verification-0-4-2%2F&amp;via=10fnab&amp;text=WordPress%20plugin%20updated%3A%20Comment%20E-Mail%20Verification%20%280.4.2%29&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>I just released version 0.4.2 of my <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification WordPress plugin</a>. Most important change: verification codes are no longer being generated (and thus no longer cluttering up the database) for trackbacks and pingbacks. Thanks to <a href="http://yoast.com/">Joost de Valk</a> who contributed a few lines of code that ultimately took this important aspect off my todo-list.</p>
<p>As always: <a href="http://wordpress.org/extend/plugins/comment-email-verify/download/">Download it directly from the wordpress.org plugin directory!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2011/07/wordpress-plugin-updated-comment-e-mail-verification-0-4-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin updated: Comment E-Mail Verification (0.4.1)</title>
		<link>http://ten-fingers-and-a-brain.com/2011/06/wordpress-plugin-updated-comment-e-mail-verification-0-4-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-updated-comment-e-mail-verification-0-4-1</link>
		<comments>http://ten-fingers-and-a-brain.com/2011/06/wordpress-plugin-updated-comment-e-mail-verification-0-4-1/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 16:57:05 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[email verification]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=172</guid>
		<description><![CDATA[Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Comment E-Mail Verification" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as users don't have to wait for the blog admin to approve the comment. This plugin is in still in early development. The current version number is 0.4.2 Please go to http://wordpress.org/extend/plugins/comment-email-verify/ to download and test it! A list of shortcodes for the message template is available here.</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2011%2F06%2Fwordpress-plugin-updated-comment-e-mail-verification-0-4-1%2F&amp;via=10fnab&amp;text=WordPress%20plugin%20updated%3A%20Comment%20E-Mail%20Verification%20%280.4.1%29&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>In the newest version (0.4.1) of my <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification plugin</a> I fixed a bug that caused the verification link to malfunction with some setups.</p>
<p><a href="http://wordpress.org/extend/plugins/comment-email-verify/download/">Download it directly from the wordpress.org plugin directory</a></p>
<p>This update was inspired by user comments. Thanks for all your input.</p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2011/06/wordpress-plugin-updated-comment-e-mail-verification-0-4-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin updated: Comment E-Mail Verification (0.4-beta)</title>
		<link>http://ten-fingers-and-a-brain.com/2011/03/wordpress-plugin-updated-comment-e-mail-verification-0-4-beta/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-updated-comment-e-mail-verification-0-4-beta</link>
		<comments>http://ten-fingers-and-a-brain.com/2011/03/wordpress-plugin-updated-comment-e-mail-verification-0-4-beta/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 23:12:42 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[email verification]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=147</guid>
		<description><![CDATA[Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Comment E-Mail Verification" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as users don't have to wait for the blog admin to approve the comment. This plugin is in still in early development. The current version number is 0.4.2 Please go to http://wordpress.org/extend/plugins/comment-email-verify/ to download and test it! A list of shortcodes for the message template is available here.</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2011%2F03%2Fwordpress-plugin-updated-comment-e-mail-verification-0-4-beta%2F&amp;via=10fnab&amp;text=WordPress%20plugin%20updated%3A%20Comment%20E-Mail%20Verification%20%280.4-beta%29&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>The newest version (0.4-beta) of my <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" _mce_href="/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification plugin</a> now has an option to hold comments for moderation even after the authors have verified their E-mail addresses.</p>
<p><a href="http://wordpress.org/extend/plugins/comment-email-verify/download/" _mce_href="http://wordpress.org/extend/plugins/comment-email-verify/download/">Download it directly from the wordpress.org plugin directory</a></p>
<p>This update was inspired by user comments. Thanks for all your input.</p>
<p>This is a beta version because the entire moderation/verification process requires some more streamlining and new default messages, but I felt there would be an audience for an early update anyway. If you have any suggestions or spotted an error: please share!</p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2011/03/wordpress-plugin-updated-comment-e-mail-verification-0-4-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Puzzles Submissions</title>
		<link>http://ten-fingers-and-a-brain.com/2011/01/facebook-puzzles-submissions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-puzzles-submissions</link>
		<comments>http://ten-fingers-and-a-brain.com/2011/01/facebook-puzzles-submissions/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 11:47:08 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Facebook Puzzles]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=114</guid>
		<description><![CDATA[Quite a few people have reported issues with submitting solutions to the Facebook Puzzle Master. I hated the idea of installing and configuring a MUA to make things work, so I wrote a bash script. This should work on any Unix/Linux server with Postfix or Sendmail that is otherwise capable of sending Internet E-mail. So [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/2011/01/facebook-puzzles-submissions/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Facebook Puzzles Submissions" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/2011/01/facebook-puzzles-submissions/">Quite a few people have reported issues with submitting solutions to the Facebook Puzzle Master. I hated the idea of installing and configuring a MUA to make things work, so I wrote a bash script. This should work on any Unix/Linux server with Postfix or Sendmail that is otherwise capable of sending Internet E-mail. So far I have not been using any compiled languages. The script will have to be edited to be able to send compressed submissions with a Makefile etc. The script should be in the same directory as your executable file and you should have a folder named ".archived-submissions" to hold your sent items, or edit the script accordingly. Then just call $ ./submit.sh &lt;keyword&gt; e.g. $ ./submit.sh meepmeep You must edit line 2 (FROMADDRESS) to hold the address linked to your Facebook account (Google Mail, Yahoo!, university accounts, etc.) and line3 (SENDERADDRESS) to hold an address regularly used for sending on your server (to make sure you make it around any spam filters)...</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2011%2F01%2Ffacebook-puzzles-submissions%2F&amp;via=10fnab&amp;text=Facebook%20Puzzles%20Submissions&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/2011/01/facebook-puzzles-submissions/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>Quite a few people have reported issues with submitting solutions to the <a href="http://www.facebook.com/PuzzleMaster">Facebook Puzzle Master</a>. I hated the idea of installing and configuring a MUA to make things work, so I wrote a bash script. This should work on any Unix/Linux server with Postfix or Sendmail that is otherwise capable of sending Internet E-mail.</p>
<p>So far I have not been using any compiled languages. The script will have to be edited to be able to send compressed submissions with a Makefile etc.</p>
<p>The script should be in the same directory as your executable file and you should have a folder named &#8220;.archived-submissions&#8221; to hold your sent items, or edit the script accordingly. Then just call <em>$ ./submit.sh &lt;keyword&gt;</em> e.g. <em>$ ./submit.sh meepmeep</em></p>
<p>You must edit line 2 (FROMADDRESS) to hold the address linked to your Facebook account (Google Mail, Yahoo!, university accounts, etc.) and line3 (SENDERADDRESS) to hold an address regularly used for sending on your server (to make sure you make it around any spam filters). Both lines may be set to the same address, but this didn&#8217;t seem to work in my case with Facebook linked to my Google Mail address.</p>
<pre class="brush: bash; title: ; notranslate">#!/bin/bash
FROMADDRESS=&quot;youraddress@gmail.com&quot;
SENDERADDRESS=&quot;yourotheraddress&quot;
SUBMITTO=&quot;1051962371@fb.com&quot;

NOW=`date +%Y-%m-%d-%H-%M-%S`
BOUNDARY=_`date | md5sum | cut -d\  -f1`_

MSGFILENAME=.archived-submissions/$NOW-$1.msg

cat &gt; $MSGFILENAME &lt;&lt;TFNAB-27-End-of-File
Content-Type: multipart/mixed;
        boundary=&quot;_001$BOUNDARY&quot;
Sender: $SENDERADDRESS
From: $FROMADDRESS
To: $SUBMITTO
Subject: $1
Date: `date -R`
MIME-Version: 1.0

--_001$BOUNDARY
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;
Content-Transfer-Encoding: quoted-printable

This text should be ignored by the robot

--_001$BOUNDARY
Content-Type: application/octet-stream
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename=&quot;$1&quot;

`base64 $1`

--_001$BOUNDARY--
TFNAB-27-End-of-File

/usr/sbin/sendmail -f $SENDERADDRESS $SUBMITTO &lt; $MSGFILENAME
</pre>
<p>Note: it seems that using the address linked to your account is only of interest if you want to use the <a href="http://apps.facebook.com/facebookpuzzles/">Facebook Puzzles App</a> to post your successful submissions to your profile.</p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2011/01/facebook-puzzles-submissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress plugin updated: Comment E-Mail Verification (0.3)</title>
		<link>http://ten-fingers-and-a-brain.com/2010/03/wordpress-plugin-updated-comment-e-mail-verification-0-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-updated-comment-e-mail-verification-0-3</link>
		<comments>http://ten-fingers-and-a-brain.com/2010/03/wordpress-plugin-updated-comment-e-mail-verification-0-3/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 16:26:18 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email verification]]></category>
		<category><![CDATA[L10n]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=99</guid>
		<description><![CDATA[Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Comment E-Mail Verification" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as users don't have to wait for the blog admin to approve the comment. This plugin is in still in early development. The current version number is 0.4.2 Please go to http://wordpress.org/extend/plugins/comment-email-verify/ to download and test it! A list of shortcodes for the message template is available here.</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2010%2F03%2Fwordpress-plugin-updated-comment-e-mail-verification-0-3%2F&amp;via=10fnab&amp;text=WordPress%20plugin%20updated%3A%20Comment%20E-Mail%20Verification%20%280.3%29&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>The newest version (0.3) of my <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification plugin</a> now supports SMTP as an alternative method to send mail.</p>
<p><a href="http://wordpress.org/extend/plugins/comment-email-verify/download/">Download it directly from the wordpress.org plugin directory</a></p>
<p>Thanks to <a href="http://meandmark.com/">Mark</a> for testing and feedback</p>
<p>It is also the first version to come with a German translation.</p>
<p>If you would like to help by translating this plugin to another language please download the plugin, grab the .pot file, create .po and .mo files and e-mail them to me. (You will be credited.) If this was all gibberish to you you can still help: please start by reading <a rel="bookmark" href="http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/">Translating WordPress Plugins &amp; Themes</a> – Of course you may contact me at anytime to find out whether anyone else has announced or sent to me a translation to that language already. This will avoid any unnecessary efforts on your side.</p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2010/03/wordpress-plugin-updated-comment-e-mail-verification-0-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Important bugfix: Comment E-Mail Verification 0.1.2.1</title>
		<link>http://ten-fingers-and-a-brain.com/2010/02/important-bugfix-comment-e-mail-verification-0-1-2-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=important-bugfix-comment-e-mail-verification-0-1-2-1</link>
		<comments>http://ten-fingers-and-a-brain.com/2010/02/important-bugfix-comment-e-mail-verification-0-1-2-1/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 08:30:50 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email verification]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=93</guid>
		<description><![CDATA[Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Comment E-Mail Verification" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as users don't have to wait for the blog admin to approve the comment. This plugin is in still in early development. The current version number is 0.4.2 Please go to http://wordpress.org/extend/plugins/comment-email-verify/ to download and test it! A list of shortcodes for the message template is available here.</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2010%2F02%2Fimportant-bugfix-comment-e-mail-verification-0-1-2-1%2F&amp;via=10fnab&amp;text=Important%20bugfix%3A%20Comment%20E-Mail%20Verification%200.1.2.1&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p>There was a very unfortunate bug in all previous versions of the <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification Plugin</a>. The verification message was sent to all comment authors, i.e. including those whose comments were caught by Akismet (or any other anti-spam plugin).</p>
<p><strong><a href="http://wordpress.org/extend/plugins/comment-email-verify/download/">I strongly recommend you update to the new version 0.1.2.1</a></strong></p>
<p>Spammers often use fake mail addresses. If an address doesn&#8217;t exist, your only problem is some additional server load trying to deliver that message, plus, possibly, bounces in your inbox.</p>
<p>However if, as in most cases, those addresses actually belong to someone who didn&#8217;t write that comment in the first place, those people will be bothered. Plus, since the comment itself may appear in the verification message (the default setting), you will be considered a spammer. Even worse, this might get your server blacklisted!</p>
<p>So if you&#8217;ve been using the plugin, <strong><a href="http://wordpress.org/extend/plugins/comment-email-verify/download/">please download the new version 0.1.2.1</a></strong></p>
<p><em>Due to excessive work-load this post was written two days after the release of the bugfix which was available through your WordPress admin area immediately. I have set the date of this post back to approximately the time of the bugfix release.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2010/02/important-bugfix-comment-e-mail-verification-0-1-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin updated: Comment E-Mail Verification (0.1.2)</title>
		<link>http://ten-fingers-and-a-brain.com/2010/02/wordpress-plugin-updated-comment-e-mail-verification-0-1-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-updated-comment-e-mail-verification-0-1-2</link>
		<comments>http://ten-fingers-and-a-brain.com/2010/02/wordpress-plugin-updated-comment-e-mail-verification-0-1-2/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 22:48:55 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[blurts]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email verification]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=86</guid>
		<description><![CDATA[My Comment E-Mail Verification Plugin for WordPress has received some tender loving care: blog admins can now customize the messages sent to comment authors. Download from wordpress.org]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification Plugin</a> for WordPress has received some tender loving care: blog admins can now customize the messages sent to comment authors. <a href="http://wordpress.org/extend/plugins/comment-email-verify/">Download from wordpress.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2010/02/wordpress-plugin-updated-comment-e-mail-verification-0-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress plugin: Comment E-Mail Verification</title>
		<link>http://ten-fingers-and-a-brain.com/2010/02/new-wordpress-plugin-comment-e-mail-verification/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-wordpress-plugin-comment-e-mail-verification</link>
		<comments>http://ten-fingers-and-a-brain.com/2010/02/new-wordpress-plugin-comment-e-mail-verification/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 21:19:10 +0000</pubDate>
		<dc:creator>Martin Lormes</dc:creator>
				<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email verification]]></category>

		<guid isPermaLink="false">http://ten-fingers-and-a-brain.com/?p=69</guid>
		<description><![CDATA[Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as [...]]]></description>
			<content:encoded><![CDATA[<div><div style="float: left; margin: 0 0px 5px 0;"><g:plusone size="medium" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/"></g:plusone></div><div style="float: left; margin: 0 30px 5px 0;"><a class="FlattrButton" style="display:none;" title="Comment E-Mail Verification" rev="flattr;uid:tfnab;category:text;language:en_GB;button:compact;" href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">Comment E-Mail Verification is a WordPress Plugin. It sends an e-mail message to the comment author when a comment is held for moderation. The e-mail message contains a link to verify the comment author's e-mail address. When the comment author clicks on that link the comment gets approved immediately. This makes discussions more lively as users don't have to wait for the blog admin to approve the comment. This plugin is in still in early development. The current version number is 0.4.2 Please go to http://wordpress.org/extend/plugins/comment-email-verify/ to download and test it! A list of shortcodes for the message template is available here.</a></div><div style="float: left; margin: 0 15px 5px 0;"><a style="display:none;" href="http://twitter.com/share?url=http%3A%2F%2Ften-fingers-and-a-brain.com%2F2010%2F02%2Fnew-wordpress-plugin-comment-e-mail-verification%2F&amp;via=10fnab&amp;text=New%20WordPress%20plugin%3A%20Comment%20E-Mail%20Verification&amp;count=horizontal" class="twitter-share-button">Tweet</a></div><div style="float: left; margin: 0 0px 5px 0;"><fb:like href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/" layout="button_count"></fb:like></div></div><div style="clear: both;"></div><p><a href="http://www.enderra.com/">Nils</a> asked me whether I knew about a WordPress plugin that would verify a comment author&#8217;s e-mail address. I didn&#8217;t, so I <a href="http://ten-fingers-and-a-brain.com/wordpress-plugins/comment-email-verify/">wrote one myself</a>.</p>
<p>The plugin is in its early stages, the current version number is 0.1 – you are welcome to test-drive it and watch it grow, or watch me procrastinate and forget about it over my day-job :/ if I do, go ahead and nag!</p>
]]></content:encoded>
			<wfw:commentRss>http://ten-fingers-and-a-brain.com/2010/02/new-wordpress-plugin-comment-e-mail-verification/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

