Guest User

Untitled

a guest
Jun 13th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. /* SMTP Email Alert action
  2. *
  3. * - action_email_smtp_host : Which smtp server to use
  4. * - action_email_smtp_auth : Whether or not to authenticate with
  5. * the smtp host
  6. * 0: We do NOT authenticate ourselves towards the smtp host
  7. * 1: We DO authenticate ourselves towards the smtp host
  8. * with the following credentials:
  9. * - action_email_smtp_user : The user name with the smtp host
  10. * - action_email_smtp_pw : The password for this mail account
  11. * - action_email_from : email address to use in the FROM field of the mail message
  12. * MUST be the same email address used for the SMTP account
  13. * - action_email_subject : subject to use for the mail message
  14. * - action_email_msg : additional text to include in the body of the mail message
  15. * - action_email_mode : specifies how the alert information should be enclosed
  16. * 0 : all emailed alerts should be in the body of the message
  17. * 1 : all emailed alerts should be enclosed in an attachment
  18. */
  19. $action_email_smtp_host = '192.168.1.25';
  20. $action_email_smtp_auth = 1;
  21. $action_email_smtp_user = '';
  22. $action_email_smtp_pw = '';
  23. $action_email_from = 'snortbox.hippiemafia.org';
  24. $action_email_subject = 'BASE Incident Report';
  25. $action_email_msg = '';
  26. $action_email_mode = 0;
Add Comment
Please, Sign In to add comment