<div class="markdown">
<p dir="auto">On 21 Apr 2015, at 22:58, Bill Cole wrote:</p>

<blockquote>
<p dir="auto">On 21 Apr 2015, at 13:28, Christopher LILJENSTOLPE wrote:</p>

<blockquote>
<p dir="auto">I've moved off of GPGTools, and am running the current gpg2 tooling from GNU (brew package, if anyone is interested).  However, it seems as if the GPGTools path is stuck somewhere in the system for the path for gpg2.  Any hidden variable where I can change that path?</p>
</blockquote>

<ol>
<li value=1>Symlink the hardcoded name to the working one:
sudo mkdir -p /usr/local/MacGPG2/bin
sudo ln -s /usr/local/bin/gpg2 /usr/local/MacGPG2/bin</li>
</ol>
</blockquote>

<p dir="auto">This is what I usually suggest. I don't officially support any other <code>gpg2</code> implementations, because MailMate does not yet have its own password requester for OpenPGP. In other words, the user either has to make sure password requesters are never needed or that the alternative <code>gpg2</code> command can pop up its own GUI.</p>

<p dir="auto">There is a nicer way to do it though. It is intended to be part of some future GUI for editing a set of default environment variables. Here is how to do it from the command line:</p>

<pre><code>defaults write com.freron.MailMate environmentVariables -dict "variables" '( { enabled = :true;  name = "MM_GPG"; value = "/usr/local/MacGPG2/bin/gpg2"; }, )'
</code></pre>

<p dir="auto">I believe MailMate also looks for <code>MM_TNEF</code> which controls the location of the command used for decoding <code>winmail.dat</code> files and family, but I doubt anyone would want to replace the default :-)</p>

<p dir="auto">I make no guarantees that the above is going to work in the future. They are low-level implementation details.</p>

<p dir="auto">-- <br>
Benny</p>

</div>