home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # This script reformats incoming messages; mailers are supposed to convert
- # any message text starting with "From " to ">From ", but some fail to do it.
- # This script should be used instead in the aliases file. For example:
- #
- #test-list:"|/bin/cat | /usr/server/reformat >> /usr/server/lists/TEST-LIST/mail
- read x
- echo $x
- sed 's/^From\ /\>From\ /'
-