0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00
cpython/Demo/scripts/from.py

36 lines
870 B
Python
Raw Normal View History

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