I found a problem with the way I was handling the subject line in
mail2bbs.
It's easy to fix... just change line 37 from this...
($junk,$subject) = split(/: /,$subject);
to this...
$subject =  substr($subject,9);

I've put up mail2bbs-0.04 but it only contains this one change.... I
know there must be other problems but I can't fix them if I don't hear
about them.... ;-)


Bob

--- mail2bbs.old        Sat Sep 25 07:23:40 1999
+++ mail2bbs    Sat Sep 25 07:23:59 1999
@@ -34,7 +34,7 @@
 }
 $numoflines = $count;
 #----------------------------------------------------------------------------

-($junk,$subject) = split(/: /,$subject);
+$subject =  substr($subject,9);
 chomp $subject;
 $Tmid = $message_id;
 $Tmid = substr($Tmid,0,-1);

Reply via email to