This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Content Manager

How many emails do you guys have in your quarantine?

After 7 days (deleting after 7), mine's over 100,000 and when trying to access content manager from a gui results in content_manager process consuming about 2GB of memory before I can get to the proper page on the admin gui; takes ~30 minutes.

Is this normal?

I'm now taking steps to reduce the amount of email in content manager
- Reduce time to keep to 5 days
- Start Blackholing some email (which I hate to do)


This thread was automatically locked due to age.
Parents
  • Hi JamesD,

    I had the same problem with over 180.000 mails in quarantine. There is a script content_manager.pl that tries to build a digest of these mails and gets stuck. Worse still it gets called again and again if you call "Content Manager" in webadmin. Only solution was to nuke the qurantine mails on the astaro box as root with: 

    /usr/local/bin/content_manager.pl global_nuke del_quarantine_other

    You can have a lock at this file, it is not a compiled perl program.
    That freed the memory and the load declined to normal levels.

    Hope that holps you too.

    Regards,
    JoeM
  • Thanks for the feedback; I've been playing with this one for a week or so and it seems with 3GB memory the box is beginning to overload with ~130,000 items in the proxy content manager.

    Going to change retention to 4 days from 7 so I don't have to keep a close eye on it.

    Thanks for the nuke command; may come in handy sometime [:)]
Reply
  • Thanks for the feedback; I've been playing with this one for a week or so and it seems with 3GB memory the box is beginning to overload with ~130,000 items in the proxy content manager.

    Going to change retention to 4 days from 7 so I don't have to keep a close eye on it.

    Thanks for the nuke command; may come in handy sometime [:)]
Children
  • Another way to delete from the command line is to use a message age greater than:

    find /var/storage/chroot-smtp/spool/Finput -name \* -mtime +7 -exec rm {} \;

    Change the value from +7 to +5, +3 example to remove messages older than 7 days, 5 days, 3 days etc...