Mutt: Difference between revisions
From charlesreid1
(Created page with "=Installing= ==Prereqs== If you want Gpg integrated into Mutt, you have to install Gpg first. It is a bit of a pain in the arse to install from source due to 5 dependencies...") |
No edit summary |
||
| Line 35: | Line 35: | ||
sudo dseditgroup -o edit -a username -t user mail | sudo dseditgroup -o edit -a username -t user mail | ||
</pre> | </pre> | ||
[[Category:Programs]] | |||
[[Category:Unix]] | |||
Revision as of 17:04, 3 November 2011
Installing
Prereqs
If you want Gpg integrated into Mutt, you have to install Gpg first. It is a bit of a pain in the arse to install from source due to 5 dependencies, but you can get a binary or install it via Fink. Then you have to install Gpgme, which is, I guess, an interface to GPG that Mutt can use.
To install either of those, see the respective articles.
Configure
To configure mutt from source:
#!/bin/sh
./configure \
--prefix=${HOME}/pkg/mutt/1.5.21 \
\
--enable-gpgme \
--with-gpgme-prefix=${HOME}/pkg/gpgme/std \
--disable-pgp \
\
--enable-pop \
--enable-imap \
--enable-smtp \
I had to add myself to the mail group, too. To do this on a mac:
sudo dseditgroup -o edit -a username -t user mail