<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Mail – Yeri Tiete</title>
    <link>https://yeri.be/tag/mail/</link>
    <description>Yeri Tiete&#39;s blog</description>
    <language>en</language>
    <copyright>© Yeri Tiete</copyright>
    <lastBuildDate>Sun, 13 Nov 2022 23:19:45 +0100</lastBuildDate>
    <atom:link href="https://yeri.be/tag/mail/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Mastodon server: email</title>
      <link>https://yeri.be/mastodon-server-email/</link>
      <pubDate>Sun, 13 Nov 2022 23:19:45 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/mastodon-server-email/</guid><enclosure url="https://static.yeri.be/2022/11/mastodon-mail.jpg" length="0" type="image/jpeg" />
      <description>&lt;p&gt;Always a hassle to get mail delivery to work. &lt;/p&gt;&#xA;&lt;pre class=&#34;wp-block-verse&#34;&gt;Had a similar problem with a VoIP (&lt;a href=&#34;https://developer.vonage.com/&#34; target=&#34;_blank&#34; rel=&#34;noreferrer noopener&#34;&gt;Nexmo&lt;/a&gt; SMS/call forwarding) tool that just refused to work using local mail servers without a valid cert. Gave up and started using Mailgun. &lt;/pre&gt;&#xA;&lt;p&gt;Long story short: use something like Mailgun or another provider. &lt;/p&gt;&#xA;&lt;p&gt;Using localhost SMTP server support seems to be limited if you don&#39;t have working certs. &lt;a rel=&#34;noreferrer noopener&#34; href=&#34;https://docs.joinmastodon.org/admin/config/#email&#34; target=&#34;_blank&#34;&gt;The documentation&lt;/a&gt; is also lacking as to what does what. Didn&#39;t figure out how to have it ignore SSL. &lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2022/11/mastodon-mail.jpg" alt="Mastodon server: email"></p><p>Always a hassle to get mail delivery to work. </p>
<pre class="wp-block-verse">Had a similar problem with a VoIP (<a href="https://developer.vonage.com/" target="_blank" rel="noreferrer noopener">Nexmo</a> SMS/call forwarding) tool that just refused to work using local mail servers without a valid cert. Gave up and started using Mailgun. </pre>
<p>Long story short: use something like Mailgun or another provider. </p>
<p>Using localhost SMTP server support seems to be limited if you don't have working certs. <a rel="noreferrer noopener" href="https://docs.joinmastodon.org/admin/config/#email" target="_blank">The documentation</a> is also lacking as to what does what. Didn't figure out how to have it ignore SSL. </p>
<p>This is what worked for me, using Mailgun server:</p>
<pre class="wp-block-code"><code>SMTP_SERVER=smtp.eu.mailgun.org
SMTP_PORT=465
SMTP_LOGIN=mastodon@your.domain
SMTP_PASSWORD=some-password
SMTP_FROM_ADDRESS=you@anything.com
SMTP_DELIVERY_METHOD=smtp
SMTP_SSL=true
SMTP_ENABLE_STARTTLS_AUTO=false
SMTP_AUTH_METHOD=plain
SMTP_OPENSSL_VERIFY_MODE=none</code></pre>
<p>And it looks like I'm <a href="https://peterbabic.dev/blog/setting-up-smtp-in-mastodon/" target="_blank" rel="noreferrer noopener">not the only one</a> struggling.</p>
]]></content:encoded>
      <category>linux</category><category>software</category>
      <category>fediverse</category><category>mail</category><category>mastodon</category>
    </item>
    
    <item>
      <title>Postfix &amp; Courier &amp; Letsencrypt</title>
      <link>https://yeri.be/postfix-courier-letsencrypt/</link>
      <pubDate>Sun, 12 Jun 2016 13:35:10 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/postfix-courier-letsencrypt/</guid>
      <description>&lt;p&gt;First of all, &lt;a href=&#34;https://letsencrypt.org/getting-started/&#34; target=&#34;_blank&#34;&gt;create&lt;/a&gt; your certificates (the regular way). I created one with multiple domains: webmail.rootspirit.com, mail.rootspirit.com, smtp.rootspirit.com.&lt;/p&gt;&#xA;&lt;p&gt;In &lt;a href=&#34;http://rootspirit.com/&#34; target=&#34;_blank&#34;&gt;my case&lt;/a&gt;, as the mailserver and webserver are behind a proxy (postfix, imap, Roundcube Webmail), I create the certificate on the proxy (nginx) and scp the cert to the mail server. All this is automated with a tiny script.&lt;/p&gt;&#xA;&lt;p&gt;For Postfix, edit &lt;code&gt;main.cf&lt;/code&gt; and change/edit/add these lines (check the right path too!):&lt;/p&gt;&#xA;&lt;pre&gt;smtpd_use_tls = yes&#xA;smtpd_tls_key_file = /etc/ssl/letsencrypt/webmail.privkey.pem&#xA;smtpd_tls_cert_file = /etc/ssl/letsencrypt/webmail.fullchain.pem&#xA;smtpd_tls_received_header = yes&#xA;smtpd_tls_session_cache_timeout = 3600s&#xA;tls_random_exchange_name = /var/run/prng_exch&#xA;tls_random_source = dev:/dev/urandom&#xA;smtpd_tls_exclude_ciphers = aNULL, eNULL, EXPORT, DES, RC4, MD5, PSK, aECDH, EDH-DSS-DES-CBC3-SHA, EDH-RSA-DES-CDB3-SHA, KRB5-DES, CBC3-SHA&#xA;smtpd_tls_dh1024_param_file = /etc/ssl/postfix/dhparams.pem&#xA;smtpd_tls_auth_only = yes&#xA;smtp_tls_security_level = may&#xA;smtpd_use_tls=yes&#xA;smtpd_tls_security_level=may&#xA;smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache&#xA;smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache&#xA;smtpd_tls_loglevel=1&#xA;smtp_tls_loglevel=1&lt;/pre&gt;&#xA;&lt;p&gt;And restart postfix: &lt;code&gt;/etc/init.d/postfix restart&lt;/code&gt;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>First of all, <a href="https://letsencrypt.org/getting-started/" target="_blank">create</a> your certificates (the regular way). I created one with multiple domains: webmail.rootspirit.com, mail.rootspirit.com, smtp.rootspirit.com.</p>
<p>In <a href="http://rootspirit.com/" target="_blank">my case</a>, as the mailserver and webserver are behind a proxy (postfix, imap, Roundcube Webmail), I create the certificate on the proxy (nginx) and scp the cert to the mail server. All this is automated with a tiny script.</p>
<p>For Postfix, edit <code>main.cf</code> and change/edit/add these lines (check the right path too!):</p>
<pre>smtpd_use_tls = yes
smtpd_tls_key_file = /etc/ssl/letsencrypt/webmail.privkey.pem
smtpd_tls_cert_file = /etc/ssl/letsencrypt/webmail.fullchain.pem
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_exchange_name = /var/run/prng_exch
tls_random_source = dev:/dev/urandom
smtpd_tls_exclude_ciphers = aNULL, eNULL, EXPORT, DES, RC4, MD5, PSK, aECDH, EDH-DSS-DES-CBC3-SHA, EDH-RSA-DES-CDB3-SHA, KRB5-DES, CBC3-SHA
smtpd_tls_dh1024_param_file = /etc/ssl/postfix/dhparams.pem
smtpd_tls_auth_only = yes
smtp_tls_security_level = may
smtpd_use_tls=yes
smtpd_tls_security_level=may
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtpd_tls_loglevel=1
smtp_tls_loglevel=1</pre>
<p>And restart postfix: <code>/etc/init.d/postfix restart</code></p>
<p>As for Courier you&rsquo;ll need to concatenate the files (again, check the path, it&rsquo;s most likely <code>/etc/letsencrypt/live/domain/xyz.pem</code>):</p>
<p><code>cat /etc/ssl/letsencrypt/webmail.privkey.pem /etc/ssl/letsencrypt/webmail.fullchain.pem &gt; /etc/ssl/letsencrypt/webmail.all.pem</code></p>
<p>Then edit both <code>/etc/courier/pop3d-ssl</code> and <code>/etc/courier/imapd-ssl</code></p>
<p>And add/change the path of the certificate:</p>
<p><code>TLS_CERTFILE=/etc/ssl/letsencrypt/webmail.all.pem</code></p>
<p>And restart Courier: <code>/etc/init.d/courier-imap-ssl restart &amp;&amp; /etc/init.d/courier-pop-ssl restart</code></p>
]]></content:encoded>
      <category>linux</category><category>networking</category><category>software</category><category>www</category>
      <category>encryption</category><category>mail</category><category>rootspirit</category><category>ssl</category>
    </item>
    
    <item>
      <title>Postfix delete mails from/to one address</title>
      <link>https://yeri.be/postfix-delete-mails-fromto-one-address/</link>
      <pubDate>Fri, 25 Mar 2016 17:41:34 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/postfix-delete-mails-fromto-one-address/</guid><enclosure url="https://static.yeri.be/2016/03/mail-machine.jpg" length="0" type="image/jpeg" />
      <description>&lt;p&gt;Monit suddenly sending 18.000 e-mail? Gmail blocking your mx IP &amp;amp; getting all other incoming emails to your Gmail account (as it&#39;s getting forwarded to Gmail) delayed?&lt;/p&gt;&#xA;&lt;p&gt;Have no fear...&lt;/p&gt;&#xA;&lt;p&gt;&lt;code&gt;mailq | grep monit@hawk-62e9e0.botnet.corp.flatturtle.com | cut -d&#39; &#39; -f1 | xargs -rn1 postsuper -d&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;Edit the e-mail address.&lt;/p&gt;&#xA;&lt;p&gt;Note: mainly a reminder for myself. ;)&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://static.yeri.be/2016/03/mail-machine.jpg" alt="Postfix delete mails from/to one address"></p><p>Monit suddenly sending 18.000 e-mail? Gmail blocking your mx IP &amp; getting all other incoming emails to your Gmail account (as it's getting forwarded to Gmail) delayed?</p>
<p>Have no fear...</p>
<p><code>mailq | grep monit@hawk-62e9e0.botnet.corp.flatturtle.com | cut -d' ' -f1 | xargs -rn1 postsuper -d</code></p>
<p>Edit the e-mail address.</p>
<p>Note: mainly a reminder for myself. ;)</p>
]]></content:encoded>
      <category>google</category><category>linux</category><category>networking</category>
      <category>mail</category>
    </item>
    
    <item>
      <title>Courier IMAP and auto deleting trash after 7 days</title>
      <link>https://yeri.be/courier-imap-and-auto-deleting-trash-after-7-days/</link>
      <pubDate>Tue, 03 Feb 2015 11:53:20 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/courier-imap-and-auto-deleting-trash-after-7-days/</guid>
      <description>&lt;p&gt;E-mails that had been deleted for over 7 days were automatically removed from the IMAP server. E-mail date was ignored (ie the mail could have been from 2010; the actual time in &amp;ldquo;Trash&amp;rdquo; counted). This didn&amp;rsquo;t happen to other folders (Sent, Archive, Spam). This recently happened and hadn&amp;rsquo;t happened before.&lt;/p&gt;&#xA;&lt;p&gt;I had to restore my trash folder from backups every 7 days (yay for &lt;a href=&#34;http://www.nongnu.org/rdiff-backup/&#34; target=&#34;_blank&#34;&gt;rdiff-backup&lt;/a&gt;).&lt;/p&gt;&#xA;&lt;p&gt;It took me a while to figure it out&amp;hellip; The problem first appeared in October, right after several big changes:&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>E-mails that had been deleted for over 7 days were automatically removed from the IMAP server. E-mail date was ignored (ie the mail could have been from 2010; the actual time in &ldquo;Trash&rdquo; counted). This didn&rsquo;t happen to other folders (Sent, Archive, Spam). This recently happened and hadn&rsquo;t happened before.</p>
<p>I had to restore my trash folder from backups every 7 days (yay for <a href="http://www.nongnu.org/rdiff-backup/" target="_blank">rdiff-backup</a>).</p>
<p>It took me a while to figure it out&hellip; The problem first appeared in October, right after several big changes:</p>
<ul>
	<li>Yosemite update</li>
	<li>Airmail to <a href="http://airmailapp.com/" target="_blank">Airmail 2</a> update (I was <a href="https://twitter.com/Tuinslak/status/543457760525180929" target="_blank">convinced this was the root cause</a>, looking at my clients instead of the server)</li>
	<li>Android 5.0.x</li>
	<li>Android Email app sunset, changes to GMail app</li>
	<li>IPv6 working decently at home after updating my <a href="https://yeri.be/connect-different-lans-over-openvpn">RPi</a> to <a href="http://en.avm.de/" target="_blank">Fritzbox</a> devices.</li>
	<li>Random connection errors in GMail app (this was due to misconfigured DNS in the GMail app and causing IPv6 catch all to redirect to the webserver instead of the mailserver. It didn't happen consistently because over mobile (4G &amp; lower) there is no IPv6 and at home is randomly falls back to IPv4 as well. IPv4 DNS was well configured.</li>
	<li>Moving my ~100.000 deleted e-mails from "Deleted Items" (OS X Mail default) to "Trash" (Android &amp; Courier default) to stop having to move them manually from one folder to the other every so often. =&gt; this was eventually the cause but I didn't realize.</li>
</ul>
Being convinced it was most likely Airmail 2 and very maybe Android I had been looking in that direction.
<p>Debugging was also extremely slow as I had to wait 7 days before being able to check if the changes I made helped anything.</p>
<p>I eventually figured out that it was not Airmail when I rebuild my whole mail database and it defaulted back to putting my deleted mails into the Archive folder instead of Trash. Archive mails were kept over 7 days, but items in Trash still removed.</p>
<p>That&rsquo;s when I started looking at Courier IMAP config: <code>/etc/courier/imapd</code> (and not <code>imapd-ssl</code>).</p>
<p>There&rsquo;s an option that says:</p>
<pre>##NAME: IMAP_EMPTYTRASH:0
#
# The following setting is optional, and causes messages from the given
# folder to be automatically deleted after the given number of days.
# IMAP_EMPTYTRASH is a comma-separated list of folder:days.  The default
# setting, below, purges 7 day old messages from the Trash folder.
# Another useful setting would be:
#  
# IMAP_EMPTYTRASH=Trash:7,Sent:30
#
# This would also delete messages from the Sent folder (presumably copies
# of sent mail) after 30 days.  This is a global setting that is applied to
# every mail account, and is probably useful in a controlled, corporate
# environment.
#
# Important: the purging is controlled by CTIME, not MTIME (the file time
# as shown by ls).  It is perfectly ordinary to see stuff in Trash that's
# a year old.  That's the file modification time, MTIME, that's displayed.
# This is generally when the message was originally delivered to this
# mailbox.  Purging is controlled by a different timestamp, CTIME, which is
# changed when the file is moved to the Trash folder (and at other times too).
#
# You might want to disable this setting in certain situations - it results
# in a stat() of every file in each folder, at login and logout.
#
IMAP_EMPTYTRASH=Trash:7</pre>
<p>Comment out that last line, and restart courier-imap(-ssl)&hellip; Simple as that.</p>
<p>This solved my issue.</p>
<p>I&rsquo;m not sure when that config change happened (Debian update?) and I do not know who at Courier thought it was a good idea &hellip;. But sheesh.</p>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>linux</category><category>networking</category><category>software</category>
      <category>gmail</category><category>imap</category><category>mac os x</category><category>mail</category>
    </item>
    
    <item>
      <title>Postfix &#43; maildrop &#43; recipient_delimiter</title>
      <link>https://yeri.be/postfix-maildrop-recipient_delimiter/</link>
      <pubDate>Wed, 17 Apr 2013 15:24:43 +0200</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/postfix-maildrop-recipient_delimiter/</guid>
      <description>&lt;p&gt;I suddenly noticed issues with Postfix not accepting e-mails that are tagged (&amp;ldquo;user+TAG@fqdn&amp;rdquo;) anymore. Even though it always had.&lt;/p&gt;&#xA;&lt;p&gt;Postfix main.cfg:&lt;/p&gt;&#xA;&lt;pre&gt;recipient_delimiter = +&lt;/pre&gt;&#xA;&lt;p&gt;Log snippet:&lt;/p&gt;&#xA;&lt;pre&gt;Apr 16 13:07:52 vm-dns-mail postfix/pipe[6119]: 55D1C2005E4: to=&amp;lt;user+test@rootspirit.com&amp;gt;, &#xA;relay=maildrop, delay=0.06, delays=0.01/0/0/0.05, dsn=5.1.1, status=bounced &#xA;(&lt;strong&gt;user &lt;/strong&gt;&lt;strong&gt;unknown. Command output: Invalid user specified.&lt;/strong&gt; )&lt;/pre&gt;&#xA;&lt;p&gt;Tried to find what&amp;rsquo;s wrong in MySQL, change the delimiter, Debug Maildrop, etc. Not much progress&amp;hellip; :( And after 6 hours I was starting to get annoyed.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>I suddenly noticed issues with Postfix not accepting e-mails that are tagged (&ldquo;user+TAG@fqdn&rdquo;) anymore. Even though it always had.</p>
<p>Postfix main.cfg:</p>
<pre>recipient_delimiter = +</pre>
<p>Log snippet:</p>
<pre>Apr 16 13:07:52 vm-dns-mail postfix/pipe[6119]: 55D1C2005E4: to=&lt;user+test@rootspirit.com&gt;, 
relay=maildrop, delay=0.06, delays=0.01/0/0/0.05, dsn=5.1.1, status=bounced 
(<strong>user </strong><strong>unknown. Command output: Invalid user specified.</strong> )</pre>
<p>Tried to find what&rsquo;s wrong in MySQL, change the delimiter, Debug Maildrop, etc. Not much progress&hellip; :( And after 6 hours I was starting to get annoyed.</p>
<p>The clue was changing this line in master.cfg:</p>
<pre>maildrop unix - n n - - pipe
 flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}</pre>
<p>to</p>
<pre>maildrop unix - n n - - pipe
 flags=ODRhu user=vmail argv=/usr/bin/maildrop -w 90 -d ${user}@${nexthop}
 ${extension} ${recipient} ${user} ${nexthop}</pre>
<p><a href="http://gogs.info/wiki/debian/maildrop" target="_blank">Source</a> where I ripped the line from.</p>
]]></content:encoded>
      <category>errors</category><category>linux</category><category>software</category>
      <category>mail</category>
    </item>
    
    <item>
      <title>Fixing GrowlMail with Mac OS X 10.6.7 and Mail 4.5</title>
      <link>https://yeri.be/fixing-growlmail-with-mac-os-x-10-6-7-and-mail-4-5/</link>
      <pubDate>Tue, 22 Mar 2011 00:04:15 +0100</pubDate>
      <author>Yeri Tiete</author>
      <guid isPermaLink="true">https://yeri.be/fixing-growlmail-with-mac-os-x-10-6-7-and-mail-4-5/</guid>
      <description>&lt;p&gt;Add following two lines to Info.plist:&lt;/p&gt;&#xA;&lt;pre style=&#34;background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;&#34;&gt;&amp;lt;string&amp;gt;9049EF7D-5873-4F54-A447-51D722009310&amp;lt;/string&amp;gt;&#xA;&amp;lt;string&amp;gt;1C58722D-AFBD-464E-81BB-0E05C108BE06&amp;lt;/string&amp;gt;&lt;/pre&gt;&#xA;&lt;p&gt;Between&lt;/p&gt;&#xA;&lt;pre style=&#34;background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;&#34;&gt;&amp;lt;key&amp;gt;SupportedPluginCompatibilityUUIDs&amp;lt;/key&amp;gt;&#xA;&amp;lt;array&amp;gt;&lt;/pre&gt;&#xA;&lt;p&gt;And&lt;/p&gt;&#xA;&lt;pre style=&#34;background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;&#34;&gt;&amp;lt;/array&amp;gt;&lt;/pre&gt;&#xA;&lt;p&gt;You can find the Info.plist in:&lt;/p&gt;&#xA;&lt;pre style=&#34;background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;&#34;&gt;~/Library/Mail/Bundles/&lt;span style=&#34;color: #ff0000;&#34;&gt;GrowlMail.mailbundle&lt;/span&gt;/Contents/&lt;/pre&gt;&#xA;&lt;p&gt;Or&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Add following two lines to Info.plist:</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">&lt;string&gt;9049EF7D-5873-4F54-A447-51D722009310&lt;/string&gt;
&lt;string&gt;1C58722D-AFBD-464E-81BB-0E05C108BE06&lt;/string&gt;</pre>
<p>Between</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">&lt;key&gt;SupportedPluginCompatibilityUUIDs&lt;/key&gt;
&lt;array&gt;</pre>
<p>And</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">&lt;/array&gt;</pre>
<p>You can find the Info.plist in:</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">~/Library/Mail/Bundles/<span style="color: #ff0000;">GrowlMail.mailbundle</span>/Contents/</pre>
<p>Or</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">/Library/Mail/Bundles/<span style="color: #ff0000;">GrowlMail.mailbundle</span>/Contents/</pre>
<p>If you already opened Mail (and received the disable warning), it&rsquo;s probably in a folder named &ldquo;Bundles (Disabled)&rdquo;; just move the content to Bundles again.</p>
<p>You can do the same &lsquo;hack&rsquo; with GPGMail; it&rsquo;s located at</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">(~ <em>or</em> /)Library/Mail/Bundles/<span style="color: #ff0000;">GPGMail.mailbundle</span>/Contents/</pre>
<p>These UUIDs can be found in these two files (they get updated every Mac OS X update, and thus break plugins each time):</p>
<pre style="background-color: #ffffff; line-height: 12pt; margin-right: 5px; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 35px; border: 1px dashed #489e06;">/Applications/Mail.app/Contents/Info.plist
/System/Library/Frameworks/Message.framework/Resources/Info.plist</pre>
]]></content:encoded>
      <category>apple</category><category>errors</category><category>software</category>
      <category>growl</category><category>mail</category>
    </item>
    
  </channel>
</rss>
