Eximstats too large
If the size of your eximstats database is too large, you can do the following steps to empty it. Login to mysql server from root. [root@srv1 ~]# mysql mysql> use eximstats; Database changed mysql> show tables; +———————+ | Tables_in_eximstats | +———————+ | defers | | failures | | sends | | smtp | +———————+ 4 rows in set (0.00 sec) mysql> delete from defers; Query OK, 0 rows affected (0.52 sec) mysql> delete from failures; Query OK, 0 rows affected […]
Read More