Path: utzoo!attcan!utgpu!news-server.csri.toronto.edu!mailrus!uunet!talos!kjones From: kjones@talos.pm.com (Kyle Jones) Newsgroups: comp.mail.sendmail Subject: Re: automatic digestification software Message-ID: <1990Jul2.154712.10379@talos.pm.com> Date: 2 Jul 90 15:47:12 GMT References: <22949@dartvax.Dartmouth.EDU> Distribution: usa Lines: 10 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/^-/- -/'