<?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>Webmonkey &#187; email</title>
    <atom:link href="http://www.webmonkey.com/tag/email/feed/" rel="self" type="application/rss+xml" />
    <link>http://www.webmonkey.com</link>
    <description>The Web Developer&#039;s Resource</description>
    <lastBuildDate>Fri, 05 Apr 2013 20:20:46 +0000</lastBuildDate>
    <language>en-US</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <generator>http://wordpress.org/?v=3.4.2</generator>
    
    <item>
        <title>Four Regular Expressions to Check Email Addresses</title>
        <link>http://www.webmonkey.com/2008/08/four_regular_expressions_to_check_email_addresses/</link>
        <comments>http://www.webmonkey.com/2008/08/four_regular_expressions_to_check_email_addresses/#comments</comments>
        <pubDate>Mon, 18 Aug 2008 21:46:24 +0000</pubDate>

                <dc:creator>Adam Duvander</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/fourregularexpressionstocheckemailaddresses</guid>
        		<category><![CDATA[Programming]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[regex]]></category>
        <description><![CDATA[How do you find out if a user has entered a valid email address? Do you check for an at-sign, or is it more complicated? For many developers the answer is a regular expression, a little bit of code that can describe text patterns using wildcards and other special characters. If you&#8217;re new to the [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->How do you find out if a user has entered a valid email address? Do you check for an at-sign, or is it more complicated? For many developers the answer is a regular expression, a little bit of code that can describe text patterns using wildcards and other special characters. If you&#8217;re new to the topic, we have a great <a href="/2010/02/Regular_Expressions_Tutorial">regular expression tutorial</a>.</p>
<p>Here are four regular expressions (often called <em>regexes</em>) that all validate the format of an email address. They have increasing degrees of complexity. The more complicated, the more accurate each is at matching only email addresses.</p>
<p><strong>1. Dirt-simple approach</strong></p>
<p>Here&#8217;s a regex that only requires a very basic <em>xxxx@yyyy.zzz</em>:</p>
<blockquote><p>.+\@.+\..+</p></blockquote>
<p>Upside: Dirt simple.</p>
<p>Downside: Even invalid email addresses like xxxx@yyyy.zzz, or even a@b.c, make it through.</p>
<p><strong>2. Slightly more strict (but still simple) approach</strong></p>
<p><a href="http://www.regular-expressions.info">Regular-Expressions.Info</a> provides a basic email validation regex that tries to be a little smarter:</p>
<blockquote><p>[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}</p></blockquote>
<p>Upside: Only allows email address-friendly characters, restricts domain extension to only two to four characters.</p>
<p>Downside: It still allows many invalid email addresses, and misses some longer domain extensions (.museum, for example).</p>
<p><strong>3. Specify all the domain extensions approach</strong></p>
<p>Reddit user <a href="http://www.reddit.com/user/teye/">teye</a> points to <a href="http://pastebin.com/m2a266c0f">his regex</a>, which only allows domain extensions that actually exist:</p>
<blockquote><p>([a-z0-9][-a-z0-9_\+\.]*[a-z0-9])@([a-z0-9][-a-z0-9\.]*[a-z0-9]\.(arpa|root|aero|biz|cat|com|coop|edu|gov|info|int|jobs|mil|mobi|museum|name|net|org|pro|tel|travel|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)|([0-9]{1,3}\.{3}[0-9]{1,3}))</p></blockquote>
<p>Upside: It doesn&#8217;t allow xxxx@yyyy.zzz!</p>
<p>Downside: Upkeep could be tough with this one. You&#8217;d have to update any time new domain extensions are announced. In fact, you already would need to add the .me extension.</p>
<p><strong>4. Way complicated approach</strong></p>
<p>A Perl module has a <a href="http://ex-parrot.com/~pdw/Mail-RFC822-Address.html">long regular expression</a> based on the standard description of an email address. It&#8217;s so long (nearly 6,500 characters!) that I won&#8217;t include it here.</p>
<p>Upside: It&#8217;s complete.</p>
<p>Downside: It&#8217;s way complicated.</p>
<p><strong>Meet in the middle approach</strong></p>
<p>You&#8217;ll have to decide, if you haven&#8217;t already, which regular expression to use. Likely, you&#8217;ll choose somewhere in the middle of the examples we&#8217;ve given. Regular-Expressions.Info has a good run-down of the <a href="http://www.regular-expressions.info/email.html">trade-offs of different approaches</a>.</p>
<p>Have you already decided how to check email addresses? How do you do it?</p>
<p>[via <a href="http://www.reddit.com/r/programming/comments/6wquj/the_regular_expression_required_to_validate_an/">Reddit</a>]</p>
<p><strong>See also:</strong></p>
<ul>
<li><a href="http://www.webmonkey.com/blog/A_New_Tool_Offers_a_Little_Help_with_Regular_Expressions">A New Tool Offers a Little Help with Regular Expressions</a></li>
<li><a href="http://www.webmonkey.com/blog/June_1_Is_Regular_Expression_Day">June 1 Is Regular Expression Day</a></li>
<li><a href="/2010/02/Use_Regex_in_Perl">Tutorial: Use Regex in Perl</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/08/four_regular_expressions_to_check_email_addresses/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>The Safest Way to Publish Your Email Address</title>
        <link>http://www.webmonkey.com/2008/07/the_safest_way_to_publish_your_email_address/</link>
        <comments>http://www.webmonkey.com/2008/07/the_safest_way_to_publish_your_email_address/#comments</comments>
        <pubDate>Fri, 25 Jul 2008 07:14:14 +0000</pubDate>

                <dc:creator>Adam Duvander</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/thesafestwaytopublishyouremailaddress</guid>
        		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[spam]]></category>
        <description><![CDATA[At the dawn of time, including your email address on a web page didn&#8217;t seem like a horrible idea. Now, that&#8217;s the easiest way to get on every spam list around. Sadly, this makes it a little more difficult to solicit email from site visitors. Silvan M&#252;hlemann decided to find the best way to safely [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->At the dawn of time, including your email address on a web page didn&#8217;t seem like a horrible idea. Now, that&#8217;s the easiest way to get on every spam list around. Sadly, this makes it a little more difficult to solicit email from site visitors.</p>
<p>Silvan M&uuml;hlemann decided to find the best way to safely publish an email address. He started his test almost two years ago and recently <a href="http://techblog.tilllate.com/2008/07/20/ten-methods-to-obfuscate-e-mail-addresses-compared/">published the results</a>.</p>
<p>Silvan created nine email addresses and use a different method of obfuscation&#8211;nine different ways of hiding the actual address. Of the methods he tested, three of the email addresses never received a spam message.</p>
<p>The simplest method is to add markup with <strong>display: none</strong> styling so it doesn&#8217;t show:</p>
<blockquote><pre class="brush: js">email@&lt;span style=&quot;display: none&quot;&gt;null&lt;/span&gt;example.com</pre>
</blockquote>
<p>The other two methods are reversing backwards text with unicode declarations and simple ROT13 encoding using JavaScript to decode. Next on the list, receiving just a few spam emails, was the popular <strong>email AT example DOT com</strong> method. Silvan did not test the email-as-image method, one employed by Facebook on its profile pages.</p>
<p>These methods probably won&#8217;t work with a mailto: link for easy clicking. Still, they all allow copy-pasting, instead of laborious re-typing, so they&#8217;re worth a shot. And yes, I know you could just use a contact form, but isn&#8217;t that a little impersonal? I think so.</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/07/the_safest_way_to_publish_your_email_address/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Catch a Glimpse of Mozilla&#8217;s E-Mail Future in Thunderbird 3 Alpha 1</title>
        <link>http://www.webmonkey.com/2008/05/catch_a_glimpse_of_mozilla_s_e-mail_future_in_thunderbird_3_alpha_1/</link>
        <comments>http://www.webmonkey.com/2008/05/catch_a_glimpse_of_mozilla_s_e-mail_future_in_thunderbird_3_alpha_1/#comments</comments>
        <pubDate>Wed, 14 May 2008 16:01:15 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/catchaglimpse</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[It&#8217;s alive! Mozilla has released the first alpha version of its upcoming Thunderbird 3.0, the company&#8217;s next-generation e-mail application. We don&#8217;t suggest you rush out and download it unless you&#8217;re a true early adopter; this release isn&#8217;t stable and lacks many of the features planned for Thunderbird 3&#8242;s final release. This alpha release is primarily [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><img width="660" height="402" border="0" alt="thunderbird3.jpg" src="http://blog.wired.com/monkeybites//thunderbird3.jpg" style="margin: 10px 0px 10px 5px; display: block;" /></p>
<p>It&#8217;s alive! Mozilla has released the first alpha version of its upcoming Thunderbird 3.0, the company&#8217;s next-generation e-mail application. We don&#8217;t suggest you rush out and download it unless you&#8217;re a true early adopter; this release isn&#8217;t stable and lacks many of the features planned for Thunderbird 3&#8242;s final release.</p>
<p>This <a href="http://www.mozillamessaging.com/en-US/thunderbird/3.0a1/releasenotes/">alpha release</a> is primarily intended to let Thunderbird fans know that the project is alive and well and the team is working hard on the next version of the open source e-mail client. It&#8217;s also the first product to emerge from the newest entity within the Mozilla organization, Mozilla Messaging. The company was <a href="http://blog.wired.com/monkeybites/2007/09/mozilla-thunder.html">spun off</a> this past winter in order to give more attention to the Thunderbird project, which had long lived under the shadow of the much more successful Firefox browser.</p>
<p>The feature set looks promising. However, one the most anticipated features of Thunderbird 3 &#8211; integration with Lightning, an extension that adds calendar functionality &#8211; isn&#8217;t available yet. </p>
<p><span id="more-4302"></span></p>
<p>The OS X version of Thunderbird 3 is now a native Cocoa app, meaning it can integrate with the Mac OS X address book, a much-requested feature. Unfortunately that functionality doesn&#8217;t appear to available by default yet either, but if you want to turn it on and test it out, <a href="http://clarkbw.net/blog/2008/04/16/mac-address-book-try-thunderbird-nightly/">Bryan Clark has posted some instructions</a>.</p>
<p>The most interesting-looking feature that is part of this alpha release is the ability to open messages in tabs, which looks like a fantastic way to keep frequently needed messages easily at hand.</p>
<p>There are some other new enhancements, too, like a new add-ons manager similar to the one found in Firefox 3, and a much-improved search tool for finding text within messages.</p>
<p>Like the soon-to-be-released Firefox 3, the next version of Thunderbird will use the Gecko 1.9 engine, enabling it to take advantage of some of the memory and speed improvements coming in Firefox 3. The only downside is that Thunderbird 3 will require Windows 2000 or better. Sorry Win 98 holdouts, Thunderbird 3 isn&#8217;t in your future.</p>
<p>It does have a cool code-name, though: Shredder!</p>
<p>[via <a href="http://mozillalinks.org/wp/2008/05/first-look-to-thunderbird-3-aka-shredder-alpha-1/">Mozilla Links</a>]</p>
<p><strong>See Also:</strong></p>
<ul>
<li><a href="http://blog.wired.com/monkeybites/2007/10/trouble-at-the-.html#previouspost">Trouble At The Henhouse: Thunderbird Loses Key Developers</a></li>
<li><a href="http://blog.wired.com/monkeybites/2007/09/mozilla-thunder.html#previouspost">Mozilla Thunderbird Takes Wing</a></li>
<li><a href="http://blog.wired.com/monkeybites/2007/09/mozilla-resurre.html#previouspost">Mozilla Resurrects Eudora E-mail Client</a></li>
<li><a href="http://blog.wired.com/monkeybites/2007/07/its-sink-or-swi.html#previouspost">It&#8217;s Sink or Swim Time for Mozilla Thunderbird</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/05/catch_a_glimpse_of_mozilla_s_e-mail_future_in_thunderbird_3_alpha_1/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Dreamhost Discontinues Procmail Support</title>
        <link>http://www.webmonkey.com/2008/04/dreamhost_discontinues_procmail_support/</link>
        <comments>http://www.webmonkey.com/2008/04/dreamhost_discontinues_procmail_support/#comments</comments>
        <pubDate>Tue, 15 Apr 2008 17:39:00 +0000</pubDate>

                <dc:creator>Paul Adams</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/dreamhostdisco</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[Dreamhost hosts over half a million domains, luring customers with cheap rates and acres of storage and bandwidth. They&#8217;ve also been historically pretty good in terms of using open tools and standards. Amid tales of web hosts being miscellaneously annoying and prohibiting basic tools like ssh, Dreamhost always seemed like a decent option. (I myself [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><img alt="Dreamhost" title="Dreamhost" src="http://blog.wired.com/photos/uncategorized/2008/04/14/dreamhost.png" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Dreamhost hosts over half a million domains, luring customers with cheap rates and acres of storage and bandwidth. They&#8217;ve also been historically pretty good in terms of using open tools and standards. Amid tales of web hosts being miscellaneously <a href="http://www.techcrunch.com/2008/04/08/network-solutions-hijacking-unassigned-sub-domains/">annoying</a> and prohibiting basic tools like ssh, Dreamhost always seemed like a decent option. (I myself have never been their customer.)</p>
<p>In January they lost a lot of friends when they mis-billed their customer base, then added insult to injury with an overly irreverent <a href="http://blog.dreamhost.com/2008/01/15/um-whoops/">apology</a>.</p>
<p>More upsetting to me is the host&#8217;s recent <a href="http://discussion.dreamhost.com/showflat.pl?Cat=&#038;Board=forum_troubleshooting&#038;Number=104643&#038;page=0&#038;view=expanded&#038;sb=9&#038;o=7&#038;vc=1">decision</a> to make Procmail, the classic and powerful mail-filtering tool, unavailable to users, after providing it for years.</p>
<p><span id="more-11432"></span><br />
A few of my own web apps take instructions from users via email as an alternative to a web interface, and Procmail is part of that signal chain. That&#8217;s not uncommon these days. Fortunately my apps are hosted elsewhere.</p>
<p>Dreamhost is not replacing Procmail with <a href="http://www.courier-mta.org/maildrop/">Maildrop</a> or <a href="http://www.fastmail.fm/docs/sieve/index.html">Sieve</a> or another non-proprietary tool. They&#8217;re replacing it with their own in-house filtering mechanism, which they plan &#8212; at some point &#8212; to make &#8220;more robust so [sic] mimic many common procmail jobs&#8221;.</p>
<p>Seems like a move away from good things like interoperability, portability, standardization, and giving your customers what they&#8217;ve come to expect.</p>
<p><strong>See Also:</strong><br/>
<ul>
<li><a href="http://blog.wired.com/monkeybites/2008/03/how-do-you-sort.html">Poll: What Do You Use to Sort Your E-mail?</a></li>
<li><a href="http://blog.wired.com/27bstroke6/2006/11/can_the_gov_shu.html#previouspost">Can The Gov Shutdown A Website Without A Court Order?</a></li>
<li><a href="http://blog.wired.com/monkeybites/2006/09/morning_reboot_.html">Dreamhost Blocking BitTorrent Again</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/04/dreamhost_discontinues_procmail_support/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    
    <item>
        <title>Yahoo Unlimited Mail Fills Up</title>
        <link>http://www.webmonkey.com/2008/03/yahoo_unlimited_mail_fills_up/</link>
        <comments>http://www.webmonkey.com/2008/03/yahoo_unlimited_mail_fills_up/#comments</comments>
        <pubDate>Thu, 27 Mar 2008 17:31:30 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/yahoounlimited</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[The Wall Street Journal&#8217;s tech blog reports trouble with Yahoo mail. Namely, it seems that keeping several years&#8217; worth of e-mail in a Yahoo &#8220;unlimited&#8221; inbox causes a nasty error and the vanishing of all that mail. Thanks to the Journal&#8217;s high profile, a fix is now expected in &#8220;a month or so.&#8221; Last I [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><img class="blogimg" src="http://blog.wired.com/photos/uncategorized/2007/06/05/yahoo_logo.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" height="119" width="135"/></a><br />
The Wall Street Journal&#8217;s tech blog <a href="http://blogs.wsj.com/biztech/2008/03/17/yahoos-unlimited-email-hits-its-limit/?mod=WSJBlog">reports</a> trouble with Yahoo mail. Namely, it seems that keeping several years&#8217; worth of e-mail in a Yahoo &#8220;unlimited&#8221; inbox causes a nasty <a href="http://answers.yahoo.com/question/index?qid=20080304053540AAlmRlp">error</a> and the vanishing of all that mail.</p>
<p>Thanks to the Journal&#8217;s high profile, a fix is now expected in &#8220;a month or so.&#8221;</p>
<p>Last I heard, which was not terribly recently, Yahoo was running a modified version of <a href="http://en.wikipedia.org/wiki/Qmail">Qmail</a> as their back-end. (Please correct me if there&#8217;s more recent information.)</p>
<p><span id="more-10902"></span><br />
Qmail works with Maildir-style storage, in which each message is its own file in a directory. Having 55,000 files in a directory is not prohibitive. If they&#8217;re running a filesystem with a shortage of inodes, that might be a sticking point, but you&#8217;d think a large company offering unlimited e-mail would think of that. In one archive folder on my server I have 186,373 messages at the moment.</p>
<p>Qmail supports per-user storage quotas, too. Until your inbox-filling-up problem is sorted out, Yahoo, you may want to read <a href ="http://www.faqts.com/knowledge_base/view.phtml/aid/7241">this FAQ</a>.</p>
<p>You might also want to read <a href="http://help.yahoo.com/l/us/yahoo/mail/yahoomail/tools/tools-08.html">this one</a>:</p>
<blockquote><p><b>What exactly does unlimited storage mean?</b></p>
<p>Unlimited storage gives normal email account users like you an opportunity to not have to worry about hitting a storage limit.</p></blockquote>
<p>Sorry, that was snide. Realistically, my guess as to what broke is the indexing of the messages, not the storage. Personally, I have a non-fatal but serious allergy to storing my data on computers to which I don&#8217;t have physical access.</p>
<p><strong>See Also:</strong>
<ul>
<li><a href="http://blog.wired.com/monkeybites/2007/03/yahoo_mail_to_o.html#previouspost">Yahoo Mail To Offer Unlimited Storage Space</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/03/yahoo_unlimited_mail_fills_up/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Poll: What Do You Use to File Your E-mail?</title>
        <link>http://www.webmonkey.com/2008/03/poll_what_do_you_use_to_file_your_e-mail/</link>
        <comments>http://www.webmonkey.com/2008/03/poll_what_do_you_use_to_file_your_e-mail/#comments</comments>
        <pubDate>Mon, 24 Mar 2008 19:48:15 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/howdoyousort</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[I&#8217;m grappling with this question myself. Not the more personal question of what particular categories you choose, but the logistical one of, having chosen them, how do you get the incoming mail into the right place? Perhaps predictably for me, a notorious centralizer of data, I do my filtering on my mail server. I&#8217;m currently [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><img alt="Sorting" title="Sorting" src="http://blog.wired.com/photos/uncategorized/2008/03/24/sorting.jpg" border="0" style="float: right; margin: 0px 0px 5px 5px;" />I&#8217;m grappling with this question myself. Not the more personal question of what particular categories you choose, but the logistical one of, having chosen them, how do you get the incoming mail into the right place?</p>
<p>Perhaps predictably for me, a notorious centralizer of data, I do my filtering on my mail server. I&#8217;m currently in the process of migrating from <a href="http://www.procmail.org/">Procmail</a> to <a href="http://www.fastmail.fm/docs/sieve/index.html">Sieve</a> to do that job. I&#8217;ll let you all know how it goes.</p>
<p>The Gmail-driven rage for sorting with labels rather than folders is cool if that&#8217;s what you&#8217;re into; personally I like folders&#8217; hierarchical nature, allowing me to have subsets and subsubsets of my mail.</p>
<p><span id="more-10692"></span></p>
<h4>How do you sort your email into folders/categories?</h4>
<p><iframe src="http://reddit.wired.com/sorting_e-mail/?s=hot" width="600" height="1100" frameborder="0" border="0" name="trend"></iframe></p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/03/poll_what_do_you_use_to_file_your_e-mail/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Alpine Turns It Up to 1.10</title>
        <link>http://www.webmonkey.com/2008/03/alpine_turns_it_up_to_1dot10/</link>
        <comments>http://www.webmonkey.com/2008/03/alpine_turns_it_up_to_1dot10/#comments</comments>
        <pubDate>Wed, 19 Mar 2008 21:37:17 +0000</pubDate>

                <dc:creator>Paul Adams</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/alpineturnsit</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[Alpine, the open-source-licensed successor to Pine, released its first post-v1 upgrade on Monday. You may recall Pine from your first shell account, or from jokes about prehistoric e-mail, but it continues to thrive in its new incarnation. Like Pine, Alpine runs in a terminal window, but even in 2008 it has its fans. Its killer [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><img alt="Alpine_2" title="Alpine_2" src="http://blog.wired.com/photos/uncategorized/2008/03/19/alpine_2.gif" border="0" style="float: right; margin: 0px 0px 5px 5px;" />Alpine, the open-source-licensed successor to Pine, released its first post-v1 upgrade on Monday. You may recall Pine from your first shell account, or from jokes about prehistoric e-mail, but it continues to thrive in its new incarnation. Like Pine, Alpine runs in a terminal window, but even in 2008 it has its fans.</p>
<p>Its killer features include massive configurability, exquisite IMAP support (the IMAP developer community and the Alpine developer community overlap significantly), aggregate commands, and the quick non-GUI interface everyone loves. Remotely-stored configuration files and address books mean you can set your favorite settings once and then use them anywhere.</p>
<p><span id="more-10532"></span><br />
One of the biggest new features introduced with <a href="http://www.washington.edu/alpine/">Alpine</a> is <a href="https://alpine.cs.washington.edu:5131">Web-Alpine</a>, a web-based e-mail client with all the features (and indeed the codebase) of Alpine. The development team received a <a href="http://www.washington.edu/alpine/Alpinenext.html">grant</a> in 2006 to spruce up the Web-Alpine interface. Just imagine: open-source software with a professionally designed interface!</p>
<p>Version 1.10 is basically a <a href="http://www.washington.edu/alpine/changes/1.00-to-1.10.html">maturity release</a>. It fixes a passel of bugs and adds just a few small features.</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/03/alpine_turns_it_up_to_1dot10/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Alpine E-Mail Client Released &#8212; Don&#8217;t Call it a Comeback</title>
        <link>http://www.webmonkey.com/2007/12/alpine_e-mail_client_released_-_don_t_call_it_a_comeback/</link>
        <comments>http://www.webmonkey.com/2007/12/alpine_e-mail_client_released_-_don_t_call_it_a_comeback/#comments</comments>
        <pubDate>Fri, 21 Dec 2007 17:29:26 +0000</pubDate>

                <dc:creator>Michael Calore</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/alpineemailc</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[The computing and networking group at the University of Washington has released Alpine, an open-source e-mail client for the desktop and the web. It&#8217;s based on Pine, the ancient but rock solid text-based e-mail client also developed at UW. You may remember Pine from your school&#8217;s computer lab, your dad&#8217;s old Windows 3.1 box or [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><img border="0" src="http://blog.wired.com/photos/uncategorized/2007/12/21/alpine.gif" title="Alpine" alt="Alpine" style="margin: 0px 0px 5px 5px; float: right;" /><br />
The computing and networking group at the University of Washington has released <a href="http://www.washington.edu/alpine/">Alpine</a>, an open-source e-mail client for the desktop and the web. It&#8217;s based on <a href="http://www.washington.edu/pine/">Pine</a>, the ancient but rock solid text-based e-mail client also developed at UW.</p>
<p>You may remember Pine from your school&#8217;s computer lab, your dad&#8217;s old Windows 3.1 box or (if you&#8217;re like Epicenter&#8217;s Dylan Tweney) from when you last checked your mail. Though it&#8217;s been the choice of Unix power users for almost two decades, Pine is also remarkably easy to use and simple enough for just about anyone to pick up.</p>
<p><span id="more-7842"></span></p>
<p>But Pine is a copyrighted work &#8212; UW owns it and felt that they had taken development as far as they could. Also, Pine&#8217;s license prevents the distribution of modified versions. So, the computing group at the school decided to re-work Pine&#8217;s code from the ground up and release it under version 2.0 of the Apache License.</p>
<p>And now we have Alpine, an open-source, fully customizable lightweight client that looks and acts like Pine, but has been almost completely rewritten. Also included in the Alpine package is a web-based version, which was previously only available to UW students.</p>
<p>So, if you&#8217;ve ever wanted to take a stab at building a better Gmail, here&#8217;s a great place to start.</p>
<p>[via <a href="http://slashdot.org/article.pl?sid=07/12/21/097254">Slashdot</a>]</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2007/12/alpine_e-mail_client_released_-_don_t_call_it_a_comeback/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    
    <item>
        <title>Boxbe Creates a VIP Guest List For Your Inbox</title>
        <link>http://www.webmonkey.com/2007/11/boxbe_creates_a_vip_guest_list_for_your_inbox/</link>
        <comments>http://www.webmonkey.com/2007/11/boxbe_creates_a_vip_guest_list_for_your_inbox/#comments</comments>
        <pubDate>Fri, 30 Nov 2007 17:41:20 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/therecentlyre</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[The recently relaunched Boxbe has unveiled a new e-mail spam fighting service. Borrowing some ideas from IM and social networking, Boxbe adds a privilege system to your inbox which allows you to create an e-mail &#34;friends list,&#34; much like those on social sites. It&#8217;s designed to help narrow down your e-mail workflow so you can [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><img width="660" height="326" border="0" alt="boxbe.jpg" src="http://blog.wired.com/monkeybites/images/boxbe.jpg" style="margin: 10px 0px 10px 5px; display: block;" /></p>
<p>The recently relaunched <a href="http://www.boxbe.com/">Boxbe</a> has unveiled a new e-mail spam fighting service. Borrowing some ideas from IM and social networking, Boxbe adds a privilege system to your inbox which allows you to create an e-mail &quot;friends list,&quot; much like those on social sites. It&#8217;s designed to help narrow down your e-mail workflow so you can focus more closely on the people who matter to you.</p>
<p>Of course the biggest danger in battening down your e-mail hatches is that important messages won&#8217;t get through, but to get around that Boxbe has a few tricks up its sleeve. </p>
<p>There&#8217;s no need to change e-mail addresses to use the service. Boxbe works as a plug-in, adding its spam-fighting features right in your Yahoo Mail account or within Outlook. Plug-ins for Gmail, Apple Mail and other popular e-mail programs are expected soon.</p>
<p><span id="more-7052"></span></p>
<p>Boxbe combines elements of a traditional challenge-response (C/R) e-mail system with niceties like dynamically updated whitelists drawn from your address book and sent message history to help stop spam and make sure you get only the messages you want.</p>
<p>Earlier this week I spoke with Thede Loder, co-founder and president of Boxbe, who believes &#8220;Boxbe allows you to treat your friends&#8217; e-mail with the respect it deserves, and reject any message that tries to invade your inbox without an invitation from you.&#8221;</p>
<p>Here&#8217;s how it works for Yahoo Mail users:</p>
<ol>
<li>Tell Boxbe your e-mail address and OK the plug-in to access your Yahoo account.</li>
<li>Boxbe will parse through your address book and sent messages to create a whitelist.</li>
<li>Incoming messages from addresses not on your whitelist are quarantined in a new Boxbe mailbox.</li>
<li>The senders of those message will receive an e-mail informing them that their message hasn&#8217;t reached you. There&#8217;s also a link to solve a CAPTCHA, if they do that the message is moved to your inbox (i.e. they&#8217;re a real person).</li>
<li>All of your quarantined messages are scored and ranked according to the likelihood that they are spam. Boxbe appends a number from one to ten at the beginning of each subject line. </li>
<li>Click of the subject line and you&#8217;ll see all your potential spam in a neatly organized list from most likely hits to least likely.</li>
<li>Each message in your Boxbe folder has an extra link to add the sender to your whitelist. If you tell Boxbe to add the sender, that person will always go direct to your inbox from that point on.</li>
</ol>
<p>It&#8217;s worth noting that you can accomplish most of this on your own by chaining together your own whitelists, or by using tools like SpamAssassin, but those options are more time-consuming and require you to keep everything up to date. And as Loder points out, those are things the average user is likely to do.</p>
<p>&#8220;While it&#8217;s possible to glue together a number of techniques and get pretty good results if you&#8217;re a system admin, with Boxbe the set up is much easier.&#8221;</p>
<p>There&#8217;s also a pretty good chance Boxbe&#8217;s algorithms are going to be more successful than your hand-culled whitelists. &#8220;Boxbe uses a whitelist too,&#8221; says Loder, &#8220;the difference is, what do you do with the grey area? We offer a way to save those messages in one place, dynamically update the list and offer scoring to suggest the likelihood of a message being spam.&#8221;</p>
<p>One of the big problems with challenge response systems is that they place the burden of getting to your inbox on the sender. Often, the messages sent back themselves look like spam, which means your sender may never see them. This latter problem will likely grow as spammers continue to spoof C/R messages as a way to evade filters.</p>
<p>To minimize this effect, Boxbe uses both SPF and DKIM server verification tools to cut down on the &#8220;backscatter&#8221; of challenges sent out. Rather than challenging every unknown sender as traditional C/R systems do, Boxbe discards those messages that obviously got bounced around and are therefore most likely to be spam. </p>
<p>What raises Boxbe above competitors like SpamArrest? The integration with your webmail accounts. Using Boxbe is about as painless and simple as you&#8217;re going to find. And it&#8217;s portable, which means if you change addresses, your whitelist can come with you and senders won&#8217;t need to re-authenticate.</p>
<p>That said, there are a number of problems with challenge-response e-mail systems that you might want to consider before you jump in with both feet &#8211; C/R systems add a burden that your sender may choose to simply ignore. Mailing lists with thousands of members present a problem as well since all those senders will need to be in your whitelist. And, of course, challenges increase the bandwidth burden on your mail server.</p>
<p>In its current incarnation, Boxbe offers seamless integration with<br />
Yahoo&#8217;s webmail interface and Microsoft Outlook on the desktop. But<br />
Boxbe plans to expand its services to eventually include the same tight<br />
integration with other popular options like Apple Mail, Gmail and more.</p>
<p>Personally, I&#8217;d like a way to integrate Boxbe&#8217;s services into Gmail, but without the C/R element. In other words, Boxbe is a great spam fighting and message filtering add-on, and while the C/R aspect won&#8217;t bother some people, given the amount of legitimate unsolicited e-mail I receive everyday, C/R creates more of a headache than it could hope to resolve.</p>
<p>[Thanks to e-mail guru Paul Adams for his help with this post]</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2007/11/boxbe_creates_a_vip_guest_list_for_your_inbox/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>How To: Store Messages Sent With Gmail on Another Mail Server</title>
        <link>http://www.webmonkey.com/2007/11/how_to_store_messages_sent_with_gmail_on_another_mail_server/</link>
        <comments>http://www.webmonkey.com/2007/11/how_to_store_messages_sent_with_gmail_on_another_mail_server/#comments</comments>
        <pubDate>Mon, 26 Nov 2007 14:43:24 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/howtostoreme</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[email]]></category>
        <description><![CDATA[Part of Gmail&#8217;s popularity lies in its plethora of options. Even if it isn&#8217;t your primary e-mail address, options like the ability to set multiple &#8220;from&#8221; addresses make it an easy way to manage all your mail accounts in one place. But there&#8217;s one flaw in that solution: if you send mail from Gmail using [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><img class="blogimg" src="http://blog.wired.com/monkeybites/images/gmailscript.jpg" alt="gmailscript.jpg" border="0" width="274" height="98" style="float: right; margin: 0px 0px 5px 5px;" />Part of Gmail&#8217;s popularity lies in its plethora of options. Even if it isn&#8217;t your primary e-mail address, options like the ability to set <a href="https://mail.google.com/support/bin/topic.py?topic=1570">multiple &#8220;from&#8221; addresses</a> make it an easy way to manage all your mail accounts in one place.</p>
<p>But there&#8217;s one flaw in that solution: if you send mail from Gmail using a non-Gmail address, there&#8217;s no copy of the sent message stored in your primary e-mail account, which is why the <a href="http://jaidev.info/home/hacks/gmailAutoBcc">GmailAutoBcc Greasemonkey script</a> is incredibly handy. </p>
<p>The simple script automatically BCCs a selected address so you can keep copies of sent messages on your primary mail server even when you send them through Gmail.</p>
<p><span id="more-6802"></span></p>
<p>There are two versions of the GmailAutoBcc script, one for the old and one for new version of Gmail, both of which you can grab from the <a href="http://jaidev.info/home/hacks/gmailAutoBcc">author&#8217;s site</a>.</p>
<p>Once installed, GmailAutoBcc will ask you for an email address to copy to and after that the script will automatically add that address to the BCC field of all your outgoing messages. There are options to prompt every time you send and a few other tweaks like using CC instead of BCC (in Firefox type about:config in the URL bar and then search for &#8220;gbcc&#8221; to set your preferences).</p>
<p>Perhaps the best of these additional options is the &#8220;MapFromAddress&#8221; setting which allows you to associate the copied address with a particular Gmail identity. In other words, you can copy to different addresses based on the address that you&#8217;re sending from.</p>
<p>When it comes to e-mail You can never have too many backups and GmailAutoBcc makes it easy to fill in the one gap in the common Gmail-as-a-backup solution.</p>
<p>GmailAutoBcc works in any browser that supports <a href="http://greasemonkey.mozdev.org/">Greasemonkey</a>.</p>
<p>[via <a href="http://lifehacker.com/software/featured-greasemonkey-user-script/automatically-bcc-from-gmail-with-gmailautobcc-326169.php">Lifehacker</a>]</p>
<p><strong>See Also:</strong><br/></p>
<ul>
<li><a href="http://blog.wired.com/monkeybites/2007/10/google-adds-ima.html#previouspost">Google Adds IMAP Support To GMail</a></li>
<li><a href="http://blog.wired.com/monkeybites/2007/11/gmail-add-offic.html#previouspost">GMail Adds Official Greasemonkey Support</a></li>
<li><a href="http://blog.wired.com/monkeybites/2007/04/firefox_plugin_.html#previouspost">Firefox Plug-in To Supercharge GMail</a></li>
<li><a href="http://blog.wired.com/monkeybites/2007/10/greasekit-greas.html#previouspost">GreaseKit: Greasemonkey Scripts For Safari And More</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2007/11/how_to_store_messages_sent_with_gmail_on_another_mail_server/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    </channel>
</rss>