<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Dean Manners wrote:
<blockquote
 cite="mid200605271132.k4RBWKjM011696@mail05.syd.optusnet.com.au"
 type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta content="MSHTML 6.00.2900.2180" name="GENERATOR">
  <div><font face="Arial" size="2"><span class="064012711-27052006">Hey
guys,</span></font></div>
  <div><font face="Arial" size="2"><span class="064012711-27052006">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Is there a way to extract the concurrent connectons to a dovecot
servers?&nbsp; Got a fairly busy installation that Id like to monitor/graph
concurrent connections for.</span></font></div>
</blockquote>
ps axl|grep -E "imap$"|wc -l<br>
<br>
each active, authenticated imap session is a separate process ... same
for pop3:<br>
ps axl|grep -E "pop3$"|wc -l<br>
<br>
There may well be a more complicated way, or a way to get the info out
of the root dovecot process.<br>
<br>
Rob.<br>
</body>
</html>