Hi All,
Is there any options to find "how many USERS are currently downloading mails from the mail server".
thanks in advance,
Raman.
__________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com
On Wednesday 14 Sep 2005 4:37 pm, Ramang G wrote:
Hi All,
Is there any options to find "how many USERS are currently downloading mails from the mail server".
yes
Sometime on Wed, Sep 14, 2005 at 04:07:33AM -0700, Ramang G said:
Hi All,
Is there any options to find "how many USERS are currently downloading mails from the mail server".
netstat | grep pop3
Anurag wrote:
Sometime on Wed, Sep 14, 2005 at 04:07:33AM -0700, Ramang G said:
Hi All,
Is there any options to find "how many USERS are currently downloading mails from the mail server".
netstat | grep pop3
He want's to know *HOW Many Users*.
I think you can get it by..
#ps aux |grep pop3 #ps aux |grep imap
With Cheers, Hardik Dalwadi.
Sometime on Thu, Sep 15, 2005 at 12:25:17PM +0530, Hardik Dalwadi said:
He want's to know *HOW Many Users*.
I think you can get it by..
#ps aux |grep pop3 #ps aux |grep imap
He might be runnung pop3 under inetd?
$ netstat|grep pop3|grep ESTABLISHED|wc will list all the established pop3 connections.
Anurag