I've set up Postfix on my Linode. The majority of emails are sent/received through Google Apps, but Postfix lets me create emails in PHP forms.
When I try to send an email via the command line though, I get
Code:
mail: command not found
I'm not sure how Postfix works, but is there another tool I should be installing to make this work, or is it something I can configure within Postfix?
Here's the script I'm running btw:
Code:
#!/bin/sh
( rkhunter --versioncheck
rkhunter --update
rkhunter --cronjob --report-warnings-only
) | mail -s "Rkhunter Output" michael@problogdesign.com
Really appreciate any ideas on what to try, thanks!