^A or bol move to the start of the line ^B or backward-char move back one char Esc B backward-word move back one word ^D or delete-char delete the char under the cursor ^E or eol move to the end of the line ^F or forward-char move forward one char Esc F forward-word move forward one word complete complete filename or alias ^T complete-query complete address with query ^K kill-eol delete to the end of the line ESC d kill-eow delete to the end ot the word ^W kill-word kill the word in front of the cursor ^U kill-line delete entire line ^V quote-char quote the next typed key history-up recall previous string from history history-down recall next string from history backspace kill the char in front of the cursor Esc u upcase-word convert word to upper case Esc l downcase-word convert word to lower case Esc c capitalize-word capitalize the word ^G n/a abort n/a finish editing bind editor backspace --------------------------------------------------- The Message Index c change to a different mailbox ESC c change to a folder in read-only mode C copy the current message to another mailbox ESC C decode a message and copy it to a folder ESC s decode a message and save it to a folder D delete messages matching a pattern d delete the current message F mark as important l show messages matching a pattern N mark message as new o change the current sort method O reverse sort the mailbox q save changes and exit s save-message T tag messages matching a pattern t toggle the tag on a message ESC t toggle tag on entire message thread U undelete messages matching a pattern u undelete-message v view-attachments x abort changes and exit display-message jump to the next new message @ show the author's full e-mail address $ save changes to mailbox / search ESC / search-reverse ^L clear and redraw the screen ^T untag messages matching a pattern --------------------------------------------------- # GnuPG configuration set pgp_sign_micalg=pgp-sha1 # default for DSS keys set pgp_decode_command="gpg %?p?--passphrase-fd 0? --no-verbose --batch --output - %f" set pgp_verify_command="gpg --no-verbose --batch --output - --verify %s %f" set pgp_decrypt_command="gpg --passphrase-fd 0 --no-verbose --batch --output - %f" set pgp_sign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f" set pgp_clearsign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f" set pgp_encrypt_only_command="/usr/lib/mutt/pgpewrap gpg -v --batch --output - --encrypt --textmode --armor --always-trust -- -r %r -- %f" set pgp_encrypt_sign_command="/usr/lib/mutt/pgpewrap gpg --passphrase-fd 0 -v --batch --output - --encrypt --sign %?a?-u %a? --armor --always-trust -- -r %r -- %f" set pgp_import_command="gpg --no-verbose --import -v %f" set pgp_export_command="gpg --no-verbose --export --armor %r" set pgp_verify_key_command="gpg --no-verbose --batch --fingerprint --check-sigs %r" set pgp_list_pubring_command="gpg --no-verbose --batch --with-colons --list-keys %r" set pgp_list_secring_command="gpg --no-verbose --batch --with-colons --list-secret-keys %r" set pgp_getkeys_command="" ====================================== color normal default default color hdrdefault brightcyan default color signature green default color attachment brightyellow default color indicator brightblack brightcyan color quoted green default color quoted1 white default color tilde blue default color body brightcyan default "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z ][-a-z]+" color body brightwhite default "(http|ftp|news|telnet|finger):/ /[^ \">\t\r\n]*" color body brightwhite default "mailto:[-a-z_0-9.]+@[-a-z_0-9.] +" color header brightmagenta default ^(Date): color header brightyellow default ^Subject: color body brightred default " [;:]-*[)>(<|]" ======$HOME/bin/gtMutt (icewm key shortcut m)======== #!/bin/sh Cmd="mutt $*" if [ ${DISPLAY} ]; then nohup aterm +sb -tr -trsb -sh 65 -title Mutt -rv -bg \ SeaGreen3 -fg DarkBlue -fn lucidasanstypewriter-10 \ -geometry 108x54 -e ${Cmd} > /dev/null 2>&1 & else screen ${Cmd} fi