Re: quick question re: starting with rblsmtpd

1999-11-08 Thread dd
| My csh skills are rusty; I can't remember how to redirect stderr. In his case, I think he needs to replace: 21 | with: | i had the same question and had this answer: You can use this notation command file_name but this will stderr AND stdout to the

Re: quick question re: starting with rblsmtpd

1999-11-07 Thread dd
|here's the whole script...short answer is csh: | |#!/bin/sh | | That's the problem: you're using Bourne shell syntax in the C Shell. | My csh skills are rusty; I can't remember how to redirect stderr. In his case, I think he needs to replace: 21 | with: | i had the

quick question re: starting with rblsmtpd

1999-01-03 Thread Brandon Dudley
I was using this command in /etc/rc.d/init.d/qmail before, but now it is not working. /usr/local/bin/tcpserver -x/etc/tcp.smtp.cdb -q -u 16 -g51 -t1 0 smtp /usr/local/bin/rblsmtpd -rrelays.radparker.com /usr/local/bin /rblsmtpd -rrelays.orbs.org /usr/local/bin/rblsmtpd -rrbl.maps.vix.com

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Dave Sill
Brandon Dudley [EMAIL PROTECTED] wrote: I was using this command in /etc/rc.d/init.d/qmail before, but now it is not working. /usr/local/bin/tcpserver -x/etc/tcp.smtp.cdb -q -u 16 -g51 -t1 0 smtp /usr/local/bin/rblsmtpd -rrelays.radparker.com /usr/local/bin /rblsmtpd -rrelays.orbs.org

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Brandon Dudley
here's the whole script...short answer is csh: #!/bin/sh # # qmail /etc/init.d script for qmail (http://www.qmail.org/) # # Version: @(#) /etc/init.d/qmail 1.00 03-Sep-1997 # # Author: Larry Doolittle [EMAIL PROTECTED] # derived from skeleton by Miquel van

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Dave Sill
Brandon Dudley [EMAIL PROTECTED] wrote: here's the whole script...short answer is csh: #!/bin/sh That's the problem: you're using Bourne shell syntax in the C Shell. My csh skills are rusty; I can't remember how to redirect stderr. -Dave

RE: quick question re: starting with rblsmtpd

1999-01-03 Thread Greg Owen
Brandon Dudley [EMAIL PROTECTED] wrote: here's the whole script...short answer is csh: #!/bin/sh That's the problem: you're using Bourne shell syntax in the C Shell. My csh skills are rusty; I can't remember how to redirect stderr. To redirect both stdin and stderr to one place,

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Brandon Dudley
ok, so I dumped my old rc script and modified Dave Sill's with the rblsmtpd entry I was using (taken from the qmail archives)smtpd starts and all seems hunk dory, except when I telnet into port 25 I don't receive a greeting from rblsmtpd...is that normal? Here's the mods I made:

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Peter Abplanalp
by ezmlm Delivered-To: mailing list [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: quick question re: starting with rblsmtpd Date: Fri, 05 Nov 1999 09:27:41 -0800 From: Brandon Dudley [EMAIL PROTECTED] ok, so I dumped my old rc script and modified Dave Sill's with the rblsmtpd entry

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Peter Abplanalp
Fri, 5 Nov 1999 18:32:12 - MIME-Version: 1.0 Content-transfer-encoding: 7BIT Subject: Re: quick question re: starting with rblsmtpd X-PM-Encryptor: QDPGP, 4 -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 5 Nov 99, at 10:26, Peter Abplanalp wrote: That looks correct as far as

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread Brandon Dudley
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Delivered-To: mailing list [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: quick question re: starting with rblsmtpd Date: Fri, 05 Nov 1999 09:27:41 -0800 From: Brandon Dudley [EMAIL PROTECTED] ok, so I dumped my old rc

Re: quick question re: starting with rblsmtpd

1999-01-03 Thread troy
On 5 Nov, Dave Sill wrote: | Brandon Dudley [EMAIL PROTECTED] wrote: | |here's the whole script...short answer is csh: | |#!/bin/sh | | That's the problem: you're using Bourne shell syntax in the C Shell. | My csh skills are rusty; I can't remember how to redirect stderr. In his case, I think