From c94ec3f4d44fd34bf72d4d75d00a1231b0bbba70 Mon Sep 17 00:00:00 2001 From: ahmedbodi Date: Thu, 28 Nov 2013 09:37:38 +0000 Subject: [PATCH] Add Email Notofications --- conf/config_sample.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/conf/config_sample.py b/conf/config_sample.py index 91f6cb6..0754600 100644 --- a/conf/config_sample.py +++ b/conf/config_sample.py @@ -162,3 +162,12 @@ GW_ENABLE = True # Enable the Proxy GW_PORT = 3333 # Getwork Proxy Port GW_DISABLE_MIDSTATE = False # Disable midstate's (Faster but breaks some clients) GW_SEND_REAL_TARGET = True # Propigate >1 difficulty to Clients (breaks some clients) + +# ******************** E-Mail Notification Settings ********************* +NOTIFY_EMAIL_TO = '' # Where to send Start/Found block notifications +NOTIFY_EMAIL_TO_DEADMINER = '' # Where to send dead miner notifications +NOTIFY_EMAIL_FROM = 'root@localhost' # Sender address +NOTIFY_EMAIL_SERVER = 'localhost' # E-Mail Sender +NOTIFY_EMAIL_USERNAME = '' # E-Mail server SMTP Logon +NOTIFY_EMAIL_PASSWORD = '' +NOTIFY_EMAIL_USETLS = True