Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(6) |
Jul
(2) |
Aug
(3) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(3) |
Feb
(2) |
Mar
(3) |
Apr
(2) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2002 |
Jan
(1) |
Feb
(4) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2009 |
Jan
(4) |
Feb
(9) |
Mar
(8) |
Apr
(5) |
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
(1) |
2010 |
Jan
(4) |
Feb
(8) |
Mar
(10) |
Apr
(12) |
May
(5) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(4) |
Feb
|
Mar
|
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
|
2
|
3
(1) |
4
|
5
(1) |
6
|
7
|
8
|
9
|
10
(1) |
11
|
12
|
13
(1) |
14
|
15
(1) |
16
|
17
(1) |
18
|
19
(1) |
20
|
21
|
22
|
23
|
24
(1) |
25
|
26
|
27
|
28
|
|
|
|
|
|
|
From: William Shotts <bshotts@pa...> - 2010-02-05 17:55:29
|
In this installment, we'll finish up our look at email. Now that we have mutt talking to the outside world, it would be handy if we could also send messages from the command line as we did in Part 8 using the mail command. Fortunately, mutt supports the same technique. Using mutt On The Command Line We can send the output of a command to a remote email recipient via our POP3 configuration using a command such as this: me@...:~$ ls -l | mutt-p -s "test message" someone@... Here we used the alias "mutt-p" described in the previous installment. Please note that if such an alias were used in a shell script, it would most likely fail because the .bashrc file where the alias is defined is not sourced by the copy of the shell executing the script. In such a case, we would need to spell the command out fully: mutt -F ~/.muttrc-pop3 -s "test message" someone@... Another Mail Client While Debian installs mutt by default, it's not the only full-featured text-based email client available. Another popular choice is Alpine, the successor to the popular PINE email client from the University of Washington. Alpine is similar to mutt in most respects though I think it has an easier user interface: In addition to the usual email functions, Alpine also sports its own address book and Alpine's configuration is adjustable from within the user interface so that editing the configuration files is not strictly necessary, but its configuration is as complicated as mutt's. Alpine configuration, top-level Alpine configuration, down deep Summing Up Text-based email clients have a long and storied history in the Unix world and remain the tools of choice for serious email users. As you dig deeper into the documentation of mutt and Alpine, you will find that nothing compares to the configurability of either of these programs. Further Reading More support resources for mutt: - http://mutt.blackfish.org.uk/ - http://therandymon.com/woodnotes/mutt/using-mutt.html - http://hacktux.com/mutt/addressbook - http://mark.stosberg.com/Tech/mutt.html For Alpine: - http://www.washington.edu/alpine/ - http://www.washington.edu/alpine/tech-notes/config.html - http://www.ii.com/internet/messaging/pine/ -- Posted By William Shotts to LinuxCommand.org: Tips, News And Rants at 2/05/2010 12:47:00 PM |