From a300dfc8e64eb1b7b758da553bed662f054656d9 Mon Sep 17 00:00:00 2001 From: Nick Russler Date: Thu, 29 Apr 2021 18:16:54 +0200 Subject: [PATCH] Issue #32: Fix corrupted eml attachments Caused by java-simple-mail dependency bug (https://git.io/J3qV9). --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 04f3cca..5c8d228 100644 --- a/build.gradle +++ b/build.gradle @@ -40,8 +40,8 @@ dependencies { implementation 'com.beust:jcommander:1.78' implementation 'org.apache.tika:tika-core:1.24.1' implementation 'com.github.markusbernhardt:proxy-vole:1.0.5' - implementation 'org.simplejavamail:simple-java-mail:6.4.3' - implementation 'org.simplejavamail:outlook-module:6.4.3' + implementation 'org.simplejavamail:simple-java-mail:6.5.2' + implementation 'org.simplejavamail:outlook-module:6.5.2' implementation 'org.slf4j:slf4j-simple:1.7.30' testImplementation 'junit:junit:4.+'