Re: [vchkpw] qmail+vpopmail+mysql+courier-imap+gentoo empty relay table with roamingusers enabled

2003-02-27 Thread Justin Heesemann
On Thursday 27 February 2003 02:12, bob ketterhagen wrote:
 This vpopmail-5.2.1-r4.ebuild everything is default nothing special, I
 have it working on numerous other servers with not a single problem. It'
 s just the newest mailserver I have built that I am having this problem
 on. I can send myself email and recieve it. I can remove the relay
 table, check my email and it readds it but, it continues to stay empty.

 bob

ok.. i guess i might have an answer.
courier-imap-1.7.ebuild makes use of authdaemon.
authdaemon doesn't get the TCPREMOTEIP env variable.
so: what should the poor vpopmail vopen_smtp_relay think it should set ??

i don't know, why this worked on your other servers. i guess you might be 
running another version of courier-imap.
i have an ebuild for courier, which works.. but it's more or less a unclean 
hack.

a quick'n'dirty solution:

make sure  /usr/lib/courier-imap/authlib/authvchkpw  exists.

replace the need net authdaemond lines in your /etc/init.d/courier* scripts
with need net

replace the AUTHMODULES=authdaemon line with AUTHMODULES=authvchkpw in 
your /etc/courier-imap/imapd /etc/courier-imap/imapd-ssl 
/etc/courier-imap/pop3d /etc/courier-imap/pop3d-ssl files.

/etc/init.d/authdaemond stop
/etc/init.d/courier-imap restart

(i hope i've covered every variable i changed...)


-- 
Best Regards
---
Justin Heesemannionium Technologies
[EMAIL PROTECTED]www.ionium.org




[vchkpw] Redeliver mail to another MTA

2003-02-27 Thread Peter Mikeska
Hi, plz can any1 help me ;))
I have local qmail+vpopmail with few domains, I have few (well many)
users which use adreses with local domain , but they have also adreses
from another domain.
Local .edu .com
NONLocal .de
I make virtualdomain .de,.com,edu
so I want when some local user send mail to [EMAIL PROTECTED] and this
user exist in my own .de domain, its OK, but when it doesn not exist,
just redeliver message to another smtp host(regular MX for domain .de).

Mail to this adreses when its com from internet , go to .de origin
server by DNS MX and it forward mails to my mailboxes. but I dont know
how to retrieve mail for local user which are not found in my local domain.
uff, well its messy , any ideas ?
I found that in .qmail-default in domain dir make this thig but its
redirect to exact mail adres, but i need just redirect it to smtp
server.

thnx in advance

   Miki
  

-- 
S pozdravom
 Peter  mailto:[EMAIL PROTECTED]




[vchkpw] Vpopmail and Postfix + LDAP

2003-02-27 Thread Alessandro A.
Someone tried Vpopmail with Postfix and LDAP support?

Thanks!

Alex





Re: [vchkpw] Redeliver mail to another MTA

2003-02-27 Thread Justin Heesemann
On Thursday 27 February 2003 13:56, Peter Mikeska wrote:
 Hi, plz can any1 help me ;))
 I have local qmail+vpopmail with few domains, I have few (well many)
 users which use adreses with local domain , but they have also adreses
 from another domain.
 Local .edu .com
 NONLocal .de
 I make virtualdomain .de,.com,edu
 so I want when some local user send mail to [EMAIL PROTECTED] and this
 user exist in my own .de domain, its OK, but when it doesn not exist,
 just redeliver message to another smtp host(regular MX for domain .de).

 Mail to this adreses when its com from internet , go to .de origin
 server by DNS MX and it forward mails to my mailboxes. but I dont know
 how to retrieve mail for local user which are not found in my local domain.
 uff, well its messy , any ideas ?
 I found that in .qmail-default in domain dir make this thig but its
 redirect to exact mail adres, but i need just redirect it to smtp
 server.

 thnx in advance

Miki

i think this was covered somewhen last year..
i'm not sure, what the solution was back then, but i'd say

on your Local server:
add mx record for pseudo.one.de
and alias the pseudo.one.de domain to one.de domain

.qmail-default:
| /home/vpopmail/bin/vdelivermail '' [EMAIL PROTECTED]

on your NONLocal Server:
add mx record for realmx.one.de
and alias the realmx.on.de domain to one.de domain.

.qmail-default:
| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox

.qmail-someuseronlocal:
 [EMAIL PROTECTED]




what does this do?
qmail puts the username part of the RCPT TO: email address into the env 
variable EXT (at least i think it does?).
so on your local server vdelivermail will first check, if the user exist on 
the _local_ system ? if no: it forwards the mail to [EMAIL PROTECTED] which 
is no local domain, but handled by the NONLocal server.

on the NONLocal server it receives the mail, as realmx.one.de is an 
aliasdomain for one.de it will handle the mail just as expected: if the user 
doesn't exist on this system either, it will bounce the mail.

you just have to make sure, that for each user on the local server a 
.qmail-useronlocalname file on the NONLocal server exists.




-- 
Best Regards
---
Justin Heesemannionium Technologies
[EMAIL PROTECTED]www.ionium.org




Re: [vchkpw] qmail+vpopmail+mysql+courier-imap+gentoo empty relaytable with roamingusers enabled

2003-02-27 Thread bob ketterhagen
After totally removing it and starting from scratch I was able to hack
the init/conf scripts to work correctly.

Thanks again,

bob

On Thu, 2003-02-27 at 05:41, Justin Heesemann wrote:
 On Thursday 27 February 2003 02:12, bob ketterhagen wrote:
  This vpopmail-5.2.1-r4.ebuild everything is default nothing special, I
  have it working on numerous other servers with not a single problem. It'
  s just the newest mailserver I have built that I am having this problem
  on. I can send myself email and recieve it. I can remove the relay
  table, check my email and it readds it but, it continues to stay empty.
 
  bob
 
 ok.. i guess i might have an answer.
 courier-imap-1.7.ebuild makes use of authdaemon.
 authdaemon doesn't get the TCPREMOTEIP env variable.
 so: what should the poor vpopmail vopen_smtp_relay think it should set ??
 
 i don't know, why this worked on your other servers. i guess you might be 
 running another version of courier-imap.
 i have an ebuild for courier, which works.. but it's more or less a unclean 
 hack.
 
 a quick'n'dirty solution:
 
 make sure  /usr/lib/courier-imap/authlib/authvchkpw  exists.
 
 replace the need net authdaemond lines in your /etc/init.d/courier* scripts
 with need net
 
 replace the AUTHMODULES=authdaemon line with AUTHMODULES=authvchkpw in 
 your /etc/courier-imap/imapd /etc/courier-imap/imapd-ssl 
 /etc/courier-imap/pop3d /etc/courier-imap/pop3d-ssl files.
 
 /etc/init.d/authdaemond stop
 /etc/init.d/courier-imap restart
 
 (i hope i've covered every variable i changed...)
 


signature.asc
Description: This is a digitally signed message part


[vchkpw] starting vpop gives error

2003-02-27 Thread Kevin L Aleshire
when i try to run the vpop script i get this error message tcpserver:
fatal: unable to bind: address already used

below is the script that i'm using.

#!/bin/sh
env - PATH=/var/qmail/bin:/usr/local/bin \
tcpserver -H -R 0 pop3 \
/var/qmail/bin/qmail-popup mail.mnw.net \
/home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 

When i do a netstat -a | grep pop  this is the response that i get back

tcp0  0 *:pop3  *:* LISTEN

can someone help me find out when service is running this, or am i going at
this problem that wrong way?

Thanks in advance




Re: [vchkpw] qmail+vpopmail+mysql+courier-imap+gentoo empty relaytable with roamingusers enabled

2003-02-27 Thread bob ketterhagen
The main problem was gentoo does not install authvchpw in
/usr/lib/courier-imap/authlib/ Once you manually install that file.
Hacking up the init and conf scripts is a breeze.

bob

On Thu, 2003-02-27 at 09:57, bob ketterhagen wrote:
 After totally removing it and starting from scratch I was able to hack
 the init/conf scripts to work correctly.
 
 Thanks again,
 
 bob
 
 On Thu, 2003-02-27 at 05:41, Justin Heesemann wrote:
  On Thursday 27 February 2003 02:12, bob ketterhagen wrote:
   This vpopmail-5.2.1-r4.ebuild everything is default nothing special, I
   have it working on numerous other servers with not a single problem. It'
   s just the newest mailserver I have built that I am having this problem
   on. I can send myself email and recieve it. I can remove the relay
   table, check my email and it readds it but, it continues to stay empty.
  
   bob
  
  ok.. i guess i might have an answer.
  courier-imap-1.7.ebuild makes use of authdaemon.
  authdaemon doesn't get the TCPREMOTEIP env variable.
  so: what should the poor vpopmail vopen_smtp_relay think it should set ??
  
  i don't know, why this worked on your other servers. i guess you might be 
  running another version of courier-imap.
  i have an ebuild for courier, which works.. but it's more or less a unclean 
  hack.
  
  a quick'n'dirty solution:
  
  make sure  /usr/lib/courier-imap/authlib/authvchkpw  exists.
  
  replace the need net authdaemond lines in your /etc/init.d/courier* scripts
  with need net
  
  replace the AUTHMODULES=authdaemon line with AUTHMODULES=authvchkpw in 
  your /etc/courier-imap/imapd /etc/courier-imap/imapd-ssl 
  /etc/courier-imap/pop3d /etc/courier-imap/pop3d-ssl files.
  
  /etc/init.d/authdaemond stop
  /etc/init.d/courier-imap restart
  
  (i hope i've covered every variable i changed...)
  


signature.asc
Description: This is a digitally signed message part


Re: [vchkpw] starting vpop gives error

2003-02-27 Thread Rob G
Do a netstat -na | grep LISTEN and see if anything else is listening on port
110 as that is what is holding the address open.

Regards,
Rob G
[EMAIL PROTECTED]
- Original Message -
From: Kevin L Aleshire [EMAIL PROTECTED]
To: Vchkpw [EMAIL PROTECTED]
Sent: Thursday, February 27, 2003 2:42 PM
Subject: [vchkpw] starting vpop gives error


when i try to run the vpop script i get this error message tcpserver:
fatal: unable to bind: address already used

below is the script that i'm using.

#!/bin/sh
env - PATH=/var/qmail/bin:/usr/local/bin \
tcpserver -H -R 0 pop3 \
/var/qmail/bin/qmail-popup mail.mnw.net \
/home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 

When i do a netstat -a | grep pop  this is the response that i get back

tcp0  0 *:pop3  *:* LISTEN

can someone help me find out when service is running this, or am i going at
this problem that wrong way?

Thanks in advance






RE: [vchkpw] starting vpop gives error

2003-02-27 Thread Kevin L Aleshire
this is the response that i get from that command, it doesn't really list
anything specific

[EMAIL PROTECTED] /etc/rc3.d# netstat -na | grep LISTEN
tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
tcp0  0 216.31.98.16:22 0.0.0.0:*   LISTEN

is there any other way to find out what it is?

 -Original Message-
 From: Rob G [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 1:48 PM
 To: Vchkpw
 Subject: Re: [vchkpw] starting vpop gives error


 Do a netstat -na | grep LISTEN and see if anything else is
 listening on port
 110 as that is what is holding the address open.

 Regards,
 Rob G
 [EMAIL PROTECTED]
 - Original Message -
 From: Kevin L Aleshire [EMAIL PROTECTED]
 To: Vchkpw [EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:42 PM
 Subject: [vchkpw] starting vpop gives error


 when i try to run the vpop script i get this error message tcpserver:
 fatal: unable to bind: address already used

 below is the script that i'm using.

 #!/bin/sh
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R 0 pop3 \
 /var/qmail/bin/qmail-popup mail.mnw.net \
 /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 

 When i do a netstat -a | grep pop  this is the response that i get back

 tcp0  0 *:pop3  *:* LISTEN

 can someone help me find out when service is running this, or am
 i going at
 this problem that wrong way?

 Thanks in advance








Re: [vchkpw] starting vpop gives error

2003-02-27 Thread John Johnson
telnet to port 110 and try issuing cammands and see what it gives back...

-John

- Original Message -
From: Kevin L Aleshire [EMAIL PROTECTED]
To: Vchkpw [EMAIL PROTECTED]
Sent: Thursday, February 27, 2003 11:54 AM
Subject: RE: [vchkpw] starting vpop gives error


 this is the response that i get from that command, it doesn't really list
 anything specific

 [EMAIL PROTECTED] /etc/rc3.d# netstat -na | grep LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 216.31.98.16:22 0.0.0.0:*   LISTEN

 is there any other way to find out what it is?

  -Original Message-
  From: Rob G [mailto:[EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 1:48 PM
  To: Vchkpw
  Subject: Re: [vchkpw] starting vpop gives error
 
 
  Do a netstat -na | grep LISTEN and see if anything else is
  listening on port
  110 as that is what is holding the address open.
 
  Regards,
  Rob G
  [EMAIL PROTECTED]
  - Original Message -
  From: Kevin L Aleshire [EMAIL PROTECTED]
  To: Vchkpw [EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 2:42 PM
  Subject: [vchkpw] starting vpop gives error
 
 
  when i try to run the vpop script i get this error message tcpserver:
  fatal: unable to bind: address already used
 
  below is the script that i'm using.
 
  #!/bin/sh
  env - PATH=/var/qmail/bin:/usr/local/bin \
  tcpserver -H -R 0 pop3 \
  /var/qmail/bin/qmail-popup mail.mnw.net \
  /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 
 
  When i do a netstat -a | grep pop  this is the response that i get
back
 
  tcp0  0 *:pop3  *:*
LISTEN
 
  can someone help me find out when service is running this, or am
  i going at
  this problem that wrong way?
 
  Thanks in advance
 
 
 
 







Re: [vchkpw] starting vpop gives error

2003-02-27 Thread Rob G

Hmmm that is really interesting as I know that running qmail or even
sendmail should open up port 25 and that isn't even listed there:

Here is my netstat
tcp0  0 0.0.0.0:32768   0.0.0.0:*   LISTEN
tcp0  0 127.0.0.1:32769 0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:33060.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:111 0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:80  0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:1   0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:60000.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:21  0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:22  0.0.0.0:*   LISTEN
tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN

Showing all the open ports on my Redhat box.

I would also add this to the end of your run script 21, so it would look
like this

#!/bin/sh
env - PATH=/var/qmail/bin:/usr/local/bin \
tcpserver -H -R 0 pop3 \
/var/qmail/bin/qmail-popup mail.mnw.net \
/home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 21

Regards,
Rob G
[EMAIL PROTECTED]



- Original Message -
From: Kevin L Aleshire [EMAIL PROTECTED]
To: Vchkpw [EMAIL PROTECTED]
Sent: Thursday, February 27, 2003 2:54 PM
Subject: RE: [vchkpw] starting vpop gives error


this is the response that i get from that command, it doesn't really list
anything specific

[EMAIL PROTECTED] /etc/rc3.d# netstat -na | grep LISTEN
tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
tcp0  0 216.31.98.16:22 0.0.0.0:*   LISTEN

is there any other way to find out what it is?

 -Original Message-
 From: Rob G [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 1:48 PM
 To: Vchkpw
 Subject: Re: [vchkpw] starting vpop gives error


 Do a netstat -na | grep LISTEN and see if anything else is
 listening on port
 110 as that is what is holding the address open.

 Regards,
 Rob G
 [EMAIL PROTECTED]
 - Original Message -
 From: Kevin L Aleshire [EMAIL PROTECTED]
 To: Vchkpw [EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:42 PM
 Subject: [vchkpw] starting vpop gives error


 when i try to run the vpop script i get this error message tcpserver:
 fatal: unable to bind: address already used

 below is the script that i'm using.

 #!/bin/sh
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R 0 pop3 \
 /var/qmail/bin/qmail-popup mail.mnw.net \
 /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 

 When i do a netstat -a | grep pop  this is the response that i get back

 tcp0  0 *:pop3  *:* LISTEN

 can someone help me find out when service is running this, or am
 i going at
 this problem that wrong way?

 Thanks in advance










Re: [vchkpw] starting vpop gives error

2003-02-27 Thread John Johnson
 This is what netstat -a should look like notice it shows the service
that is
on that port

Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address   Foreign Address State
tcp0  0 *:mysql *:* LISTEN
tcp0  0 *:pop3  *:* LISTEN
tcp0  0 *:imap  *:* LISTEN
tcp0  0 *:http  *:* LISTEN
tcp0  0 *:ftp   *:* LISTEN
tcp0  0 *:ssh   *:* LISTEN
tcp0  0 *:smtp  *:* LISTEN
tcp0  0 *:https *:* LISTEN
udp0  0 www.cyberbytesbbs.c:ntp *:*
udp0  0 localhost.localdoma:ntp *:*
udp0  0 *:ntp   *:*


- Original Message -
From: Rob G [EMAIL PROTECTED]
To: Vchkpw [EMAIL PROTECTED]
Sent: Thursday, February 27, 2003 12:01 PM
Subject: Re: [vchkpw] starting vpop gives error



 Hmmm that is really interesting as I know that running qmail or even
 sendmail should open up port 25 and that isn't even listed there:

 Here is my netstat
 tcp0  0 0.0.0.0:32768   0.0.0.0:*   LISTEN
 tcp0  0 127.0.0.1:32769 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:33060.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:111 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:80  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:1   0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:60000.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:21  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:22  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN

 Showing all the open ports on my Redhat box.

 I would also add this to the end of your run script 21, so it would look
 like this

 #!/bin/sh
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R 0 pop3 \
 /var/qmail/bin/qmail-popup mail.mnw.net \
 /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 21

 Regards,
 Rob G
 [EMAIL PROTECTED]



 - Original Message -
 From: Kevin L Aleshire [EMAIL PROTECTED]
 To: Vchkpw [EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:54 PM
 Subject: RE: [vchkpw] starting vpop gives error


 this is the response that i get from that command, it doesn't really list
 anything specific

 [EMAIL PROTECTED] /etc/rc3.d# netstat -na | grep LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 216.31.98.16:22 0.0.0.0:*   LISTEN

 is there any other way to find out what it is?

  -Original Message-
  From: Rob G [mailto:[EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 1:48 PM
  To: Vchkpw
  Subject: Re: [vchkpw] starting vpop gives error
 
 
  Do a netstat -na | grep LISTEN and see if anything else is
  listening on port
  110 as that is what is holding the address open.
 
  Regards,
  Rob G
  [EMAIL PROTECTED]
  - Original Message -
  From: Kevin L Aleshire [EMAIL PROTECTED]
  To: Vchkpw [EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 2:42 PM
  Subject: [vchkpw] starting vpop gives error
 
 
  when i try to run the vpop script i get this error message tcpserver:
  fatal: unable to bind: address already used
 
  below is the script that i'm using.
 
  #!/bin/sh
  env - PATH=/var/qmail/bin:/usr/local/bin \
  tcpserver -H -R 0 pop3 \
  /var/qmail/bin/qmail-popup mail.mnw.net \
  /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 
 
  When i do a netstat -a | grep pop  this is the response that i get
back
 
  tcp0  0 *:pop3  *:*
LISTEN
 
  can someone help me find out when service is running this, or am
  i going at
  this problem that wrong way?
 
  Thanks in advance
 
 
 
 









RE: [vchkpw] starting vpop gives error

2003-02-27 Thread Kevin L Aleshire
i'm still in the learning process of understanding the syntax of scripts
what's the difference in 21 vs. just having  at the end of my script

 -Original Message-
 From: Rob G [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:01 PM
 To: Vchkpw
 Subject: Re: [vchkpw] starting vpop gives error



 Hmmm that is really interesting as I know that running qmail or even
 sendmail should open up port 25 and that isn't even listed there:

 Here is my netstat
 tcp0  0 0.0.0.0:32768   0.0.0.0:*   LISTEN
 tcp0  0 127.0.0.1:32769 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:33060.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:111 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:80  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:1   0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:60000.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:21  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:22  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN

 Showing all the open ports on my Redhat box.

 I would also add this to the end of your run script 21, so it would look
 like this

 #!/bin/sh
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R 0 pop3 \
 /var/qmail/bin/qmail-popup mail.mnw.net \
 /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 21

 Regards,
 Rob G
 [EMAIL PROTECTED]



 - Original Message -
 From: Kevin L Aleshire [EMAIL PROTECTED]
 To: Vchkpw [EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:54 PM
 Subject: RE: [vchkpw] starting vpop gives error


 this is the response that i get from that command, it doesn't really list
 anything specific

 [EMAIL PROTECTED] /etc/rc3.d# netstat -na | grep LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 216.31.98.16:22 0.0.0.0:*   LISTEN

 is there any other way to find out what it is?

  -Original Message-
  From: Rob G [mailto:[EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 1:48 PM
  To: Vchkpw
  Subject: Re: [vchkpw] starting vpop gives error
 
 
  Do a netstat -na | grep LISTEN and see if anything else is
  listening on port
  110 as that is what is holding the address open.
 
  Regards,
  Rob G
  [EMAIL PROTECTED]
  - Original Message -
  From: Kevin L Aleshire [EMAIL PROTECTED]
  To: Vchkpw [EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 2:42 PM
  Subject: [vchkpw] starting vpop gives error
 
 
  when i try to run the vpop script i get this error message tcpserver:
  fatal: unable to bind: address already used
 
  below is the script that i'm using.
 
  #!/bin/sh
  env - PATH=/var/qmail/bin:/usr/local/bin \
  tcpserver -H -R 0 pop3 \
  /var/qmail/bin/qmail-popup mail.mnw.net \
  /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 
 
  When i do a netstat -a | grep pop  this is the response that
 i get back
 
  tcp0  0 *:pop3  *:*
 LISTEN
 
  can someone help me find out when service is running this, or am
  i going at
  this problem that wrong way?
 
  Thanks in advance
 
 
 
 








Re: [vchkpw] starting vpop gives error

2003-02-27 Thread Rob G
Ummm honestly I have no clue.  This was the format in the Life With Qmail
document that I followed and that everyone seems to get working servers off
of.  So that is the way that I went.

Regards,
Rob G
[EMAIL PROTECTED]
- Original Message -
From: Kevin L Aleshire [EMAIL PROTECTED]
To: Vchkpw [EMAIL PROTECTED]
Sent: Thursday, February 27, 2003 3:21 PM
Subject: RE: [vchkpw] starting vpop gives error


i'm still in the learning process of understanding the syntax of scripts
what's the difference in 21 vs. just having  at the end of my script

 -Original Message-
 From: Rob G [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:01 PM
 To: Vchkpw
 Subject: Re: [vchkpw] starting vpop gives error



 Hmmm that is really interesting as I know that running qmail or even
 sendmail should open up port 25 and that isn't even listed there:

 Here is my netstat
 tcp0  0 0.0.0.0:32768   0.0.0.0:*   LISTEN
 tcp0  0 127.0.0.1:32769 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:33060.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:111 0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:80  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:1   0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:60000.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:21  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:22  0.0.0.0:*   LISTEN
 tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN

 Showing all the open ports on my Redhat box.

 I would also add this to the end of your run script 21, so it would look
 like this

 #!/bin/sh
 env - PATH=/var/qmail/bin:/usr/local/bin \
 tcpserver -H -R 0 pop3 \
 /var/qmail/bin/qmail-popup mail.mnw.net \
 /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 21

 Regards,
 Rob G
 [EMAIL PROTECTED]



 - Original Message -
 From: Kevin L Aleshire [EMAIL PROTECTED]
 To: Vchkpw [EMAIL PROTECTED]
 Sent: Thursday, February 27, 2003 2:54 PM
 Subject: RE: [vchkpw] starting vpop gives error


 this is the response that i get from that command, it doesn't really list
 anything specific

 [EMAIL PROTECTED] /etc/rc3.d# netstat -na | grep LISTEN
 tcp0  0 0.0.0.0:110 0.0.0.0:*   LISTEN
 tcp0  0 216.31.98.16:22 0.0.0.0:*   LISTEN

 is there any other way to find out what it is?

  -Original Message-
  From: Rob G [mailto:[EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 1:48 PM
  To: Vchkpw
  Subject: Re: [vchkpw] starting vpop gives error
 
 
  Do a netstat -na | grep LISTEN and see if anything else is
  listening on port
  110 as that is what is holding the address open.
 
  Regards,
  Rob G
  [EMAIL PROTECTED]
  - Original Message -
  From: Kevin L Aleshire [EMAIL PROTECTED]
  To: Vchkpw [EMAIL PROTECTED]
  Sent: Thursday, February 27, 2003 2:42 PM
  Subject: [vchkpw] starting vpop gives error
 
 
  when i try to run the vpop script i get this error message tcpserver:
  fatal: unable to bind: address already used
 
  below is the script that i'm using.
 
  #!/bin/sh
  env - PATH=/var/qmail/bin:/usr/local/bin \
  tcpserver -H -R 0 pop3 \
  /var/qmail/bin/qmail-popup mail.mnw.net \
  /home/vpopmail/bin/vchkpw /var/qmail/bin/qmail-pop3d Maildir 
 
  When i do a netstat -a | grep pop  this is the response that
 i get back
 
  tcp0  0 *:pop3  *:*
 LISTEN
 
  can someone help me find out when service is running this, or am
  i going at
  this problem that wrong way?
 
  Thanks in advance
 
 
 
 










Re[2]: [vchkpw] starting vpop gives error

2003-02-27 Thread Alejandro G. Belluscio
Hello Kevin,
  Just read: http://www.linuxsa.org.au/tips/io-redirection.html
  
Thursday, February 27, 2003, 5:21:50 PM, you wrote:

KLA i'm still in the learning process of understanding the syntax of scripts
KLA what's the difference in 21 vs. just having  at the end of my script