diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:14:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:14:45 +0000 |
commit | 43e8530e93493bb978c446a2023134bdd4277e50 (patch) | |
tree | e8c0d3c0c394b17381f48fb2d288f166b4f22440 /os_win32/smartd_mailer.conf.sample.ps1 | |
parent | Initial commit. (diff) | |
download | smartmontools-upstream.tar.xz smartmontools-upstream.zip |
Adding upstream version 7.4.upstream/7.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'os_win32/smartd_mailer.conf.sample.ps1')
-rw-r--r-- | os_win32/smartd_mailer.conf.sample.ps1 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/os_win32/smartd_mailer.conf.sample.ps1 b/os_win32/smartd_mailer.conf.sample.ps1 new file mode 100644 index 0000000..b82c9a3 --- /dev/null +++ b/os_win32/smartd_mailer.conf.sample.ps1 @@ -0,0 +1,31 @@ +# Sample file for smartd_mailer.conf.ps1 +# +# Home page of code is: http://www.smartmontools.org +# $Id: smartd_mailer.conf.sample.ps1 4338 2016-09-07 19:31:28Z chrfranke $ + +# SMTP Server +$smtpServer = "smtp.domain.local" + +# Optional settings [default values in square brackets] + +# Sender address ["smartd daemon <root@$hostname>"] +#$from = "Administrator <root@domain.local>" + +# SMTP Port [25] +#$port = 587 + +# Use STARTTLS [$false] +#$useSsl = $true + +# SMTP user name [] +#$username = "USER" + +# Plain text SMTP password [] +#$password = "PASSWORD" + +# Encrypted SMTP password [] +# (embedded newlines, tabs and spaces are ignored) +#$passwordEnc = " +# 0123456789abcdef... +# ... +#" |