| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/doc/smartmontools/examplescripts/ |
Upload File : |
#! /bin/sh
#
# This is a script from the smartmontools examplescripts/ directory.
# It can be used as an argument to the -M exec Directive in
# /etc/smartd.conf, in a line like
# ... -m root@localhost -M exec /path/to/this/file
#
# See also: smartd.conf(5), smartd(8).
#
# $Id: Example8 5404 2022-08-06 17:15:49Z chrfranke $
# Skip if '-m <nomailer>' is set
test -n "$SMARTD_ADDRESS" || exit 0
# Try mail[x]
# Note: The 'command -v' builtin requires a POSIX >= 2008 conforming shell
for mailer in \
$(command -v mail 2>/dev/null) \
$(command -v mailx 2>/dev/null) \
/usr/bin/mail \
/usr/bin/mailx
do
test -f "$mailer" || continue
test -x "$mailer" || continue
exec "$mailer" -s "${SMARTD_SUBJECT-[SMARTD_SUBJECT]}" $SMARTD_ADDRESS <<EOF
${SMARTD_FULLMESSAGE-[SMARTD_FULLMESSAGE]}
EOF
exit $?
done
# Try sendmail
for sendmail in \
/usr/sbin/sendmail \
/usr/lib/sendmail
do
test -f "$sendmail" || continue
test -x "$sendmail" || continue
exec "$sendmail" $SMARTD_ADDRESS <<EOF
Subject: ${SMARTD_SUBJECT-[SMARTD_SUBJECT]}
To: $(echo $SMARTD_ADDRESS | sed 's/ /, /g')
${SMARTD_FULLMESSAGE-[SMARTD_FULLMESSAGE]}
EOF
exit $?
done
echo "$0: found none of 'mail', 'mailx' or 'sendmail'"
exit 1