Hi,
I'll give it a shot. It seems to me that one single line can't do a disaster
:))) I maintain a small internal network and users don't go balistic if
something breaks :)
Thanks. Maybe Bjarni could comment on this patch?
SavinG
> Here's a patch which MIGHT do something like the right thing with
> partial messages ... but I don't think it's quite what everyone
> wants -- it means that a few blank messages are going to be
> delivered to a very confused recipient:
>
> BEGIN===================
> diff -u MIMEStream.pm.orig MIMEStream.pm
> --- MIMEStream.pm.orig Mon Sep 16 15:06:10 2002
> +++ MIMEStream.pm Mon Sep 16 15:06:47 2002
> @@ -104,6 +104,7 @@
> {
> # "text/html" => \&ParserDiscard,
> "text/*" => \&ParserForce8bit,
> + "message/partial" => \&ParserDiscard,
> "message/rfc822" => \&ParserRFC822,
> "multipart/*" => \&ParserMultipart,
> "multipart/signed" => \&ParserCat,
> ===================END