[Mimedefang] Problem with ^M's and Razor

David F. Skoll dfs at roaringpenguin.com
Tue Jun 4 17:24:51 EDT 2002


On Tue, 4 Jun 2002, Nate Carlson wrote:

> Hmm.. so this is really a Razor bug then, huh?  :)

Well, I'd say so. :-)

> I did the following:

> --- mimedefang.pl.orig  Tue Jun  4 15:12:00 2002
> +++ mimedefang.pl       Tue Jun  4 15:20:44 2002
> @@ -3418,9 +3418,13 @@
>         return undef;
>      }
>
> +    my @msg;
> +
>      open(IN, "<./INPUTMSG") or return undef;
> -    my @msg = <IN>;
> -    close(IN);
> +    while(<IN>) {
> +      $_ =~ tr/\015//d;
> +      push(@msg,$_);
> +    }

Thanks.  I'll make that change.

Regards,

David.




More information about the MIMEDefang mailing list