1996-11-27 15:52:01 -04:00
|
|
|
#! /usr/bin/env python
|
1991-06-04 17:36:54 -03:00
|
|
|
|
|
|
|
# Print From and Subject of messages in $MAIL.
|
|
|
|
# Extension to multiple mailboxes and other bells & whistles are left
|
|
|
|
# as exercises for the reader.
|
|
|
|
|
1992-03-30 07:14:20 -04:00
|
|
|
import sys, os
|
1991-06-04 17:36:54 -03:00
|
|
|
|
|
|
|
# Open mailbox file. Exits with exception when this fails.
|
|
|
|
|
1991-12-18 09:38:42 -04:00
|
|
|
try:
|
2001-02-20 12:21:35 -04:00
|
|
|
mailbox = os.environ['MAIL']
|
1992-03-30 07:14:20 -04:00
|
|
|
except (AttributeError, KeyError):
|
2001-02-20 12:21:35 -04:00
|
|
|
sys.stderr.write('No environment variable $MAIL\n')
|
|
|
|
sys.exit(2)
|
1991-12-18 09:38:42 -04:00
|
|
|
|
|
|
|
try:
|
2001-02-20 12:21:35 -04:00
|
|
|
mail = open(mailbox)
|
1992-05-19 10:48:31 -03:00
|
|
|
except IOError:
|
2001-02-20 12:21:35 -04:00
|
|
|
sys.exit('Cannot open mailbox file: ' + mailbox)
|
1991-06-04 17:36:54 -03:00
|
|
|
|
|
|
|
while 1:
|
2001-02-20 12:21:35 -04:00
|
|
|
line = mail.readline()
|
|
|
|
if not line:
|
|
|
|
break # EOF
|
|
|
|
if line.startswith('From '):
|
|
|
|
# Start of message found
|
2007-07-17 17:59:35 -03:00
|
|
|
print(line[:-1], end=' ')
|
2001-02-20 12:21:35 -04:00
|
|
|
while 1:
|
|
|
|
line = mail.readline()
|
|
|
|
if not line or line == '\n':
|
|
|
|
break
|
|
|
|
if line.startswith('Subject: '):
|
2007-07-17 17:59:35 -03:00
|
|
|
print(repr(line[9:-1]), end=' ')
|
|
|
|
print()
|