From f41485d5035b46e9832def835ddd2f9015e834a2 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Thu, 13 Dec 2012 17:01:30 -0800 Subject: [PATCH] Added email notification support --- .../0.8.0/postprocess.conf | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/nzbget-postprocessing-files/0.8.0/postprocess.conf b/nzbget-postprocessing-files/0.8.0/postprocess.conf index 84173160..839ee67f 100644 --- a/nzbget-postprocessing-files/0.8.0/postprocess.conf +++ b/nzbget-postprocessing-files/0.8.0/postprocess.conf @@ -75,3 +75,35 @@ Password= # # NOTE: NZBGet must have write-access-rights for that directory. DestDir= + +############################################################################## +### EMAIL-PARAMETERS ### + +# This section defines parameters, which can be set to allow notifications to +# be sent via email. +# This uses sendEmail as authoried by Brandon Zehm + +#Specify if you want emails to be sent for successful downloads. +Email_successful=yes + +#Specify if you want emails to be sent for failed downloads. +Email_failed=yes + +# Set the full path to sendEmail. +sendEmail=/usr/local/nzbget/var/sendEmail + +# Enter the email address you want this email to be sent from. +Email_From= + +# Enter the email address you want this email to be sent to. +Email_To= + +# Enter smtp server and port. eg smtp.live.com:25 +Email_Server= + +# Enter your smtp server user name (if required) +Email_User= + +# Enter your smtp server password (if required) +Email_Pass= +