Loading
No pine on CentOS?
Apr 03, 2008 By FredR
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.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Parallel Programming with NVIDIA CUDA
- Readers' Choice Awards 2011
- 100% disappointed with the decision to go all digital.
- Linux-Based X Terminals with XDMCP
- Validate an E-Mail Address with PHP, the Right Way
- You Need A Budget
- The Linux powered LAN Gaming House
- Why Python?
- Python for Android
- Employment Posters
2 hours 24 min ago - Sure the best distro is
3 hours 45 min ago - BeOS was the best
6 hours 28 min ago - I use Wireshark on a daily
10 hours 59 min ago - buena información
16 hours 5 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
17 hours 6 min ago - Gnome3 is such a POS. No one
1 day 2 hours ago - Gnome 3 is the biggest POS
1 day 2 hours ago - I didn't knew this thing by
1 day 8 hours ago - Author's reply
1 day 12 hours ago





I'm not surprised that Pine
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
> 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