Page 1 of 1

Mail Server stopped responding

Posted: Wed Aug 16, 2017 9:28 am
by geofbuck
I can no longer log in to my mail server. Mail stopped working, app spins and never loads. Anyone know a fix? It took me FOREVER to get it up and running and I don't want to uninstall re-installon the faint hope it might work again. FRUSTRATING ASUSTOR!!

Re: Mail Server stopped responding

Posted: Wed Aug 16, 2017 10:01 am
by orion
Not sure if it's only mail server or other applications as well. I think you'd better to send a support request to asustor to check it. https://support.asustor.com/

Re: Mail Server stopped responding

Posted: Mon Dec 31, 2018 12:27 pm
by Stik
I had the same problem. It turned out to be that the log file was too large.
I deleted the log file and all was fine. Let me know if you need help with that.

Re: Mail Server stopped responding

Posted: Wed Jul 31, 2019 2:54 pm
by earthwalkerx
Stik wrote:I had the same problem. It turned out to be that the log file was too large.
I deleted the log file and all was fine. Let me know if you need help with that.
Thank you, that helps me a lot. :D
My log was 116Mb big and the gui was in a loading loop. I ask the asustor support to fix that asap.

br

Re: Mail Server stopped responding

Posted: Fri Nov 01, 2019 11:12 pm
by Telek
This problem has been several years old. I also wrote in support, but nothing changes.
I wrote a script and run it once a day through cron
10000 is the number of lines that will remain after cleaning.

Code: Select all

LINES=`cat /usr/local/AppCentral/mail-server/log/*maillog | wc -l`
let DLINES=$LINES-10000
sed -i '1,'$DLINES'd' /usr/local/AppCentral/mail-server/log/maillog