Jon Rankin - 2002-10-05

Logged In: YES
user_id=623690

I'll answer my own question--
I'm apparently trying this before I'm fully awake! The answer
was, of course, too easy. It just needs a blank line in
between the header and body. In create.php, this is the line
that adds the extra line to separate the body:

if (!empty($cfg->showhost)) { $header .= "X-eCorrei-Host: $cfg-
>hostname\n\n";}

Since this if statement is false in my case, it never adds the
extra line. So, simply adding and else:

else { $header .= "\n"; }

after the if statement, will properly format the replies when
the if fails.