Index: [Article Count Order] [Thread]

Date:  Tue, 5 Dec 2006 13:06:39 -0800
From:  "Ken Marcus - Precision Web Hosting, Inc." <kenmarcus (at mark) precisionweb.net>
Subject:  [coba-e:08093] Re: HELP - excessive dovecot-auth
To:  <coba-e (at mark) bluequartz.org>
Message-Id:  <028c01c718b1$425d7e90$6700a8c0@OfficeKen>
References:  <200611081459.kA8ExjdP006172 (at mark) mail.xnet.com.mx>
X-Mail-Count: 08093


----- Original Message ----- 
From: "Rodrigo Ordonez Licona" <rodrigo (at mark) xnet.com.mx>



> Hi ken
>
> Sometimes the list strips carraige returns
> What we did were three lines and a comment on top.
>
> You can test each line on your command line as root to see if they were
> correctly copied
>
> Regards
>
> Rodrigo O
>
> # tweak for heavy load management ROL 2006 from coba-e (at mark) bluequartz.org
> <enter>
> echo 100000 > /proc/sys/kernel/threads-max  <enter>
> sysctl -w net.ipv4.tcp_max_syn_backlog=2048  <enter>
> ulimit -n 64000 <enter>
>
> -----Original Message-----
> From: Ken Marcus - Precision Web Hosting, Inc.
> [mailto:kenmarcus (at mark) precisionweb.net]
> Sent: Martes, 07 de Noviembre de 2006 11:37 a.m.
> To: coba-e (at mark) bluequartz.org
> Subject: [coba-e:07858] Re: HELP - excessive dovecot-auth
>
>
>> Christian Lappin wrote:
>>> Rodrigo -
>>> Thanks for the suggestion I have implemented the change as suggested
>>> and still no change:
>>> added this to /etc/rc.d/rc.local
>>> ---------------------------------------------------------------------
>>> ------- # tweak for heavy load management ROL 2006 from
>>> coba-e (at mark) bluequartz.org echo 100000 > /proc/sys/kernel/threads-max
>>> sysctl -w net.ipv4.tcp_max_syn_backlog=2048 ulimit -n 64000
>>> ---------------------------------------------------------------------
>>> -------
>>>  I have xinetd set to 600 see below:
>>> ---------------------------------------------------------------------
>>> -------
>>> [root (at mark) marmailbq01 ~]# cat /etc/xinetd.conf # # Simple configuration
>>> file for xinetd # # Some defaults, and include /etc/xinetd.d/
>>>
>>>  defaults
>>>
>>>  {
>>>
>>>  instances = 600
>>>  log_type = SYSLOG authpriv
>>>  log_on_success = HOST PID
>>>  log_on_failure = HOST
>>>  cps = 25 30
>>>  }
>>>
>>>  includedir /etc/xinetd.d
>>> ---------------------------------------------------------------------
>>> -------  There are 700 users total on the server. I would consider it
>>> heavy load but I have to say that this never happened under qpopper
>>> on the old Cobalts.
>>>  I still get at random times the excessive dovecot auth issues. The
>>> only way to relieve the trouble is by following the steps Marcelo
>>> outlined and
>>> issue:
>>>  service dovecot stop
>>> service xinetd stop I then run a "top" and watch the process go back
>>> down. There are anywhere from 180 to 600 dovecot-auth when the
>>> service stops allowing people to check mail and Squirrelmail then
>>> starts in with the IMAP timeouts (I followed squirrelmail doc for the
>>> set php.ini to 600 for timeout issues) to help but once the dovecot
>>> auth gets up there that does not matter.. Once the services return to
>>> normal (see below) [root@marmailbq01 ~]# ps -aux | grep dovecot
>>> Warning: bad syntax, perhaps a bogus '-'? See
>>> /usr/share/doc/procps-3.2.3/FAQ
>>> root     10617  0.1  0.0  3692  500 ?        Ss   12:18   0:12
>>> /usr/sbin/dovecot
>>> root     10621  0.0  0.3  5456 1640 ?        S    12:18   0:08
>>> dovecot-auth
>>> dovecot  18064  0.0  0.2  4932 1240 ?        S    15:05   0:00 
>>> imap-login
>>> dovecot  18116  0.0  0.2  4680 1236 ?        S    15:05   0:00 
>>> imap-login
>>> dovecot  18570  0.0  0.2  3932 1236 ?        S    15:07   0:00 
>>> imap-login
>>> dovecot  18626  0.0  0.2  5032 1228 ?        S    15:07   0:00 
>>> pop3-login
>>> dovecot  18628  0.0  0.2  3832 1228 ?        S    15:07   0:00 
>>> pop3-login
>>> dovecot  18635  0.0  0.2  4584 1228 ?        S    15:07   0:00 
>>> pop3-login
>>> dovecot  18636  0.0  0.2  5000 1228 ?        S    15:07   0:00 
>>> pop3-login
>>> root     18638  0.0  0.1  5352  656 pts/0    R+   15:07   0:00 grep
>>> dovecot
>>> [root@marmailbq01 ~]#
>>>
>>>  Once the ps -aux outout looks like above I issue: service dovecot
>>> restart service xinetd restart  Marcelo has posted a script that he
>>> uses to control the dovecot process:
>>>
>>> ---------------------------------------------------------------------
>>> -------
>>> ---------------------
>>> Script to control the dovecot processes // The comments are in
>>> spanish if someone have some doubt, tell me.
>>>
>>> #!/bin/bash
>>>
>>> # Parametros (cantidad de dovecot en ejecucion,minino de dovecot para
>>> volver a arrancar el servicio) # comprovar.sh 25 4
>>>
>>> while (sleep 3)
>>> do
>>>
>>>         if test `ps -ef | grep dovecot | wc | tr -s ' ' | cut -d ' '
>>> -f2` -gt $1
>>>         then
>>>                 echo "Dovecot se esta ejecutando `ps -ef | grep
>>> dovecot | wc
>>> | tr -s ' ' | cut -d ' ' -f2` veces"; #b nos dira si el servicio esta
>>> arrancado.
>>>
>>>                 if test `service dovecot status | grep running | wc |
>>> tr -s ' ' | cut -d ' ' -f2`  -eq 1
>>>                 then
>>>                         service dovecot stop `php mail.php`
>>>                         #paramos servicio i ponemos b = false
>>>                 fi
>>>         fi
>>>         if  test `ps -ef | grep dovecot | wc | tr -s ' ' | cut -d '
>>> ' -f2`
>>> -lt $2 then
>>>                 echo "Todo bien, servicio arrancado.";
>>>                 if test `service dovecot status | grep stopped | wc |
>>> tr -s ' ' | cut -d ' ' -f2`  -eq 1
>>>                 then
>>>                         service dovecot start `php mailok.php`
>>>                         #Arrancamos el servicio i ponemos b =true
>>>                 fi
>>>         fi
>>> done
>>>
>>> ---------------------------------------------------------------------
>>> -------  I am getting the comments translated as my Spanish is not
>>> that great but I did post the below questions about the script
>>> Marcelo -  I see in the script that you are referencing php
>>> mailok.php and php mail.php. What are these and how do I get them? I
>>> have a defaul BQ load and have not done anyting with my dovecot
>>> config. Do I need to make changes to dovecot config? Is so then what?
>>>  Also I would like to ask the group again if any ISP's out there or
>>> BQ admins with high user count how they are configured to prevent
>>> this auth process issue that causes dovecot to hang. I need to get
>>> this figured out. I am assuming that when this script runs it will
>>> prevent people from logging in but get the process back within levels
>>> again?
>>>
>>> ---------------------------------------------------------------------
>>> -------  I have also made the below changes to the dovecot.conf file
>>> to attempt to resolve this issue:
>>>  # Should each login be processed in it's own process (yes), or
>>> should one # login process be allowed to process multiple Connections
>>> (no)? Yes is more
>>> secure, espcially   # with SSL/TLS enabled.
>>> # No is faster since there's no need # to create processes all the time.
>>>
>>> login_process_per_connection = yes
>>>
>>> # Maximum number of connections allowed in login state. When this
>>> limit is
>>> reached, the oldest   # connections are dropped. If
>>> login_process_per_connection # is no, this is a per-process value, #
>>> so the absolute maximum number of users # logging in actually
>>> login_processes_count
>>> *          # max_logging_users.
>>>
>>> login_max_logging_users = 256
>>>
>>> # Should all IMAP and POP3 processes be killed when Dovecot master
>>> process # shuts down. Setting # this to "no" means that Dovecot can
>>> be upgraded without # forcing existing client connections  # to close
>>> (although that could also be # a problem if the upgrade is eg.
>>> because of a security  # fix). This however # means that after master
>>> process has died, the client processes can't write # to log files
>>> anymore.
>>>
>>> shutdown_clients = yes
>>>
>>> ---------------------------------------------------------------------
>>> -------
>>>
>>> Where I am left is that I still have no solution. I am running the
>>> NuOnce Networks implementation of BlueQuartz with CentOs
>>>
>>> [root@marmailbq01 ~]# rpm -q base-bluequartz-capstone
>>> base-bluequartz-capstone-5100R-1.20060918BQ74.centos4 I have the
>>> below version of dovecot installed:
>>>
>>> [root@marmailbq01 ~]# rpm -q dovecot
>>> dovecot-1.0-0.beta8.2.BQ
>>>
>>> Please let me know if there are any other ideas for fixing this. I
>>> really like Blue Quartz but this dovecot issue is killing me and
>>> making for some very irate users. I really need a dovecot expert or
>>> someone to tell me what config changes I need to make to allow this
>>> to work properly. I am sure that there are other ISP out there that
>>> have similar issues???
>>> Christian ________________________________
>>>
>>> From: Rodrigo Ordonez Licona Subject: [coba-e:07710] Re: HELP -
>>> excessive dovecot-auth
>>>
>>> We made this changes since qpopper problem  and have 700 email
>>> accounts on a Centos bq fully yummed,  We havent seen the dovecot
>>> auth issue, however we had to restart dovecot once but seems to be to
>>> spam related (a whole other story spamd with users over quota).
>>>
>>> We added this to /etc/rc.d/rc.local
>>>  # tweak for heavy load management ROL 2006 from
>>> coba-e (at mark) bluequartz.org echo 100000 > /proc/sys/kernel/threads-max
>>> sysctl -w net.ipv4.tcp_max_syn_backlog=2048 ulimit -n 64000
>>>
>>> Good Luck
>>>  Rodrigo O
>>> Xnet
>>>
>>> ________________________________
>>>
>>> From: Michael Aronoff [mailto:ma (at mark) ciic.com] I have been lurking on
>>> this issue for a while and I have a small comment.
>>> Has anyone with this problem looked at open file handles?  When I had
>>> this issue with Qpopper on my Raq 550 changing the files-max on boot
>>> helped solve it.  It appears that the Cent-OS uses a newer Kernel and
>>> even though the system wide number for max files is high, there is a
>>> per user limit of
>>> 1024
>>> set.  There was some discussion of this in
>>> http://bluequartz.org/ml/archive/coba-e/4900/4914.html and Michael
>>> Stauber said he would let the list know if it helped but I could not
>>> find any later post with info about if it worked.  Anyway you may
>>> what to revisit this aspect as well.
>>>  If it works please update us back so others can do the same things.
>>>  Thanks,
>>>  M Aronoff out
>
>
>> Med venlig hilsen,
>>
>> Jes Kasper Klittum
>>
>
>
> From: "Jes Kasper Klittum"
>
>> We have started seing this behaviour on a server with 2000+ users, and
>> I have tried all the suggestions in the discussion to get this to
>> work. The only solution is to stop dovecot, wait for number of procs
>> to fall, then start dovecot again, but this makes imap and pop
>> unavailable every so often.
>>
>> There must be a final fix for this - if not, I opt for going back to
>> qpopper. I have never seen this behaviour with qpopper.
>>
>> Jes
>
> Both the qpopper and Dovecot have worked well for me, but I don't have 
> 2000
> users on a server.
>
> I like the new secure connections, etc that are available.  I don't think
> going back to qpopper is an option.
>
> My users do not use the Squirrelmail.
> Maybe the Squirrelmail is holding open the IMAP connections.
>
> Try a shorter PHP timeout, although I think that mostly affects sites
> running in safe mode since a PHP script can specify a longer execution 
> time
> for itself.
>
> Or, try a shorter httpd timeout in the httpd.conf
>
> Or, if you stop or restart httpd, and see if the Dovecot processes 
> decrease
>
> Or, use webmail instead of Squirrelmail.
>
>
>
> ----
Ken Marcus



Some more info on dovecot

I did recently have it happen to me on a server with about 1000 users.. It 
was working fine, but when I deleted a site, then the site delete stalled 
and the dovecot seemed to spiral out of control. The FTP logins also seemed 
to be hung is you can see from the   ps auxw  below. I just rebooted the 
server and it came back to normal.

USER       PID %CPU %MEM   VSZ  RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  2468  624 ?        S    Dec04   0:01 init [3]
root         2  0.0  0.0     0    0 ?        SN   Dec04   0:00 [ksoftirqd/0]
root         3  0.0  0.0     0    0 ?        S<   Dec04   0:00 [events/0]
root         4  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ [khelper]
root         5  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ [kacpid]
root        26  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ 
[kblockd/0]
root        44  0.0  0.0     0    0 ?        S    Dec04   0:00  \_ [pdflush]
root        45  0.0  0.0     0    0 ?        S    Dec04   0:18  \_ [pdflush]
root        47  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ [aio/0]
root       299  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ [ata/0]
root      1863  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ [kauditd]
root      1904  0.0  0.0     0    0 ?        S<   Dec04   0:00  \_ 
[kmirrord]
root        27  0.0  0.0     0    0 ?        S    Dec04   0:00 [khubd]
root        46  0.0  0.0     0    0 ?        S    Dec04   0:04 [kswapd0]
root       193  0.0  0.0     0    0 ?        S    Dec04   0:00 [kseriod]
root       301  0.0  0.0     0    0 ?        S    Dec04   0:00 [scsi_eh_0]
root       302  0.0  0.0     0    0 ?        S    Dec04   0:00 [scsi_eh_1]
root       331  0.0  0.0     0    0 ?        S    Dec04   0:01 [md4_raid1]
root       333  0.0  0.0     0    0 ?        S    Dec04   0:00 [md2_raid1]
root       335  0.0  0.0     0    0 ?        S    Dec04   0:00 [md5_raid1]
root       337  0.0  0.0     0    0 ?        S    Dec04   0:03 [md3_raid1]
root       338  0.0  0.0     0    0 ?        S    Dec04   0:00 [md1_raid1]
root       340  0.0  0.0     0    0 ?        S    Dec04   0:00 [md6_raid1]
root       341  0.0  0.0     0    0 ?        S    Dec04   0:05 [kjournald]
root      1660  0.0  0.0  1764  452 ?        S<s  Dec04   0:00 udevd
root      2007  0.0  0.0     0    0 ?        S    Dec04   0:00 [kjournald]
root      2008  0.0  0.0     0    0 ?        S    Dec04   0:15 [kjournald]
root      2009  0.0  0.0     0    0 ?        S    Dec04   0:03 [kjournald]
root      2010  0.0  0.0     0    0 ?        D    Dec04   0:46 [kjournald]
root      2650  0.0  0.0  2312  552 ?        Ds   Dec04   0:13 syslogd -m 0
root      2654  0.0  0.0  2108  384 ?        Ss   Dec04   0:00 klogd -x
root      2672  0.0  0.0  3164 1332 ?        Ss   Dec04   0:00 
/usr/sausalito/sbin/cced
root      6793  0.0  0.0  3304 1448 ?        S    11:14   0:00  \_ 
/usr/sausalito/sbin/cced
root      6995  0.0  0.0  3664  444 ?        S    11:15   0:00  |   \_ 
bin/pperl handlers/base/vsite/system_adminuser.pl
root      6850  0.0  0.0  3172 1408 ?        S    11:15   0:00  \_ 
/usr/sausalito/sbin/cced
root      2882  0.0  0.0  3200  512 ?        Ss   Dec04   0:18 
/usr/sbin/dovecot
root      2973  0.0  0.1  9156 4668 ?        S    Dec04   0:13  \_ 
dovecot-auth
root      5256  0.0  0.1 10084 4056 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5259  0.0  0.1 10088 4004 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5270  0.0  0.1 10108 4020 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5271  0.0  0.1 10108 4020 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5272  0.0  0.1 10112 4024 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5293  0.0  0.1 10136 4060 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5297  0.0  0.1 10136 4100 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5303  0.0  0.1 10136 4044 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5317  0.0  0.1 10136 4088 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5329  0.0  0.1 10136 4092 ?        S    11:09   0:00  |   \_ 
dovecot-auth
root      5535  0.0  0.1 10136 4096 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5546  0.0  0.1 10136 4100 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5857  0.0  0.1 10136 4036 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5860  0.0  0.1 10136 4088 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5863  0.0  0.1 10136 4040 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5875  0.0  0.1 10136 4096 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5881  0.0  0.1 10136 4080 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5894  0.0  0.1 10136 4044 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5905  0.0  0.1 10136 4104 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5911  0.0  0.1 10136 4040 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5913  0.0  0.1 10136 4032 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5928  0.0  0.1 10136 4040 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5956  0.0  0.1 10136 4040 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5960  0.0  0.1 10136 4036 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5965  0.0  0.1 10136 4096 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5972  0.0  0.1 10136 4092 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      5990  0.0  0.1 10136 4044 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      6037  0.0  0.1 10136 4092 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      6041  0.0  0.1 10136 4044 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      6042  0.0  0.1 10136 4040 ?        S    11:10   0:00  |   \_ 
dovecot-auth
root      6054  0.0  0.1 10136 4048 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6066  0.0  0.1 10136 4132 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6071  0.0  0.1 10136 4140 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6075  0.0  0.1 10136 4096 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6076  0.0  0.1 10136 4152 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6091  0.0  0.1 10136 4120 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6107  0.0  0.1 10136 4108 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6111  0.0  0.1 10136 4120 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6112  0.0  0.1 10136 4180 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6119  0.0  0.1 10228 4204 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6134  0.0  0.1 10228 4148 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6136  0.0  0.1 10236 4220 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6170  0.0  0.1 10136 4112 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6171  0.0  0.1 10136 4160 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6173  0.0  0.1 10136 4100 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6180  0.0  0.1 10256 4180 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6181  0.0  0.1 10260 4180 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6192  0.0  0.1 10264 4240 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6193  0.0  0.1 10268 4236 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6202  0.0  0.1 10248 4140 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6208  0.0  0.1 10248 4144 ?        S    11:11   0:00  |   \_ 
dovecot-auth
root      6213  0.0  0.1 10248 4140 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6223  0.0  0.1 10248 4196 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6229  0.0  0.1 10248 4196 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6232  0.0  0.1 10248 4144 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6242  0.0  0.1 10248 4200 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6252  0.0  0.1 10248 4148 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6253  0.0  0.1 10248 4140 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6265  0.0  0.1 10268 4268 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6275  0.0  0.1 10268 4192 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6279  0.0  0.1 10268 4260 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6280  0.0  0.1 10268 4204 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6283  0.0  0.1 10268 4252 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6285  0.0  0.1 10268 4204 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6292  0.0  0.1 10268 4224 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6297  0.0  0.1 10268 4260 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6310  0.0  0.1 10268 4184 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6313  0.0  0.1 10268 4188 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6316  0.0  0.1 10268 4208 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6318  0.0  0.1 10268 4208 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6329  0.0  0.1 10268 4256 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6339  0.0  0.1 10268 4244 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6340  0.0  0.1 10268 4248 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6347  0.0  0.1 10268 4288 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6350  0.0  0.1 10268 4288 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6351  0.0  0.1 10232 3992 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6356  0.0  0.1 10232 4004 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6359  0.0  0.1 10228 3936 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6362  0.0  0.1 10304 3952 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6368  0.0  0.1 10232 3984 ?        S    11:12   0:00  |   \_ 
dovecot-auth
root      6470  0.0  0.1 10232 3976 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6474  0.0  0.1 10228 3912 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6483  0.0  0.1 10228 3904 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6492  0.0  0.1 10324 3972 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6496  0.0  0.1 10324 3964 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6499  0.0  0.1 10324 3976 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6521  0.0  0.1 10332 3956 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6522  0.0  0.1 10336 4012 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6524  0.0  0.1 10332 3948 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6525  0.0  0.1 10332 3952 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6531  0.0  0.1 10360 4072 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6537  0.0  0.1 10344 4000 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6541  0.0  0.1 10364 4076 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6542  0.0  0.1 10364 4072 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6546  0.0  0.1 10360 4032 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6557  0.0  0.1 10364 4112 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6560  0.0  0.1 10364 4112 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6567  0.0  0.1 10360 4048 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6569  0.0  0.1 10360 4044 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6576  0.0  0.1 10360 4064 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6577  0.0  0.1 10364 4140 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6587  0.0  0.1 10436 4084 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6606  0.0  0.1 10444 4088 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6613  0.0  0.1 10468 4116 ?        S    11:13   0:00  |   \_ 
dovecot-auth
root      6624  0.0  0.1 10480 4188 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6640  0.0  0.1 10488 4128 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6661  0.0  0.1 10468 4084 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6664  0.0  0.1 10472 4164 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6671  0.0  0.1 10492 4164 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6672  0.0  0.1 10492 4164 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6673  0.0  0.1 10496 4240 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6676  0.0  0.1 10492 4184 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6677  0.0  0.1 10492 4188 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6685  0.0  0.1 10492 4164 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6686  0.0  0.1 10492 4196 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6690  0.0  0.1 10492 4192 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6694  0.0  0.1 10492 4184 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6697  0.0  0.1 10580 4236 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6698  0.0  0.1 10576 4224 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6702  0.0  0.1 10492 4188 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6709  0.0  0.1 10568 4216 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6711  0.0  0.1 10568 4224 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6725  0.0  0.1 10580 4228 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6730  0.0  0.1 10592 4236 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6732  0.0  0.1 10600 4252 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6746  0.0  0.1 10600 4248 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6762  0.0  0.1 10612 4244 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6768  0.0  0.1 10624 4268 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6774  0.0  0.1 10624 4252 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6777  0.0  0.1 10628 4356 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6789  0.0  0.1 10624 4284 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6795  0.0  0.1 10624 4296 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6802  0.0  0.1 10624 4304 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6804  0.0  0.1 10628 4380 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6808  0.0  0.1 10624 4328 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6810  0.0  0.1 10624 4308 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6815  0.0  0.1 10624 4320 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6822  0.0  0.1 10724 4348 ?        S    11:14   0:00  |   \_ 
dovecot-auth
root      6896  0.0  0.1 10748 4364 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6920  0.0  0.1 10732 4424 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6942  0.0  0.1 10760 4396 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6943  0.0  0.1 10760 4388 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6951  0.0  0.1 10752 4376 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6961  0.0  0.1 10756 4424 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6962  0.0  0.1 10756 4424 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6970  0.0  0.1 10760 4508 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      6976  0.0  0.1 10756 4448 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7002  0.0  0.1 10856 4472 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7010  0.0  0.1 10868 4484 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7011  0.0  0.1 10868 4488 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7032  0.0  0.1 10856 4476 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7035  0.0  0.1 10848 4564 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7039  0.0  0.1 10864 4572 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7056  0.0  0.1 10756 4448 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7057  0.0  0.1 10756 4448 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7058  0.0  0.1 10756 4448 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7066  0.0  0.1 10888 4516 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7068  0.0  0.1 10876 4500 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7080  0.0  0.1 10864 4476 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7082  0.0  0.1 10888 4524 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7091  0.0  0.1 10864 4492 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7094  0.0  0.1 10900 4480 ?        S    11:15   0:00  |   \_ 
dovecot-auth
root      7105  0.0  0.1 10892 4528 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7135  0.0  0.1 10868 4488 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7140  0.0  0.1 10868 4488 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7141  0.0  0.1 10868 4484 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7156  0.0  0.1 10868 4484 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7164  0.0  0.1 10868 4496 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7176  0.0  0.1 10868 4492 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7187  0.0  0.1 10868 4500 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7196  0.0  0.1 10868 4500 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7216  0.0  0.1 10868 4492 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7220  0.0  0.1 10868 4492 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7222  0.0  0.1 10868 4484 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7223  0.0  0.1 10868 4496 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7224  0.0  0.1 10868 4504 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7232  0.0  0.1 10888 4540 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7235  0.0  0.1 10888 4512 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7238  0.0  0.1 10888 4508 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7240  0.0  0.1 10888 4520 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7246  0.0  0.1 10888 4520 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7248  0.0  0.1 10888 4536 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7250  0.0  0.1 10888 4532 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7256  0.0  0.1 10888 4548 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7259  0.0  0.1 10888 4552 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7261  0.0  0.1 10888 4572 ?        S    11:16   0:00  |   \_ 
dovecot-auth
root      7272  0.0  0.1 10888 4572 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7278  0.0  0.1 10892 4624 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7292  0.0  0.1 10888 4552 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7302  0.0  0.1 10892 4616 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7309  0.0  0.1 10888 4556 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7336  0.0  0.1 10888 4560 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7344  0.0  0.1 10888 4560 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7345  0.0  0.1 10892 4624 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7357  0.0  0.1 10892 4616 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7362  0.0  0.1 10888 4552 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7366  0.0  0.1 10892 4628 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7379  0.0  0.1 10888 4552 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7382  0.0  0.1 10888 4560 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7390  0.0  0.1 10888 4552 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7397  0.0  0.1 10892 4624 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7410  0.0  0.1 10888 4552 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7417  0.0  0.1 10888 4556 ?        S    11:17   0:00  |   \_ 
dovecot-auth
root      7423  0.0  0.1 10888 4552 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7476  0.0  0.1 11028 4672 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7495  0.0  0.1 10888 4580 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7509  0.0  0.1 10892 4644 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7515  0.0  0.1 10888 4584 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7516  0.0  0.1 10892 4652 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7518  0.0  0.1 10892 4660 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7538  0.0  0.1 11024 4736 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7541  0.0  0.1 11020 4652 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7542  0.0  0.1 11024 4732 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7544  0.0  0.1 11020 4664 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7545  0.0  0.1 11020 4668 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7550  0.0  0.1 11020 4656 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7552  0.0  0.1 11020 4656 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7565  0.0  0.1 11020 4656 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7578  0.0  0.1 11020 4640 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7581  0.0  0.1 11020 4648 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7587  0.0  0.1 11020 4652 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7590  0.0  0.1 11020 4636 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7594  0.0  0.1 11020 4664 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7595  0.0  0.1 11020 4660 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7596  0.0  0.1 11020 4664 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7603  0.0  0.1 11020 4708 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7606  0.0  0.1 11148 4720 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7614  0.0  0.1 11156 4740 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7618  0.0  0.1 11160 4736 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7627  0.0  0.1 11152 4744 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7636  0.0  0.1 11152 4756 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7639  0.0  0.1 11164 4764 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7650  0.0  0.1 11152 4552 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7653  0.0  0.1 11152 4572 ?        S    11:18   0:00  |   \_ 
dovecot-auth
root      7657  0.0  0.1 11152 4580 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7670  0.0  0.1 11152 4568 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7675  0.0  0.1 11152 4564 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7693  0.0  0.1 11152 4572 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7694  0.0  0.1 11152 4564 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7700  0.0  0.1 11152 4572 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7712  0.0  0.1 11152 4572 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7715  0.0  0.1 11152 4576 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7721  0.0  0.1 11152 4576 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7726  0.0  0.1 11152 4592 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7728  0.0  0.1 11152 4588 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7729  0.0  0.1 11152 4592 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7738  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7743  0.0  0.1 11152 4624 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7744  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7751  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7756  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7761  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7767  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7768  0.0  0.1 11152 4624 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7779  0.0  0.1 11152 4624 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7780  0.0  0.1 11152 4624 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7781  0.0  0.1 11152 4628 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7791  0.0  0.1 11152 4648 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7800  0.0  0.1 11152 4640 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7803  0.0  0.1 11152 4636 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7807  0.0  0.1 11152 4636 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7808  0.0  0.1 11152 4648 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7814  0.0  0.1 11152 4656 ?        S    11:19   0:00  |   \_ 
dovecot-auth
root      7824  0.0  0.1 11152 4652 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      7826  0.0  0.1 11152 4664 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8227  0.0  0.1 11152 4644 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8229  0.0  0.1 11152 4664 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8244  0.0  0.1 11152 4656 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8252  0.0  0.1 11152 4648 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8258  0.0  0.1 11152 4648 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8269  0.0  0.1 11152 4648 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8271  0.0  0.1 11152 4648 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8276  0.0  0.1 11152 4648 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8286  0.0  0.1 11152 4652 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8300  0.0  0.1 11152 4652 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8315  0.0  0.1 11152 4660 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8331  0.0  0.1 11152 4652 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8332  0.0  0.1 11152 4652 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8338  0.0  0.1 11152 4656 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8339  0.0  0.1 11152 4656 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8344  0.0  0.1 11152 4664 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8349  0.0  0.1 11152 4652 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8356  0.0  0.1 11284 4712 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8357  0.0  0.1 11284 4716 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8358  0.0  0.1 11284 4712 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8360  0.0  0.1 11284 4712 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8369  0.0  0.1 11284 4720 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8371  0.0  0.1 11284 4716 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8375  0.0  0.1 11284 4732 ?        S    11:20   0:00  |   \_ 
dovecot-auth
root      8409  0.0  0.1 11284 4708 ?        S    11:21   0:00  |   \_ 
dovecot-auth
root      8423  0.0  0.1 11284 4712 ?        S    11:21   0:00  |   \_ 
dovecot-auth
dovecot  27036  0.0  0.0  4172 1232 ?        S    10:30   0:00  \_ 
imap-login
dovecot  30926  0.0  0.0  5048 1228 ?        S    10:45   0:00  \_ 
imap-login
dovecot   6894  0.0  0.0  5368 1232 ?        S    11:15   0:00  \_ 
imap-login
dovecot   7817  0.0  0.0  4224 1252 ?        S    11:19   0:00  \_ 
pop3-login
dovecot   7827  0.0  0.0  4736 1260 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8246  0.0  0.0  4912 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8251  0.0  0.0  4012 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8261  0.0  0.0  4868 1260 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8274  0.0  0.0  3856 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8275  0.0  0.0  4216 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8279  0.0  0.0  4760 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8292  0.0  0.0  5240 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8295  0.0  0.0  5176 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8320  0.0  0.0  3704 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8329  0.0  0.0  5096 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8330  0.0  0.0  5440 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8340  0.0  0.0  5496 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8341  0.0  0.0  5000 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8345  0.0  0.0  5524 1260 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8350  0.0  0.0  5368 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8351  0.0  0.0  4536 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8352  0.0  0.0  3560 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8353  0.0  0.0  5320 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8354  0.0  0.0  3536 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8355  0.0  0.0  5432 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8365  0.0  0.0  4312 1220 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8374  0.0  0.0  4160 1256 ?        S    11:20   0:00  \_ 
pop3-login
dovecot   8411  0.0  0.0  4336 1220 ?        S    11:21   0:00  \_ 
pop3-login
dovecot   8424  0.0  0.0  3504 1216 ?        S    11:21   0:00  \_ 
pop3-login
root      2952  0.0  0.0  2700  248 ?        Ss   Dec04   0:00 
mdadm --monitor --scan -f
root      2988  0.0  0.0  8936 2728 ?        Ss   Dec04   0:24 sendmail: 
accepting connections
root     32372  0.0  0.1 10404 4644 ?        S    10:50   0:00  \_ sendmail: 
./kB59LpVi006103 mx1.fitnessgoal.net.: user open
root      3533  0.0  0.0  9552 3332 ?        S    11:02   0:00  \_ sendmail: 
server host231-88-dynamic.3-87-r.retail.telecomitalia.it [87.3.88.231] cmd 
read
root      3643  0.0  0.0  9552 3320 ?        S    11:02   0:00  \_ sendmail: 
server h115-210-243-136.seed.net.tw [210.243.136.115] (may be forged) cmd 
read
smmsp     3000  0.0  0.0  7240 1628 ?        Ss   Dec04   0:00 sendmail: 
Queue runner@01:00:00 for /var/spool/clientmqueue
root      5138  0.0  0.0  5492 1052 ?        Ss   Dec04   0:00 
/usr/sbin/sshd
root      6393  0.0  0.0  9136 2560 ?        Ss   11:13   0:00  \_ sshd: 
admin [priv]
admin     6400  0.0  0.0  9268 2264 ?        S    11:13   0:00      \_ sshd: 
admin@pts/0
admin     6403  0.0  0.0  5840 1640 pts/0    Ss   11:13   0:00 
         \_ -bash
root      6429  0.0  0.0  6472 1512 pts/0    S    11:13   0:00 
\_ su -
root      6430  0.0  0.0  6020 1688 pts/0    S    11:13   0:00 
\_ -bash
root      8425  0.0  0.0  3356 1404 pts/0    R+   11:21   0:00 
\_ ps fauxw
root      5160  0.0  0.0  3188 1032 ?        Ss   Dec04   0:01 
xinetd -stayalive -pidfile /var/run/xinetd.pid
root      5869  0.0  0.0  7484 3140 ?        SNs  11:10   0:00  \_ proftpd: 
71.34.248.94:57891: PASS (hidden)
root      6090  0.0  0.0  8980 3148 ?        SNs  11:11   0:00  \_ proftpd: 
71.34.248.94:57916: PASS (hidden)
root      6244  0.0  0.0  8604 3092 ?        SNs  11:12   0:00  \_ proftpd: 
71.34.248.94:57924: PASS (hidden)
root      6367  0.0  0.0  7080 3064 ?        SNs  11:12   0:00  \_ proftpd: 
70.181.196.126:50990: PASS (hidden)
root      6589  0.0  0.0  8400 3060 ?        SNs  11:13   0:00  \_ proftpd: 
70.181.196.126:50991: PASS (hidden)
root      7046  0.0  0.0  8144 3068 ?        SNs  11:15   0:00  \_ proftpd: 
70.181.196.126:50992: PASS (hidden)
root      7243  0.0  0.0  9096 3056 ?        SNs  11:16   0:00  \_ proftpd: 
70.181.196.126:50993: PASS (hidden)
root      7351  0.0  0.0  8968 3052 ?        SNs  11:17   0:00  \_ proftpd: 
70.181.196.126:50994: PASS (hidden)
root      7593  0.0  0.0  8756 3104 ?        SNs  11:18   0:00  \_ proftpd: 
4.245.1.222:1497: PASS (hidden)
root      7710  0.0  0.0  8976 2860 ?        SNs  11:19   0:00  \_ proftpd: 
4.245.1.222:1499: PASS (hidden)
root      7789  0.0  0.0  7808 2848 ?        SNs  11:19   0:00  \_ proftpd: 
4.245.1.222:1501: PASS (hidden)
root      8253  0.1  0.0  8700 2848 ?        SNs  11:20   0:00  \_ proftpd: 
4.245.1.222:1503: PASS (hidden)
root      8348  0.3  0.0  8940 2848 ?        SNs  11:20   0:00  \_ proftpd: 
4.245.1.222:1504: PASS (hidden)
root      5221  0.0  0.0  4976 1476 ?        S    Dec04   0:00 /bin/sh 
/usr/bin/mysqld_safe --defaults-file=/etc/my.cnf --pid-file=/var/run/mysqld/mysqld.pid
mysql     5251  1.4  2.6 345788 98016 ?      Sl   Dec04  22:39  \_ 
/usr/libexec/mysqld --defaults-file=/etc/my.cnf --basedir=/usr --datadir=/var/lib/mysql 
 --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --socket=/var/lib/mysql/mysql.sock
root      5274  0.0  0.1 19960 6260 ?        Ss   Dec04   0:00 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5284  0.0  0.2 23984 9256 ?        S    Dec04   0:02  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5285  0.0  0.2 24036 9264 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5286  0.0  0.2 24348 9608 ?        S    Dec04   0:02  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5287  0.0  0.2 24288 9596 ?        S    Dec04   0:02  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5288  0.0  0.2 23296 8612 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5289  0.0  0.2 23268 8368 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5290  0.0  0.2 23448 8732 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5291  0.0  0.2 24184 9400 ?        S    Dec04   0:02  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5309  0.0  0.2 23264 8540 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5322  0.0  0.2 24028 9264 ?        S    Dec04   0:02  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache    5323  0.0  0.2 23288 8564 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache   11470  0.0  0.2 23368 8648 ?        S    Dec04   0:02  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache   11487  0.0  0.2 23668 9624 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache   11785  0.0  0.2 23052 8220 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache   11791  0.0  0.2 23128 8392 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
apache   12769  0.0  0.2 23308 8444 ?        S    Dec04   0:01  \_ 
/usr/sbin/httpd.admsrv -f /etc/admserv/conf/httpd.conf
root      5296  0.0  0.8 35320 29180 ?       Ss   Dec04   0:09 
/usr/bin/spamd -d -c -m5 -H
root      5237  2.1  0.9 40884 34588 ?       S    11:09   0:15  \_ spamd 
child
root      5238  0.2  0.8 38660 32444 ?       S    11:09   0:01  \_ spamd 
child
root      5305  0.0  0.0  2196  352 ?        Ss   Dec04   0:00 gpm -m 
/dev/input/mice -t exps2
root      5349  0.0  1.1 66696 40648 ?       Ss   Dec04   0:02 
/usr/sbin/httpd
root     11055  0.0  0.8 55944 31032 ?       S    01:38   0:00  \_ 
/usr/sbin/httpd
apache   11157  0.0  1.1 70144 41636 ?       S    01:39   0:20  \_ 
/usr/sbin/httpd
root      8298  0.8  0.3 17944 11168 ?       S    11:20   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache   17010  0.0  1.1 69200 40044 ?       S    09:47   0:04  \_ 
/usr/sbin/httpd
apache   24279  0.0  1.0 68736 38760 ?       S    10:17   0:03  \_ 
/usr/sbin/httpd
apache   24689  0.0  1.1 69980 40604 ?       S    10:19   0:02  \_ 
/usr/sbin/httpd
apache   30637  0.0  1.0 68684 38172 ?       S    10:43   0:01  \_ 
/usr/sbin/httpd
apache   30643  0.0  1.0 68836 38308 ?       S    10:43   0:01  \_ 
/usr/sbin/httpd
apache   30652  0.0  1.0 68856 39544 ?       S    10:43   0:01  \_ 
/usr/sbin/httpd
apache    1803  0.0  1.0 68540 38384 ?       S    10:56   0:01  \_ 
/usr/sbin/httpd
apache    1816  0.0  1.0 68792 39424 ?       S    10:56   0:01  \_ 
/usr/sbin/httpd
apache    1822  0.0  1.0 68636 38516 ?       S    10:56   0:01  \_ 
/usr/sbin/httpd
apache    1828  0.0  1.0 68704 38720 ?       S    10:56   0:00  \_ 
/usr/sbin/httpd
root      6968  0.0  0.3 18560 11332 ?       S    11:15   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    3670  0.0  1.0 68460 37872 ?       S    11:02   0:00  \_ 
/usr/sbin/httpd
root      6736  0.0  0.3 17780 11388 ?       S    11:14   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    3725  0.0  1.0 68472 38328 ?       S    11:02   0:00  \_ 
/usr/sbin/httpd
apache    3730  0.0  1.0 68508 39124 ?       S    11:02   0:00  \_ 
/usr/sbin/httpd
apache    3735  0.0  1.1 70004 40572 ?       S    11:02   0:01  \_ 
/usr/sbin/httpd
apache    3736  0.0  1.0 68320 38180 ?       S    11:02   0:00  \_ 
/usr/sbin/httpd
apache    3746  0.1  1.0 69508 39444 ?       S    11:03   0:01  \_ 
/usr/sbin/httpd
apache    3755  0.0  1.0 68404 38252 ?       S    11:03   0:00  \_ 
/usr/sbin/httpd
apache    3756  0.0  1.0 68612 39168 ?       S    11:03   0:00  \_ 
/usr/sbin/httpd
apache    3760  0.0  1.0 68260 38956 ?       S    11:03   0:00  \_ 
/usr/sbin/httpd
apache    3764  0.0  1.0 68556 38292 ?       S    11:03   0:00  \_ 
/usr/sbin/httpd
apache    3770  0.0  1.0 68076 37984 ?       S    11:03   0:01  \_ 
/usr/sbin/httpd
apache    3987  0.0  1.0 69256 39848 ?       S    11:03   0:00  \_ 
/usr/sbin/httpd
apache    5067  0.0  1.0 68584 37896 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5077  0.0  1.0 68392 38968 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5080  0.1  1.0 68440 37876 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5082  0.0  1.0 68360 38172 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5083  0.1  1.0 69152 39704 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
root      8416  4.2  0.3 18196 11096 ?       S    11:21   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    5088  0.0  1.0 68064 37824 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5092  0.0  1.0 68492 39064 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5093  0.0  1.0 68412 38188 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5105  0.1  1.0 68452 38372 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5108  0.0  1.0 68384 39108 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5109  0.0  1.0 68392 38780 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
apache    5118  0.1  1.0 69088 39772 ?       S    11:09   0:00  \_ 
/usr/sbin/httpd
root      7697  0.2  0.3 18536 11168 ?       S    11:19   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    5964  0.0  1.0 68272 38080 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5969  0.0  1.0 68976 39576 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5970  0.0  1.0 68068 37316 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
root      6581  0.0  0.3 17732 11332 ?       S    11:13   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    5974  0.0  1.0 68084 38332 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
root      7025  0.2  0.3 19108 11940 ?       S    11:15   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    5975  0.1  1.0 68560 38340 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
root      8278  0.6  0.3 17624 11088 ?       S    11:20   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    5976  0.0  1.0 68628 38008 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5977  0.0  1.0 68412 37976 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5981  0.0  1.0 68536 38264 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5982  0.0  1.0 68072 37896 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5984  0.0  1.0 68620 38444 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5985  0.0  1.0 68580 38320 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5986  0.0  1.0 69220 39732 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5987  0.1  1.0 68368 37772 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5988  0.1  1.0 68668 38360 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5991  0.0  1.0 68864 38632 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5997  0.1  1.0 69136 39644 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5998  0.1  1.0 68352 38408 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    5999  0.0  0.9 66868 35020 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
root      6358  0.0  0.3 17976 11328 ?       S    11:12   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    6001  0.1  1.0 69048 39668 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    6002  0.0  1.0 68552 39244 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    6003  0.0  1.0 68480 38056 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
root      6969  0.0  0.3 16924 11332 ?       S    11:15   0:00  |   \_ 
/usr/bin/suidperl -T 
/dev/fd/3//home/nuonce/openwebmail/cgi-bin/openwebmail/openwebmail.pl
apache    6005  0.0  1.0 68504 37844 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    6006  0.0  1.0 68348 38132 ?       S    11:10   0:00  \_ 
/usr/sbin/httpd
apache    7042  0.0  1.0 68200 37896 ?       S    11:15   0:00  \_ 
/usr/sbin/httpd
root      5491  0.0  0.0 12276  640 ?        S    Dec04   0:00 
/home/chiliasp/asp-server-3000/caspd
root      5492  0.0  0.0 12276  640 ?        S    Dec04   0:00  \_ 
/home/chiliasp/asp-server-3000/caspd
root      5493  0.0  0.0 12276  640 ?        S    Dec04   0:00  |   \_ 
/home/chiliasp/asp-server-3000/caspd
root      5514  0.0  0.8 396008 32480 ?      S    Dec04   0:00  \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5522  0.0  0.8 396008 32480 ?      S    Dec04   0:00      \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5523  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5524  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5525  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5526  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5527  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5528  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23018  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23019  0.0  0.8 396008 32480 ?      S    Dec04   0:01          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23020  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23022  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23023  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23024  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23025  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23026  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23027  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23028  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23029  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23030  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23031  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23032  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23033  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23034  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root     23035  0.0  0.8 396008 32480 ?      S    Dec04   0:00          \_ 
/home/chiliasp/asp-server-3000/caspeng -p:3001 -mt:5 -iu
root      5764  0.0  0.0 12276  640 ?        S    Dec04   0:00 
/home/chiliasp/admin/bin/admdog
root      5765  0.0  0.0 12276  640 ?        S    Dec04   0:00  \_ 
/home/chiliasp/admin/bin/admdog
root      5766  0.0  0.0 12276  640 ?        S    Dec04   0:00  |   \_ 
/home/chiliasp/admin/bin/admdog
root      5785  0.0  0.4 89532 17220 ?       S    Dec04   0:00  \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root      5786  0.0  0.4 89532 17220 ?       S    Dec04   0:00      \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root      5793  0.0  0.4 89532 17220 ?       S    Dec04   0:00          \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root      5794  0.0  0.4 89532 17220 ?       S    Dec04   0:00          \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root     24607  0.0  0.4 89532 17220 ?       S    Dec04   0:00          \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root     24608  0.0  0.4 89532 17220 ?       S    Dec04   0:00          \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root     24609  0.0  0.4 89532 17220 ?       S    Dec04   0:00          \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root     24610  0.0  0.4 89532 17220 ?       S    Dec04   0:00          \_ 
/home/chiliasp/admin/bin/admeng -p:5102 -mt:1
root      5798  0.0  0.0  3484 1320 ?        Ss   Dec04   0:00 
/home/chiliasp/admin/bin/admd -f /home/chiliasp/admin/conf/admd.conf
nobody    5799  0.0  0.0  3488 1468 ?        S    Dec04   0:00  \_ 
/home/chiliasp/admin/bin/admd -f /home/chiliasp/admin/conf/admd.conf
nobody   24436  0.0  0.0  3488 1464 ?        S    Dec04   0:00  \_ 
/home/chiliasp/admin/bin/admd -f /home/chiliasp/admin/conf/admd.conf
root      5810  0.0  0.0  6780 1180 ?        Ss   Dec04   0:00 crond
root      2695  0.0  0.0  8320 1540 ?        S    01:02   0:00  \_ crond
root      2699  0.0  0.0  2844  928 ?        Ss   01:02   0:00  |   \_ 
/bin/bash /usr/bin/run-parts /etc/cron.daily
root      1741  0.0  0.0  3980  896 ?        SN   10:55   0:00  |   |   \_ 
/bin/sh /etc/cron.daily/slocate.cron
root      1745  2.0  0.0  2568  976 ?        DN   10:55   0:31  |   |   | 
\_ /usr/bin/updatedb
root      1742  0.0  0.0  2992  552 ?        S    10:55   0:00  |   |   \_ 
awk -v progname=/etc/cron.daily/slocate.cron progname {?????   print 
progname ":\n"?????   progname="";????       }????       { print; }
smmsp     8833  0.0  0.0  8072 2900 ?        S    01:38   0:00  |   \_ 
/usr/sbin/sendmail -FCronDaemon -i -odi -oem -oi -t
root      6836  0.0  0.0  8316 1504 ?        S    11:15   0:00  \_ crond
root      6847  0.0  0.1  8456 5080 ?        Ss   11:15   0:00      \_ 
/usr/bin/perl -I/usr/sausalito/perl /usr/sbin/swatch -c /etc/swatch.conf
root      5819  0.0  0.1  8776 3692 ?        S    Dec04   0:19 /usr/bin/perl 
/usr/sbin/poprelayd -d
dbus      5828  0.0  0.0  4272 1072 ?        Ss   Dec04   0:00 
dbus-daemon-1 --system
root      5838  0.0  0.1  8236 5664 ?        Ss   Dec04   0:04 hald
root      5845  0.0  0.0  3344  408 tty1     Ss+  Dec04   0:00 
/sbin/mingetty tty1
root      5846  0.0  0.0  3060  412 tty2     Ss+  Dec04   0:00 
/sbin/mingetty tty2
root      5847  0.0  0.0  2800  408 tty3     Ss+  Dec04   0:00 
/sbin/mingetty tty3
root      5848  0.0  0.0  2456  408 tty4     Ss+  Dec04   0:00 
/sbin/mingetty tty4
root      5849  0.0  0.0  2780  412 tty5     Ss+  Dec04   0:00 
/sbin/mingetty tty5
root      5850  0.0  0.0  2772  412 tty6     Ss+  Dec04   0:00 
/sbin/mingetty tty6
root     29185  0.1  0.1 10664 4056 ?        S    10:38   0:04 sendmail: 
./kB5IbuCW028996 mx3.hotmail.com.: client DATA 354
root      6786  0.0  0.1  7860 4024 ?        S    11:14   0:00 
/usr/bin/perl -I/usr/sausalito/perl /usr/sausalito/sbin/vsite_destroy.pl 
site237 /base/vsite/vsiteList.php
root      6997  0.0  0.1 13832 6540 ?        S    11:15   0:00 pperld 
/usr/sausalito/handlers/base/vsite/system_adminuser.pl

----
Ken Marcus
Precision Web Hosting, Inc.
http://www.precisionweb.net