[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [pbmserv-dev] need hints and help with Windows



On Fri, 17 Sep 2004, Richard Rognlie wrote:
> > 3) how do I print out the board to the console instead of attempting to send it
> > through email?  (I need to change sendmail.cpp but I forget how)
>
> IIRC,
>
> Look for where sendmail.cpp invokes popen("$PBMHOME/bin/sendmail")
>
> change that to popen("/bin/echo")

Actually, you can just put this in $PBMHOME/bin/sendmail

   #!/bin/sh
   cat -

And you don't need to change sendmail.cpp

~ John Williams