I need to know which MTA is better and simple to handle and configure in linux, as I need to run a script that will send me the output of a command launched regularly using cron.
The case is the following: Every day I have to manually check the Disk space of more than 30 servers and to document the results. So I plan to simply add df -h in my crontab, and send the output on my email.
So my question is: which MTA is better? sendmail, postfix, any other? And I'd like some instructions on how to install and configure it.
After the setup, how can I add send to myself the output of df -h?
for server in foo bar baz; do ssh user@$server df -h; done– RedGrittyBrick Sep 19 '12 at 14:11