Advertisement
Guest User

Untitled

a guest
Jun 18th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. set smtp-use-starttls
  2. set nss-config-dir=/home/theuser/.certs
  3. set ssl-verify=ignore
  4. set smtp=smtp://smtp.gmail.com:587
  5. set smtp-auth=login
  6. set smtp-auth-user=xxx
  7. set smtp-auth-password=yyy
  8. set from="rabbitovh@thehologram.com(Rabbit Server)"
  9.  
  10. echo "hi" | mailx xxx@gmail.com
  11.  
  12. CRONDARGS="-m /usr/bin/mailx"
  13.  
  14. MAILTO="xxx@gmail.com"
  15.  
  16. # Every minute check processes are running, restart if necessary and send an email.
  17. * * * * * source /home/theuser/.bashrc; global audit_regular
  18.  
  19. # Every day, send an email describing the state of the host and its jobs.
  20. 0 5 * * * source /home/theuser/.bashrc; global audit_daily
  21.  
  22. # Every Monday at 7am, archive the logs.
  23. 0 7 * * 1 source /home/theuser/.bashrc; global archive_logs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement