dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

README.md (694B) [raw]


      1 # mutt
      2 
      3 Trying `mutt` in pursuit of an email client that sucks less.
      4 
      5 ## Installation
      6 
      7 This folder should be symlinked to the `$XDG_CONFIG_HOME`. But other than that
      8 it is necessary to generate an encrypted password file.
      9 
     10 Given that I am using FastMail, they insist on having a one-client one-time
     11 password for each mail client that isn't theirs. So, in this order:
     12 
     13 1. Go to FastMail's web client
     14 2. Under Settings create a password
     15 3. Create a GPG key if you don't already have one:
     16 
     17 ```
     18 gpg --gen-key
     19 ```
     20 
     21 4. Use that key's public key to encrypt the password (and putt it in a file):
     22 
     23 ```
     24 echo -n "PASSWORD" | gpg --encrypt -r EMAIL > accounts/karleco.gpg
     25 ```
     26 
     27 Now, everything should work!