Statistics Sawmill – commercial (need licenses), many formats AWStats – open source Pflogsum – open source Graphing If you need to graph your mail server performance in real time you might try to use one of the graphing scripts. All of them use
Install maildrop filters on SquirrelMail webmail client
Had to activate the following modules in SquirrelMail: server_settings_backend server_side_filters server_side_filters_maildrop In the sqmail/config/config.php file we must have the following settings: $default_folder_prefix = ‘INBOX’; $trash_folder = ‘.Trash’; $sent_folder = ‘.Sent’; $draft_folder = ‘.Drafts’; Especially important is the $default_folder_prefix, which is removed
Future of SMTP
Resources Opinion: Is It Time to Replace SMTP?
crond: Authentication token is no longer valid; new one required
Problem Your cron scritps stop running. Analysis Examine your log – most often /var/log/messages. If you find there something like this: Sep 27 19:00:01 ns2 crond[8163]: Authentication token is no longer valid; new one required then the password of a
Examples of ‘find’ Command Usage
Examples of find usage: find /var/spool -mtime +60 Find every file under the directory /var/spool that was modified more than 60 days ago. find /tmp -name core -type f -print | xargs /bin/rm -f Find files named core in or