fagin@eleazar.dartmouth.edu (Barry S. Fagin) (06/29/90)
Is there any software out there that takes a collection of mail messages and formats them according to RFC934, the standard for message encapsulation? Software that automatically creates headers for digests would also be of interest. Reply to barry.fagin@dartmouth.edu { ... dartmouth!eleazar!fagin }. Thanks. --BF
kjones@talos.pm.com (Kyle Jones) (07/02/90)
Barry S. Fagin writes: > Is there any software out there that takes a collection of > mail messages and formats them according to RFC934, the > standard for message encapsulation? RFC 934 digests are easy to produce. sed(1) can convert a UNIX-style mailbox to a RFC 934 digest: sed -e '/^$/{' -e 'n' -e 's/^From .*$/-----/' -e '}' \ -e '1s/^From .*$/-----/' -e 't' -e 's/^-/- -/'