Ryan Shook wrote:
>
> On Fri, 3 Nov 2000, Dan Liston wrote:
>
> > This would be near line 749 of resend. If you have to take this
> > extreme measure though, something more serious is wrong. $sender
> > is somehow not getting chomped of the original \n.
> That's what I figured, but when no other problems showed up and I found a
> workable solution I left things alone.
>
> > What are you using in majordomo.cf for $whereami?
> # $whereami -- What machine am I running on?
> #
> $whereami = `/bin/hostname -f`;
>
> which returns:
> phillip.spadina.net
>
> > What are you using in your listname.config for "sender = "?
> sender = owner-dark_musings
>
This is part of your problem. Any time you use and executable to
refer to your hostname where a literal should be provided, you
MUST "chomp" it to prevent a stray new-line from getting into your
headers. Either change your majordomo.cf to the preferred method,
$whereami = "phillip.spadina.net";
or if you insist on using the executable,
chomp($whereami = `/bin/hostname -f`);
Dan Liston
|
|