smartd_mailer.conf.sample.ps1 676 B

12345678910111213141516171819202122232425262728293031
  1. # Sample file for smartd_mailer.conf.ps1
  2. #
  3. # Home page of code is: http://www.smartmontools.org
  4. # $Id: smartd_mailer.conf.sample.ps1 4338 2016-09-07 19:31:28Z chrfranke $
  5. # SMTP Server
  6. $smtpServer = "smtp.domain.local"
  7. # Optional settings [default values in square brackets]
  8. # Sender address ["smartd daemon <root@$hostname>"]
  9. #$from = "Administrator <[email protected]>"
  10. # SMTP Port [25]
  11. #$port = 587
  12. # Use STARTTLS [$false]
  13. #$useSsl = $true
  14. # SMTP user name []
  15. #$username = "USER"
  16. # Plain text SMTP password []
  17. #$password = "PASSWORD"
  18. # Encrypted SMTP password []
  19. # (embedded newlines, tabs and spaces are ignored)
  20. #$passwordEnc = "
  21. # 0123456789abcdef...
  22. # ...
  23. #"