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

SMTP Proxy Filter out of control

Hi All,

My SMTP proxy has quarantined over 35k smtp messages in the content filter.  This is causing issues, and the spam digest is not being sent out given it cannot process that many emails.

If I try to access the Proxy Content Manager via the WebAdmin, Wedadmin will crash, and i will have to reboot the entire system to get things working.

Can somebody please tell me how to manually clear our the content manager via SSH?  Also, where are all of the quarantined messages stored?  I need a specific path.

I am using the software version of ASG: 6.313.

Thank you for your help!


This thread was automatically locked due to age.
Parents
  • My issue is not entirely resolved yet, but we're getting there.

    I thought I'd share what I've learned:

    Everything caught by the filters is stored in: 

    /var/storage/chroot-smtp/spool/Finput

    You can run: ls -l|wc -l and this will tell you how many items are in the directory.

    To remove the messages by age, you can run the following:

    find /var/storage/chroot-smtp/spool/Finput -type f -mtime +3 -print | xargs rm

    At the end of it all, don't ever let your filter's reach over 10,000 messages or you will begin to have problems.  The Proxy Content Manager will crash and will cause other back end issues.

    Feel free to add any input.
Reply
  • My issue is not entirely resolved yet, but we're getting there.

    I thought I'd share what I've learned:

    Everything caught by the filters is stored in: 

    /var/storage/chroot-smtp/spool/Finput

    You can run: ls -l|wc -l and this will tell you how many items are in the directory.

    To remove the messages by age, you can run the following:

    find /var/storage/chroot-smtp/spool/Finput -type f -mtime +3 -print | xargs rm

    At the end of it all, don't ever let your filter's reach over 10,000 messages or you will begin to have problems.  The Proxy Content Manager will crash and will cause other back end issues.

    Feel free to add any input.
Children
No Data