This is a trick I call "Pine Cent". CentOS doesn't come with Pine installed, so if you want a text based mailer, you're stuck with "mail".
So here's what I do on all my CentOS servers:
(in bash):
# alias pine=mutt
(in tcsh):
> alias pine mutt
It's kinda a joke, because well mutt is a very nice text mode email client. Being an old user of unix from way back, something in my brain is hardwired to type "pine" when I want to read email.
Note, the learning curve is a bit steep if you are accustomed to pine, but mutt is just as powerful, if not more so. If you're a mutt "power user" I'd love to see some things you've done with it.
__________________________
-- FLR or flrichar is a superfan of Linux Journal, and goofs around in the LJ IRC Channel
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Nov-19-09
- Nov-04-09
Recently Popular
From the Magazine
December 2009, #188
If last month's Infrastrucuture issue was too "big" for you then try on this month's Embedded issue. Find out how to use Player for programming mobile robots, build a humidity controller for your root cellar, find out how to reduce the boot time of your embedded system, and if you're new to embedded systems find out the basics that go into one. You can also read about the Beagle Board, the Mesh Potato and a spate of other interestingly named items. And along with our regular columns don't miss our new monthly column: Economy Size Geek.
Delicious
Digg
StumbleUpon
Reddit
Facebook








I'm not surprised that Pine
On March 31st, 2009 Anonymous (not verified) says:
I'm not surprised that Pine is no longer included with Cent OS. Pine has been dead (discontinued) since 2005. The University of Washington (same guys who made Pine) are now distributing a program called Alpine, which is like Pine 2. Not sure if that comes with Cent OS, but it's more likely to be there than Pine.
http://www.washington.edu/alpine/
mutt on CentOS
On May 1st, 2008 Meaulnes (not verified) says:
> If you're a mutt «power user» I'd love to see some things you've done with it.
I use mutt to send myself files from our server to my office with:
mutt me@office.tld -s "here is myfile" -a myfileFor convenience, I entered the following alias/function into my bash profile (the ^[ are ESC in vi):
sendhome () { HomeAddress="me@office.tld" ; \ echo -n " sending ^[[4m$1^[[0m ..." ; \ echo $1 | mutt "$HomeAddress" -s "$1" -a $1 ; \ echo "file sent to ^[[36m"$HomeAddress"^[[0m." \ }Unfortunately, we have a new server running CentOS but without mutt. Can I just issue «
yum install mutt» without screwing something up?thanks
Meaulnes Legler
Zürich, Switzerland
Post new comment