Re: port 25 cannot telnet

2000-09-19 Thread Paul Schinder

At 8:33 PM -0700 9/18/00, [EMAIL PROTECTED] wrote:
I am trying to install qmail on the Solaris 7 x86 system using Life with
qmail. I have few problems:
1. /var/qmail/supervise/qmail-smtpd/run script is having some errors

QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
exec /usr/local/bin/softlimit -m 200 \
 /usr/local/bin/tcpserver -v -p -x /etc/tcp.smtp.cdb \
 -u $QMAILDUID  -g $NOFILESGID 0 smtp /var/qmail/bin/qmail-smtpd 21

when I run the script I get errors -u -g illegal option. I am not sure what
those options are doing, I took them out and replaced with -a that seem to
work.
2. Cannot telnet on the port 25 tried everything but it tells me connection
refused. Sendmail is gone so there is no port "sharing"
I found an error in the qmail log
@400039c80c1404df8924 tcpserver: fatal: unable to figure out port number
for gid=100(nofiles)
I think this is my problem, but I do not know how to fix it.

Your problem is that id on Solaris is not the same as id under Linux:

leprss% id -u qmaild
id: illegal option -- u
Usage: id [user]
id -a [user]

Just put the numbers in the script by hand.

The error in the log is cause by the fact that NOFILESGID isn't set right.

Please help
Denis

-- 
--
Paul J. Schinder
NASA Goddard Space Flight Center
Code 693
[EMAIL PROTECTED]



Re: port 25 cannot telnet

2000-09-19 Thread denpetrov

I am in the process of learning scripts so please be patient.
When you said use numbers did you mean gid and uid numbers instead of

id -u qmaild
id -g qmaild, so it will look something like this QMAILDUID=100

NOFILESGID=1001
than I can take -u and -g from this line
-u $QMAILDUID  -g $NOFILESGID 0 smtp
/var/qmail/bin/qmail-smtpd 21
correct?
Thank you
Denis

- Original Message -
From: "Paul Schinder" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, September 19, 2000 4:02 AM
Subject: Re: port 25 cannot telnet


 At 8:33 PM -0700 9/18/00, [EMAIL PROTECTED] wrote:
 I am trying to install qmail on the Solaris 7 x86 system using Life with
 qmail. I have few problems:
 1. /var/qmail/supervise/qmail-smtpd/run script is having some errors
 
 QMAILDUID=`id -u qmaild`
 NOFILESGID=`id -g qmaild`
 exec /usr/local/bin/softlimit -m 200 \
  /usr/local/bin/tcpserver -v -p -x /etc/tcp.smtp.cdb \
  -u $QMAILDUID  -g $NOFILESGID 0 smtp /var/qmail/bin/qmail-smtpd 21
 
 when I run the script I get errors -u -g illegal option. I am not sure
what
 those options are doing, I took them out and replaced with -a that seem
to
 work.
 2. Cannot telnet on the port 25 tried everything but it tells me
connection
 refused. Sendmail is gone so there is no port "sharing"
 I found an error in the qmail log
 @400039c80c1404df8924 tcpserver: fatal: unable to figure out port
number
 for gid=100(nofiles)
 I think this is my problem, but I do not know how to fix it.

 Your problem is that id on Solaris is not the same as id under Linux:

 leprss% id -u qmaild
 id: illegal option -- u
 Usage: id [user]
 id -a [user]

 Just put the numbers in the script by hand.
 The error in the log is cause by the fact that NOFILESGID isn't set right.

 Please help
 Denis

 --
 --
 Paul J. Schinder
 NASA Goddard Space Flight Center
 Code 693
 [EMAIL PROTECTED]




Re: port 25 cannot telnet

2000-09-19 Thread Paul Schinder

At 1:53 PM -0700 9/19/00, [EMAIL PROTECTED] wrote:
 I am in the process of learning scripts so please be patient.
When you said use numbers did you mean gid and uid numbers instead of

id -u qmaild
id -g qmaild, so it will look something like this QMAILDUID=100

NOFILESGID=1001

Yes, exactly.

than I can take -u and -g from this line
 -u $QMAILDUID  -g $NOFILESGID 0 smtp

No, you leave this just the way it is.

/var/qmail/bin/qmail-smtpd 21
correct?
Thank you
Denis

-- 
--
Paul J. Schinder
NASA Goddard Space Flight Center
Code 693
[EMAIL PROTECTED]



Re: port 25 cannot telnet

2000-09-19 Thread denpetrov

it worked thank you

-Original Message-
From: Paul Schinder [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]; [EMAIL PROTECTED]
[EMAIL PROTECTED]
Date: Tuesday, September 19, 2000 3:39 PM
Subject: Re: port 25 cannot telnet


At 1:53 PM -0700 9/19/00, [EMAIL PROTECTED] wrote:
 I am in the process of learning scripts so please be patient.
When you said use numbers did you mean gid and uid numbers instead of

id -u qmaild
id -g qmaild, so it will look something like this QMAILDUID=100

NOFILESGID=1001

Yes, exactly.

than I can take -u and -g from this line
 -u $QMAILDUID  -g $NOFILESGID 0 smtp

No, you leave this just the way it is.

/var/qmail/bin/qmail-smtpd 21
correct?
Thank you
Denis

--
--
Paul J. Schinder
NASA Goddard Space Flight Center
Code 693
[EMAIL PROTECTED]