<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Posts about Gmail</title>
    <link>http://wiki.futuretoby.com/tag/gmail</link>
    <language>en-us</language>
    <item>
      <title>A Different Approach to Email</title>
      <description>In Tim Ferris' book the Four Hour Work Week he shared the tip of minimizing the number of times you check email in a day. One reason that this approach is beneficial is because it will minimize the distraction from looking at the inbox.&amp;nbsp;&lt;div&gt;&lt;h2&gt;Yes! The Inbox is Distracting&lt;/h2&gt;&lt;div&gt;Let me give you an example. You want to write someone an email. So you open up Gmail(or your mail program of choice). The first thing you see is your inbox. Oh! An old pal just added you on Facebook! Or, oh! Someone sent you a pull request! Your next impulse is to go add your friend on Facebook or to take a look at the pull request: &lt;i&gt;it'd only take a couple of minutes&lt;/i&gt;. If you are someone who can resist that urge, good for you. But I usually can't. And even when I can resist the urge to actually do those things, I usually can't resist thinking about them. Half an hour later, I am usually serving the web or writing an email to someone else and have forgotten what I was doing in the first place.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Maybe the problem is the high level of&amp;nbsp;&lt;i&gt;in-your-face&lt;/i&gt;&amp;nbsp;which the inbox possesses. My first attempt was&amp;nbsp;&lt;a href="http://userscripts.org/scripts/show/103652"&gt;Gmail Peepshow&lt;/a&gt;: a Greasemonkey script that initially blocks the view to your inbox. This solution didn't end up working very well, both because of how hard it is to manipulate the Gmail dom and its inflexibility, as I will explain.&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;h2&gt;Only Check Once A Day&lt;br&gt;&lt;/h2&gt;&lt;div&gt;One solution is to minimize your email checking frequency to say, once a day, as Ferris suggests. For me at least, this works out well most of the time, and keeps me focused. I have turned off push notifications on my phone(if you are hooked on push, you might try doing w/o it again, you might feel liberated), and only check email once a day, and try to take action right away at that sitting.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;h2&gt;But...&lt;/h2&gt;&lt;div&gt;However, there are occasions &amp;nbsp;when the thing you are working on requires you to correspond with someone via email, and worse, because you want to close the loop on the task ASAP, sometimes you want to be quickly notified when the correspondent replies. So, that means repeatedly checking your inbox again.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;It dawned on me that the solution was to separate the urgent correspondents from the rest of your inbox. Even better would be if push notification only notified you if the urgent email comes in. After chatting with my wife about this, she seems to think I can implement this behavior using only Gmail filters, and so I got to work.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;h2&gt;The Solution&lt;br&gt;&lt;/h2&gt;&lt;div&gt;The first thing to do is make a filter rule that removes everything from the inbox except for ones that come from the urgent correspondents.&lt;/div&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; line-height: normal; white-space: normal; word-spacing: 0px; font-size: 13px; border-collapse: collapse; color: rgb(68, 68, 68); -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;-from:{ vip@superimportant.com }&lt;/span&gt;&lt;br&gt;Do this: Skip Inbox&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;This rules says for anything but emails coming from vip@superimportant.com: skip the inbox. If you need to add another correspondent, you can just add them one by one within the {}'s.&lt;/div&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; line-height: normal; white-space: normal; word-spacing: 0px; font-size: 13px; border-collapse: collapse; color: rgb(68, 68, 68); -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;-from:{ vip@superimportant.com vip@alsoimportant.com&amp;nbsp;}&lt;/span&gt;&lt;br&gt;Do this: Skip Inbox&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;What we've done is reserved our inbox only for our VIP's. But now, what about the other unread mail?&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I am going to create a label to simulate a second inbox - the one I check once a day. I will call it @daily (The @ sign is just so it will be sorted to the top). Basically, everything can go into @daily, so my rule could be&lt;/div&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; line-height: normal; white-space: normal; word-spacing: 0px; font-size: 13px; border-collapse: collapse; color: rgb(68, 68, 68); -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;from:(*)&lt;/span&gt;&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; line-height: normal; white-space: normal; word-spacing: 0px; font-size: 13px; border-collapse: collapse; color: rgb(68, 68, 68); -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;&lt;span class="qW" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;Do this: Apply label "@daily"&lt;/span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;div&gt;But, here I could add a rule to filter out the&amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Bacn"&gt;bacn&lt;/a&gt;&amp;nbsp;I get from Delta and Borders, for example&lt;/div&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; line-height: normal; white-space: normal; word-spacing: 0px; font-size: 13px; border-collapse: collapse; color: rgb(68, 68, 68); -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;-from:{&amp;nbsp;e.delta.co&lt;wbr&gt;m e.borders.&lt;wbr&gt;com }&lt;/span&gt;&lt;br&gt;Do this: Apply label "@daily"&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;If I want, I could add yet another rule/label, maybe @weekly, for all the bacn or less important stuff that I might still want to look at at a lower frequency.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;h2&gt;Pros. Cons.&lt;br&gt;&lt;/h2&gt;&lt;div&gt;An advantage to using the main inbox for only the urgent stuff is&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;you will only see the urgent stuff when you open up Gmail - nothing that distracts&lt;/li&gt;&lt;li&gt;you can use push notification on your phone now and only get urgent notifications - for my iPhone, I've turned off the sound for whenever &lt;i&gt;any&lt;/i&gt; mail is received(so I am not distracted), but the little number at the corner of the "Mail" icon shows me the inbox number&amp;nbsp;&lt;img title="Inbox Number" alt="Inbox Number" src="https://lh3.googleusercontent.com/-UhN97_sxStU/Te8IKNFrZgI/AAAAAAAARnQ/P8Y1s0clkfg/s800/Screen%252520shot%2525202011-06-08%252520at%2525201.26.30%252520AM.jpg"&gt;. For Android I hear the integration is even better.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;The only drawback of this approach is that you will have to maintain the "Skip Inbox" filter rule - every time you change who your urgent correspondent(s) is/are, you need to go in and change it. For me, this would be every time I start an urgent task that requires a correspondent, and when I finish that task.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;h2&gt;Conclusion&lt;/h2&gt;&lt;div&gt;I think this is a novel approach to approaching email. But there's no conclusion yet because I have only begun using this. Will blog updates if I learn anything new in the process.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 08 Jun 2011 00:30:53 -0500</pubDate>
      <guid>http://wiki.futuretoby.com/A_Different_Approach_to_Email</guid>
      <author>toby ho</author>
      <link>http://wiki.futuretoby.com/A_Different_Approach_to_Email</link>
    </item>
    <item>
      <title>My Work Mail Filter</title>
      <description>My company recently switched to Google Apps. One of the implications of this is that I can use Gmail's mail filters. Since - like many company - I get a daily plethora of list emails, I thought I'd create a simple rule to filter them down to only the ones that require my attention.&lt;h3&gt;Attempt #1:&lt;br&gt;&lt;/h3&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; line-height: normal; white-space: normal; word-spacing: 0px; border-collapse: collapse; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;-{Toby}&lt;/span&gt;&lt;br&gt;Do this: Skip Inbox&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;This rule says that if the email does not have my name in it anywhere, then skip the Inbox(like Google Search, "-" is the NOT operator).&amp;nbsp;This worked fairly well, but I found that there were some false positives after a week or so of using it. So it needed some tuning up.&lt;/div&gt;&lt;h3&gt;Attempt #2:&lt;br&gt;&lt;/h3&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; line-height: normal; white-space: normal; word-spacing: 0px; border-collapse: collapse; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;to:(-&lt;i&gt;my@company.email&lt;/i&gt;) -{Toby Birthday}&lt;/span&gt;&lt;br&gt;Do this: Skip Inbox&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;I found that once in a while, there'd be a message addressed to me directly, but would not have my name in the message. I fixed this by putting &lt;i&gt;-my@company.email&lt;/i&gt; in the &lt;i&gt;To&lt;/i&gt; field of the filter(replace &lt;i&gt;my@company.email&lt;/i&gt;&amp;nbsp;with your own email). So, this filter will only apply to mail not addressed directly to me - the ones sent to mailing lists, basically.&amp;nbsp;Also, I'd like to be notified of people's birthday, so I added the word &lt;i&gt;Birthday&lt;/i&gt;&amp;nbsp;to the &lt;i&gt;doesn't-have&lt;/i&gt; list.&lt;/div&gt;&lt;h3&gt;Attempt #3:&lt;br&gt;&lt;/h3&gt;&lt;div&gt;Whenever I request support, I always first get a message first that says: &lt;i&gt;Thank you for your support request. &lt;/i&gt;This is pretty uninformative, so I don't need to be alerted to them. So I added the rule:&lt;/div&gt;&lt;pre&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; line-height: normal; white-space: normal; word-spacing: 0px; border-collapse: collapse; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;from:(&lt;i&gt;our@support.email&lt;/i&gt;) Thank you for your support request.&lt;/span&gt;&lt;br&gt;Do this: Skip Inbox&lt;/span&gt;&lt;br&gt;&lt;/pre&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;That's what I've got so far. This post will be updated as I further fine tune my mail filters.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;Update: I found that it's a bad idea to ignore the email HR sends out the the mailing list, so I modified the first rule to let her in:&lt;/i&gt;&lt;/div&gt;&lt;h3&gt;Attempt #4:&lt;/h3&gt;&lt;pre&gt;&lt;meta charset="utf-8"&gt;&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', Verdana, Helvetica, Arial; font-size: 18px; white-space: normal; "&gt;&lt;pre style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0.2em; padding-right: 0.8em; padding-bottom: 0.2em; padding-left: 0.8em; font-family: monospace; font-size: 11px; background-color: rgb(238, 238, 238); "&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; line-height: normal; white-space: normal; word-spacing: 0px; border-collapse: collapse; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Matches:&amp;nbsp;&lt;span class="qW" style="font-weight: bold; "&gt;to:(-&lt;i&gt;my@company.email&lt;/i&gt;) -{Toby Birthday} from:(-hr@company.email}&lt;/span&gt;&lt;br&gt;Do this: Skip Inbox&lt;/span&gt;&lt;/pre&gt;&lt;/span&gt;&lt;/pre&gt;&lt;div&gt;&lt;i&gt;&lt;br&gt;&lt;/i&gt;&lt;/div&gt;</description>
      <pubDate>Tue, 09 Mar 2010 12:14:06 -0600</pubDate>
      <guid>http://wiki.futuretoby.com/My_Work_Mail_Filter</guid>
      <author>toby ho</author>
      <link>http://wiki.futuretoby.com/My_Work_Mail_Filter</link>
    </item>
  </channel>
</rss>

