diff options
author | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-04-29 00:34:43 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-04-29 00:34:43 +0200 |
commit | 5fccf763cd104357d2119b4b7066bca09fcfe154 (patch) | |
tree | dfa3f6e32d291ae5f492e9407a93a033f83b4b43 /mutt |
Re-release
Diffstat (limited to 'mutt')
-rw-r--r-- | mutt/colors | 26 | ||||
-rw-r--r-- | mutt/ignore | 2 | ||||
-rw-r--r-- | mutt/pgp | 14 | ||||
-rw-r--r-- | mutt/settings | 6 | ||||
-rw-r--r-- | mutt/sidebar | 12 | ||||
-rw-r--r-- | mutt/smime | 13 |
6 files changed, 73 insertions, 0 deletions
diff --git a/mutt/colors b/mutt/colors new file mode 100644 index 0000000..1fdd54a --- /dev/null +++ b/mutt/colors @@ -0,0 +1,26 @@ +color normal white default # default colors + +color attachment yellow default +color hdrdefault white default +color indicator white blue # cursor color +color markers brightblue default +color quoted green default +color signature brightblue default +color status blue default +color tilde brightblue default +color tree brightblue default + +### header colors +color header red default ^From: +color header red default ^To: +color header red default ^Reply-To: +color header red default ^Cc: +color header red default ^Subject: + +### body colors +color body brightblue default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+ +color body brightblue default (https?|ftp)://[\-\.\,/%~_:?\#a-zA-Z0-9]+ + +### mark unread stuff +color index white red ~N +color index white red ~O diff --git a/mutt/ignore b/mutt/ignore new file mode 100644 index 0000000..3fbd013 --- /dev/null +++ b/mutt/ignore @@ -0,0 +1,2 @@ +ignore * +unignore From To Reply-To Subject Cc diff --git a/mutt/pgp b/mutt/pgp new file mode 100644 index 0000000..d2c9278 --- /dev/null +++ b/mutt/pgp @@ -0,0 +1,14 @@ +set pgp_decode_command="gpg --status-fd=2 %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f" +set pgp_verify_command="gpg --status-fd=2 --no-verbose --quiet --batch --output - --verify %s %f" +set pgp_decrypt_command="gpg --status-fd=2 %?p?--passphrase-fd 0? --no-verbose --quiet --batch --output - %f" +set pgp_sign_command="gpg --no-verbose --batch --quiet --output - %?p?--passphrase-fd 0? --armor --detach-sign --textmode %?a?-u %a? %f" +set pgp_clearsign_command="gpg --no-verbose --batch --quiet --output - %?p?--passphrase-fd 0? --armor --textmode --clearsign %?a?-u %a? %f" +set pgp_encrypt_only_command="/usr/lib/mutt/pgpewrap gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f" +set pgp_encrypt_sign_command="/usr/lib/mutt/pgpewrap gpg %?p?--passphrase-fd 0? --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f" +set pgp_import_command="gpg --no-verbose --import %f" +set pgp_export_command="gpg --no-verbose --export --armor %r" +set pgp_verify_key_command="gpg --verbose --batch --fingerprint --check-sigs %r" +set pgp_list_pubring_command="gpg --no-verbose --batch --quiet --with-colons --list-keys %r" +set pgp_list_secring_command="gpg --no-verbose --batch --quiet --with-colons --list-secret-keys %r" +set pgp_good_sign="^\\[GNUPG:\\] GOODSIG" +set pgp_autosign=yes diff --git a/mutt/settings b/mutt/settings new file mode 100644 index 0000000..4ca1942 --- /dev/null +++ b/mutt/settings @@ -0,0 +1,6 @@ +set header_cache="~/.mutt_header_cache" +set mail_check=3 +set timeout=2 +set beep_new=yes +set edit_headers +set pager_index_lines=6 diff --git a/mutt/sidebar b/mutt/sidebar new file mode 100644 index 0000000..a53bab3 --- /dev/null +++ b/mutt/sidebar @@ -0,0 +1,12 @@ +set sidebar_delim = " | " +set sidebar_width = 40 + +bind index \CH sidebar-prev +bind index \CN sidebar-next +bind index \CR sidebar-open +bind pager \CH sidebar-prev +bind pager \CN sidebar-next +bind pager \CR sidebar-open + +macro index b '<enter-command>toggle sidebar_visible<enter>' +macro pager b '<enter-command>toggle sidebar_visible<enter>' diff --git a/mutt/smime b/mutt/smime new file mode 100644 index 0000000..5dfdd5b --- /dev/null +++ b/mutt/smime @@ -0,0 +1,13 @@ +set smime_ca_location="~/.smime/ca-bundle.crt" +set smime_certificates="~/.smime/certificates" +set smime_keys="~/.smime/keys" +set smime_pk7out_command="openssl smime -verify -in %f -noverify -pk7out" +set smime_get_cert_command="openssl pkcs7 -print_certs -in %f" +set smime_get_signer_cert_command="openssl smime -verify -in %f -noverify -signer %c -out /dev/null" +set smime_get_cert_email_command="openssl x509 -in %f -noout -email" +set smime_import_cert_command="smime_keys add_cert %f" +set smime_encrypt_command="openssl smime -encrypt %a -outform DER -in %f %c" +set smime_sign_command="openssl smime -sign -signer %c -inkey %k -passin stdin -in %f -certfile %i -outform DER" +set smime_decrypt_command="openssl smime -decrypt -passin stdin -inform DER -in %f -inkey %k -recip %c" +set smime_verify_command="openssl smime -verify -inform DER -in %s %C -content %f" +set smime_verify_opaque_command="openssl smime -verify -inform DER -in %s %C" |