To use side bar we need to install mutt-patched packed in Debian:
sudo apt-get install mutt-patchedTo make side bar more accessible I use default settings from lunar linux page. Add below lines to $HOME/.muttrc:
set sidebar_width = 30 set sidebar_visible = yes color sidebar_new yellow default bind index CP sidebar-prev bind index CN sidebar-next bind index CO sidebar-open bind pager CP sidebar-prev bind pager CN sidebar-next bind pager CO sidebar-openFirst line sets width of side bar it depends on how long are your folder names. Second line makes sidebar by default visible. Third makes folders with new messages yellow. Other lines create shortcuts for navigating sidebar. Note that C is not Ctrl but uppercase 'c' key. Second topic I want to discuss is how to open urls from inside e-mails. To do this we can use tip from mutt site. As it said we need urlview application:
sudo apt-get install urlviewTo correctly configure this tool you need to create $HOME/.urlview file. So:
vim $HOME/.urlviewIn this file we define two things. First will be regular expression which match urls and second will be command line to run when regexp was matched. File looks like below:
REGEXP (((https?|ftp|gopher)://|(mailto|file|news):)[^’ <>"]+|(www|web|w3).[-a-z0-9.]+)[^’ .,;<>":] COMMAND chromium %sChromuim is my browser of choice but you can use firefox, lynx or anything you want.
No comments:
Post a Comment