D.psych36%berkeley@ucscc.UUCP (06/17/83)
It might cut down on volume somewhat if you filtered out most of the message headers before retransmission (and package it up in perhaps 10kb digest sized chunks)... Here is a little filter I use to clean up arpa mailings: ------------------------------------------------------------- #! /bin/awk -f !/^From daemon/ && !/^Via:/ && !/^>From/ && !/^Article-I.D.:/ && ! /^Sender:/ && !/^Cc:/ && !/^Reply-To:/ && !/^To:/ && !/Mail-From:/ && !/^Message-Id:/ && !/^From C:daemon/ && !/id A0/ && !/id AA/ && !/^In-Reply/ && !/^Remailed-/ && !/^Return-Path:/ && !/^Received:/ {print} (note: delete \n from lines 2 and 3) Michael M. Cohen ucscc!psych36@berkeley