{"id":1387,"date":"2009-03-17T09:00:20","date_gmt":"2009-03-17T09:00:20","guid":{"rendered":"http:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm"},"modified":"2009-03-17T09:00:46","modified_gmt":"2009-03-17T09:00:46","slug":"archive-google-mail-to-a-mac-using-getmail","status":"publish","type":"post","link":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm","title":{"rendered":"Archive Google Mail to a Mac using getmail"},"content":{"rendered":"<p>Late last year <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2008\/12\/are-web-services-really-the-right-answer-for-small-business-it.htm\">I questioned the wisdom of trusting critical data to the cloud<\/a> and cited Google Mail as an example.  Whilst the Google Mail service is generally reliable, <a href=\"http:\/\/www.techcrunch.com\/2006\/12\/28\/gmail-disaster-reports-of-mass-email-deletions\/\">there have been some well-publicised instances of failure (including data loss)<\/a>.  I shouldn&#8217;t be too alarmed by that &#8211; for many things in life <a href=\"http:\/\/www.nytimes.com\/2008\/10\/05\/business\/05digi.html\">you get what you pay for and I pay Google precisely nothing<\/a> (although they do get to build up a pretty good profile of my interests against which to target advertising&#8230;).  So, dusting off the motto from my <a href=\"http:\/\/scouts.org.uk\/\">Scouting<\/a> days (&#8220;Be Prepared&#8221;), I set about creating a regular backup of my Google Apps mail &#8211; just in case it ever ceased to exist!<\/p>\n<p>I already use the Apple Mail application (mail.app) for IMAP access but I have some concerns about mail.app &#8211; it&#8217;s failed to send messages (and not stored a draft either) on at least two occasions and basically I don&#8217;t trust it!  But using Mac OS X (derived from <a href=\"http:\/\/www.bsd.org\/\">BSD Unix<\/a>) means that I also have access to various Unix tools (e.g. <a href=\"http:\/\/pyropus.ca\/software\/getmail\/\"><code>getmail<\/code><\/a>) and that means I can take a copy of my Google Mail and store it in <a href=\"http:\/\/cr.yp.to\/proto\/maildir.html\">maildir<\/a> or <a href=\"http:\/\/homepages.tesco.net.\/~J.deBoynePollard\/FGA\/mail-mbox-formats.html\">mbox<\/a> format for later retrieval, on a schedule that I set.<\/p>\n<p>The first step is to install some Unix tools on the Mac.  I chose <a href=\"http:\/\/darwinports.com\/\">DarwinPorts<\/a> (also known as <a href=\"http:\/\/www.macports.org\/\">MacPorts<\/a>).  After running the 1.7.0 installer, I fired up a terminal and entered the following commands:<\/p>\n<p><code>su - Administrator<br \/>\ncd \/opt\/local\/bin<br \/>\nsudo .\/port -d selfupdate<\/code><\/p>\n<p>This told me that my installation of MacPorts was already current, so set about installing the <a href=\"http:\/\/getmail.darwinports.com\/\">getmail port<\/a>:<\/p>\n<p><code>sudo .\/port install getmail<\/code><\/p>\n<p>The beauty of this process is that it also installed all the prerequisite packages (<a href=\"http:\/\/expat.darwinports.com\/\">expat<\/a>, <a href=\"http:\/\/gperf.darwinports.com\/\">gperf<\/a>, <a href=\"http:\/\/libiconv.darwinports.com\/\">libiconv<\/a>, <a href=\"http:\/\/ncursesw.darwinports.com\/\">ncursesw<\/a>, <a href=\"http:\/\/ncurses.darwinports.com\/\">ncurses<\/a>, <a href=\"http:\/\/gettext.darwinports.com\/\">gettext<\/a> and <a href=\"http:\/\/python25.darwinports.com\/\">python25<\/a>).  Having installed getmail, I followed <a href=\"http:\/\/georgedonnelly.com\/unix\/how-to-quickly-set-up-a-daily-backup-of-your-gmail-account\">George Donnelly&#8217;s advice<\/a> to create a hidden folder for getmail scripts and a maildir folder for my GmailArchive &#8211; both inside my home directory:<\/p>\n<p><code>mkdir ~\/.getmail<br \/>\nmkdir ~\/GmailArchive\/ ~\/GmailArchive\/new ~\/GmailArchive\/tmp ~\/GmailArchive\/cur<\/code><\/p>\n<p>I then created and edited a getmail configuration file at ~\/.getmail\/getmailrc.mygmailaccount) and entering the following settings:<\/p>\n<p><code>[retriever]<br \/>\ntype = SimpleIMAPSSLRetriever<br \/>\nserver = imap.gmail.com<br \/>\nusername = <em>googleaccountname<\/em><br \/>\npassword = <em>googleaccountpassword<\/em><\/p>\n<p>[destination]<br \/>\ntype = Maildir<br \/>\npath = ~\/GmailArchive\/<\/p>\n<p>[options]<br \/>\nverbose = 2<br \/>\nreceived = false<br \/>\ndelivered_to = false<br \/>\nmessage_log = ~\/.getmail\/gmail.log<\/code><\/p>\n<p>I tested this by running:<\/p>\n<p><code>\/opt\/local\/bin\/getmail -ln --rcfile getmailrc.gmailarchive<\/code><\/p>\n<p>but was presented with an error message:<\/p>\n<p><em>Configuration error: SSL not supported by this installation of Python<\/em><\/p>\n<p>That was solved by running:<\/p>\n<p><code>sudo .\/port install py25-socket-ssl<\/code><\/p>\n<p>(which installed <a href=\"http:\/\/zlib.darwinports.com\/\">zlib<\/a>, <a href=\"http:\/\/openssl.darwinports.com\/\">openssl<\/a> and <a href=\"http:\/\/py25-socket-ssl.darwinports.com\/\">py25-socket-ssl<\/a>), after which I could re-run the getmail command and watch as my terminal session was filled with messages being downloaded (and the folder at ~\/GmailArchive\/new started to fill up).  Then I saw a problem &#8211; even though I have a few thousand messages, I noticed that getmail was only ever downloading the contents of my Inbox.<\/p>\n<p>Eventually, I solved this by adding the following line to the <code>[retriever]<\/code> section of the getmail configuration file:<\/p>\n<p><code>mailboxes = (\"[Google Mail]\/All Mail\",)<\/code><\/p>\n<p>This took a while to work out because many blog posts on the subject suggest that the mailbox name will include <code>[GMail]<\/code> but I found I needed to use <code>[Google Mail]<\/code> (I guess that could be the difference between GMail and the Google Mail service provided as part of Google Apps).  After making the change I was able to download a few thousand messages, although it took a few tries (the good news is that getmail will skip messages it has already retrieved).  Strangely, although the Google Mail web interface says that there are 3268 items in my All Mail folder, getmail finds 5320 (and, thankfully, doesn&#8217;t seem to include the spam, which would only account for 1012 of the difference anyway).<\/p>\n<p>In addition, the <a href=\"http:\/\/pyropus.ca\/software\/getmail\/configuration.html#retriever-simpleimapssl\">getmail help text explains that multiple mailboxes may be selected<\/a> by adding to the <a href=\"http:\/\/pyropus.ca\/software\/getmail\/configuration.html#parameter-tuplestrings\">tuple of quoted strings<\/a> but, if there is just a single value, a trailing comma is required.<\/p>\n<p>Having tested manual mail retrieval, I set up a <code>cron<\/code> job to retrieve mail on a schedule.  Daily would have been fine for backup purposes but I could also schedule a more frequent job to pull updates every few minutes:<\/p>\n<p><code>crontab -e<\/code><\/p>\n<p>launched <code>vim<\/code> to edit the cron table and I added the following line:<\/p>\n<p><code>4,14,24,34,44,54 * * * * \/opt\/local\/bin\/getmail -ln --rcfile getmailrc.gmailarchive<\/code><\/p>\n<p>I then opened up a terminal window and (because running lots of terminal windows makes me feel like a real geek) ran:<\/p>\n<p><code>tail -f ~\/.getmail\/gmail.log<\/code><\/p>\n<p>to watch as messages were automatically downloaded every 10 minutes at 4, 14, 24, 34, 44, and 54 minutes past the hour.<\/p>\n<p>This also means that I get 6 messages an hour in my the local system mailbox (\/var\/mail\/<em>username<\/em>) to tell me how the cron job ran so I chose to <a href=\"http:\/\/www.adminschoice.com\/docs\/crontab.htm#Disable Email\">disable e-mail alerting for the cron job<\/a> by appending <code>&gt;\/dev\/null 2&gt;&amp;1<\/code> to the crontab entry.<\/p>\n<p>Many of the posts on this subject suggest using POP to download the mail, but Google limits POP transfers so it will require multiple downloads.  <a href=\"http:\/\/b.pengdeng.com\/2008\/03\/backup-gmail-via-imap-using-getmail_16.html\">Peng.u.i.n writes that IMAP should help to alleviate this<\/a> (although that wasn&#8217;t my experience).  He also suggests using several mbox files (instead of a single mbox file or a maildir) to backup mail (e.g. one file per calendar quarter) and <a href=\"http:\/\/www.mattcutts.com\/blog\/backup-gmail-in-linux-with-getmail\/\">Matt Cutts suggests backing up to mbox and maildir formats simultaneously<\/a>:<\/p>\n<p><code>[destination]<br \/>\ntype = MultiDestination<br \/>\ndestinations = (\u00e2\u20ac\u2122[mboxrd-destination]\u00e2\u20ac\u02dc, \u00e2\u20ac\u02dc[maildir-destination]\u00e2\u20ac\u02dc)<\/p>\n<p>[mboxrd-destination]<br \/>\ntype = Mboxrd<br \/>\npath = ~\/GmailArchive.mbox<\/p>\n<p>[maildir-destination]<br \/>\ntype = Maildir<br \/>\npath = ~\/GmailArchive\/<\/code><\/p>\n<p>If you do decide to use a mbox file, then it will need to be created first using:<\/p>\n<p><code>touch ~\/GmailArchive.mbox<\/code><\/p>\n<p>In <a href=\"http:\/\/www.latko.org\/2009\/02\/25\/pulling-mail-out-of-gmail-and-retain-your-labels\/\">Chris Latko&#8217;s post on pulling mail out of Gmail and retaining the labels<\/a>, he describes some extra steps, noteably that the timestamps on mail are replaced with the time it was archived, so he has a PHP script to read each message and restore the original modification time.<\/p>\n<p>Aside from the MacPorts installation, the process is the same on a Unix\/Linux machine and, for Windows users, <a href=\"http:\/\/lifehacker.com\/software\/gmail\/geek-to-live--back-up-gmail-with-fetchmail-235207.php\">Gina Trapani has written about backing up GMail using fetchmail<\/a> with <a href=\"http:\/\/www.cygwin.com\/\">Cygwin<\/a> as the platform.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Late last year I questioned the wisdom of trusting critical data to the cloud and cited Google Mail as an example. Whilst the Google Mail service is generally reliable, there have been some well-publicised instances of failure (including data loss). I shouldn&#8217;t be too alarmed by that &#8211; for many things in life you get &hellip; <a href=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Archive Google Mail to a Mac using getmail<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[],"tags":[35,8,79,39],"class_list":["post-1387","post","type-post","status-publish","format-standard","hentry","tag-mac-os-x","tag-e-mail","tag-google","tag-useful-software"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Archive Google Mail to a Mac using getmail - markwilson.it<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Archive Google Mail to a Mac using getmail - markwilson.it\" \/>\n<meta property=\"og:description\" content=\"Late last year I questioned the wisdom of trusting critical data to the cloud and cited Google Mail as an example. Whilst the Google Mail service is generally reliable, there have been some well-publicised instances of failure (including data loss). I shouldn&#8217;t be too alarmed by that &#8211; for many things in life you get &hellip; Continue reading Archive Google Mail to a Mac using getmail\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm\" \/>\n<meta property=\"og:site_name\" content=\"markwilson.it\" \/>\n<meta property=\"article:published_time\" content=\"2009-03-17T09:00:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2009-03-17T09:00:46+00:00\" \/>\n<meta name=\"author\" content=\"Mark Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:site\" content=\"@markwilsonit\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm\"},\"author\":{\"name\":\"Mark Wilson\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"headline\":\"Archive Google Mail to a Mac using getmail\",\"datePublished\":\"2009-03-17T09:00:20+00:00\",\"dateModified\":\"2009-03-17T09:00:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm\"},\"wordCount\":914,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"keywords\":[\"Apple Mac OS X\",\"E-mail\",\"Google\",\"Useful Software\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm\",\"name\":\"Archive Google Mail to a Mac using getmail - markwilson.it\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\"},\"datePublished\":\"2009-03-17T09:00:20+00:00\",\"dateModified\":\"2009-03-17T09:00:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/2009\\\/03\\\/archive-google-mail-to-a-mac-using-getmail.htm#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Archive Google Mail to a Mac using getmail\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/\",\"name\":\"markwilson.it\",\"description\":\"get-info -class technology | write-output &gt; \\\/dev\\\/web\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/#\\\/schema\\\/person\\\/98f61365e7c39d6be942174b8c4de468\",\"name\":\"Mark Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\",\"width\":800,\"height\":800,\"caption\":\"Mark Wilson\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/www.markwilson.co.uk\\\/blog\\\/uploads\\\/image-4.png?fit=800%2C800&ssl=1\"},\"description\":\"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.\",\"sameAs\":[\"http:\\\/\\\/www.markwilson.co.uk\\\/\",\"https:\\\/\\\/www.instagram.com\\\/markwilsonuk\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/markawilson\\\/\",\"https:\\\/\\\/x.com\\\/markwilsonit\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCWHlZCoHRTocdvtrOJ2IL4A\"],\"url\":\"https:\\\/\\\/www.markwilson.co.uk\\\/blog\\\/author\\\/mark-wilson\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Archive Google Mail to a Mac using getmail - markwilson.it","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm","og_locale":"en_GB","og_type":"article","og_title":"Archive Google Mail to a Mac using getmail - markwilson.it","og_description":"Late last year I questioned the wisdom of trusting critical data to the cloud and cited Google Mail as an example. Whilst the Google Mail service is generally reliable, there have been some well-publicised instances of failure (including data loss). I shouldn&#8217;t be too alarmed by that &#8211; for many things in life you get &hellip; Continue reading Archive Google Mail to a Mac using getmail","og_url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm","og_site_name":"markwilson.it","article_published_time":"2009-03-17T09:00:20+00:00","article_modified_time":"2009-03-17T09:00:46+00:00","author":"Mark Wilson","twitter_card":"summary_large_image","twitter_creator":"@markwilsonit","twitter_site":"@markwilsonit","twitter_misc":{"Written by":"Mark Wilson","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm#article","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm"},"author":{"name":"Mark Wilson","@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"headline":"Archive Google Mail to a Mac using getmail","datePublished":"2009-03-17T09:00:20+00:00","dateModified":"2009-03-17T09:00:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm"},"wordCount":914,"commentCount":8,"publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"keywords":["Apple Mac OS X","E-mail","Google","Useful Software"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm","url":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm","name":"Archive Google Mail to a Mac using getmail - markwilson.it","isPartOf":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#website"},"datePublished":"2009-03-17T09:00:20+00:00","dateModified":"2009-03-17T09:00:46+00:00","breadcrumb":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.markwilson.co.uk\/blog\/2009\/03\/archive-google-mail-to-a-mac-using-getmail.htm#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.markwilson.co.uk\/blog"},{"@type":"ListItem","position":2,"name":"Archive Google Mail to a Mac using getmail"}]},{"@type":"WebSite","@id":"https:\/\/www.markwilson.co.uk\/blog\/#website","url":"https:\/\/www.markwilson.co.uk\/blog\/","name":"markwilson.it","description":"get-info -class technology | write-output &gt; \/dev\/web","publisher":{"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.markwilson.co.uk\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/www.markwilson.co.uk\/blog\/#\/schema\/person\/98f61365e7c39d6be942174b8c4de468","name":"Mark Wilson","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","url":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1","width":800,"height":800,"caption":"Mark Wilson"},"logo":{"@id":"https:\/\/i0.wp.com\/www.markwilson.co.uk\/blog\/uploads\/image-4.png?fit=800%2C800&ssl=1"},"description":"A Chartered IT Professional, with recent experience in technology leadership, IT strategy and practice management roles, Mark Wilson is an Enterprise Architect in the Advisory and Management Group at risual. During a career spanning more than two decades, Mark has gained widespread recognition as an expert in his field including both industry and national press exposure. In addition to certifications from Microsoft, VMware, Red Hat, The Open Group and Axelos, Mark held a Microsoft Most Valuable Professional (MVP) award for three years and is now part of the MVP Reconnect programme. Mark is also well-known on social media and maintains an award-winning blog.","sameAs":["http:\/\/www.markwilson.co.uk\/","https:\/\/www.instagram.com\/markwilsonuk\/","https:\/\/www.linkedin.com\/in\/markawilson\/","https:\/\/x.com\/markwilsonit","https:\/\/www.youtube.com\/channel\/UCWHlZCoHRTocdvtrOJ2IL4A"],"url":"https:\/\/www.markwilson.co.uk\/blog\/author\/mark-wilson"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":1181,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/09\/using-google-apps-for-e-mail-and-contact-management.htm","url_meta":{"origin":1387,"position":0},"title":"Using Google Apps for e-mail and contact management","author":"Mark Wilson","date":"Monday 15 September 2008","format":false,"excerpt":"A couple of weeks back, I wrote about how I'd switched a big chunk of my home\/small business IT to Google Apps and was using it as part of a solution to keep my work and personal calendars separate, but in sync. Calendar is all very well, but e-mail is\u2026","rel":"","context":"In \"E-mail\"","block_context":{"text":"E-mail","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/e-mail"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1176,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/09\/creating-html-signatures-in-apple-mail.htm","url_meta":{"origin":1387,"position":1},"title":"Creating HTML signatures in Apple Mail","author":"Mark Wilson","date":"Monday 1 September 2008","format":false,"excerpt":"I recently switched my e-mail service from my own server to Google Apps. I'll write more about the move (and the reasons behind it) in a separate post but, as a consequence, I've also started using the Apple Mail application to access my GMail over IMAP. On the whole, Apple\u2026","rel":"","context":"In \"Apple Mac OS X\"","block_context":{"text":"Apple Mac OS X","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/mac-os-x"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1313,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/12\/are-web-services-really-the-right-answer-for-small-business-it.htm","url_meta":{"origin":1387,"position":2},"title":"Are web services really the right answer for small business IT?","author":"Mark Wilson","date":"Friday 12 December 2008","format":false,"excerpt":"A few months ago I moved my home\/small business IT to Google Apps. After a few years of running my own servers, it was a big step for me to trust someone else to run it for me but it seems to be working OK... up to a point. You\u2026","rel":"","context":"In \"Google\"","block_context":{"text":"Google","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/google"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1210,"url":"https:\/\/www.markwilson.co.uk\/blog\/2011\/05\/migrating-mail-and-contacts-from-google-mail-to-office-365.htm","url_meta":{"origin":1387,"position":3},"title":"Migrating mail and contacts from Google Mail to Office 365","author":"Mark Wilson","date":"Tuesday 17 May 2011","format":false,"excerpt":"I started to write this post in September 2008, when it was titled \"Importing legacy e-mail to my Google Apps account\". A few years on and I'm in the process of dumping Google Apps in favour of Microsoft Office 365 (if only Microsoft had a suitable offering back then, I\u2026","rel":"","context":"In \"Microsoft Office 365\"","block_context":{"text":"Microsoft Office 365","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/office-365"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1283,"url":"https:\/\/www.markwilson.co.uk\/blog\/2008\/11\/why-using-an-iphone-with-multiple-mail-accounts-is-not-as-simple-as-it-should-be.htm","url_meta":{"origin":1387,"position":4},"title":"Why using an iPhone with multiple mail accounts is not as simple as it should be","author":"Mark Wilson","date":"Wednesday 12 November 2008","format":false,"excerpt":"Whilst balancing childcare duties with work commitments last week, I was working some pretty irregular hours but wanted to keep tabs on my e-mail - so I connected my iPhone to the Exchange Server at work. Nothing unremarkable there - iPhone v2.0 software includes Microsoft ActiveSync support and it worked\u2026","rel":"","context":"In \"Apple iPhone\"","block_context":{"text":"Apple iPhone","link":"https:\/\/www.markwilson.co.uk\/blog\/tag\/iphone"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3021,"url":"https:\/\/www.markwilson.co.uk\/blog\/2011\/09\/unable-to-send-mail-in-outlook-web-app-using-google-chrome.htm","url_meta":{"origin":1387,"position":5},"title":"Unable to send mail in Outlook Web App using Google Chrome","author":"Mark Wilson","date":"Thursday 15 September 2011","format":false,"excerpt":"For the last few days, I\u2019ve been getting frustrated with my Office 365 Outlook Web App in Google Chrome. Microsoft has worked to ensure that the latest web apps work well in other popular \u00a0browsers but each time I replied to an email, the message would not send. The URL\u2026","rel":"","context":"In &quot;Technology&quot;","block_context":{"text":"Technology","link":"https:\/\/www.markwilson.co.uk\/blog\/topic\/technology"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/1387","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=1387"}],"version-history":[{"count":0,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/posts\/1387\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=1387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=1387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.markwilson.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=1387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}