diff --git a/AutoTx/AutoTx.cs b/AutoTx/AutoTx.cs
index 766381147d93163b614c05be7ba3c947521ce8d4..63ce7c8b5dc4fe400170b4bf8727c0140de6823f 100644
--- a/AutoTx/AutoTx.cs
+++ b/AutoTx/AutoTx.cs
@@ -289,6 +289,9 @@ namespace AutoTx
                 writeLogDebug("SmtpHost: ====== Not configured, disabling notification emails! ======");
             } else {
                 writeLogDebug("SmtpHost: " + _config.SmtpHost);
+                writeLogDebug("EmailFrom: " + _config.EmailFrom);
+                writeLogDebug("AdminEmailAdress: " + _config.AdminEmailAdress);
+                writeLogDebug("AdminDebugEmailAdress: " + _config.AdminDebugEmailAdress);
             }
             writeLogDebug("");
 
diff --git a/AutoTx/Resources/configuration-example.xml b/AutoTx/Resources/configuration-example.xml
index 728571aab357fc9469153a4b88778d5d892dcc39..613981cc0315a4088c6aab42d385f624d8e918b7 100644
--- a/AutoTx/Resources/configuration-example.xml
+++ b/AutoTx/Resources/configuration-example.xml
@@ -78,4 +78,7 @@
          admin notification before sending the next one -->
     <AdminNotificationDelta>60</AdminNotificationDelta>
     <AdminEmailAdress>admin@mydomain.xy</AdminEmailAdress>
+    <!-- AdminDebugEmailAdress: an email address where to send certain debug
+         messages to, e.g. on completed transfers. Can be empty. -->
+    <AdminDebugEmailAdress>admin@mydomain.xy</AdminDebugEmailAdress>
 </ServiceConfig>
\ No newline at end of file
diff --git a/AutoTx/XmlWrapper/ServiceConfig.cs b/AutoTx/XmlWrapper/ServiceConfig.cs
index d840a892115b9e0eb2ac4dcd5cd3d002e5fbe988..087f4693db70be1651766190ceca4a04e24e3900 100644
--- a/AutoTx/XmlWrapper/ServiceConfig.cs
+++ b/AutoTx/XmlWrapper/ServiceConfig.cs
@@ -59,6 +59,7 @@ namespace AutoTx.XmlWrapper
         public string SmtpPasswortCredential { get; set; }
         public string EmailFrom { get; set; }
         public string AdminEmailAdress { get; set; }
+        public string AdminDebugEmailAdress { get; set; }
         public string EmailPrefix { get; set; }
 
         public int ServiceTimer { get; set; }