Mutt configuration

This commit is contained in:
2018-01-21 17:06:18 -08:00
parent 0e4ca17a7b
commit 5156445233
3 changed files with 147 additions and 0 deletions

11
.mutt/gmail-password.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
USER=$1
if [ -z $USER ]; then
USER="gutierrez.aaron.m@gmail.com"
fi
PWORD=$(security find-generic-password -a "$USER" -s mutt-gmail -w)
echo "set imap_user=\"$USER\""
echo "set imap_pass=\"$PWORD\""

2
.mutt/mailcap Normal file
View File

@@ -0,0 +1,2 @@
text/html; w3m -I %{charset} -T text/html; copiousoutput;
image/*; open %s;