Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2017-01-10 01:21:00 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2017-01-10 01:21:00 +0300
commit6bb1579aa9f50a728e761afbe7a506cca9689169 (patch)
tree3416d2c3fe97303c52be80c55e5624f7e2129175 /Duplicati/Library/Interface
parentf6645ab14267dcad62f39d1b0b9a5de9e7a01c6d (diff)
Updated MailKit, fixed a bug with DnsLite, added backward compatible tls support from MailKit.
This fixes #1540. This fixes #1948. This fixes #2060 This fixes #2225
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index fc0af4b8a..f49d51079 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -309,5 +309,11 @@ namespace Duplicati.Library.Interface
IPurgeFilesResults PurgeResults { get; }
IDeleteResults DeleteResults { get; }
}
+
+ public interface ISendMailResults : IBasicResults
+ {
+ IEnumerable<string> Lines { get; }
+ }
+
}