On Wed, 1 Nov 2006, Michael Papet wrote:

I've got one problem that gets back to the colon in
paths problem on win32.

lib/tcpserver.pm line 77 reads

my $line = $code . (@messages?"-":" ").$msg;

I'm guessing this is part of generating the *.msg file
when an email comes in.

Your guess is incorrect. That code generates correctly formatted multiline responses:

250-this is the first line
250 this is the last line

Is it clearer if the code is formatted like so?

my $line = $code . (@messages ? "-" : " " ) . $msg;

Reply via email to