Added identity setting to send Unicode addresses

This commit is contained in:
M66B
2020-04-13 09:11:25 +02:00
parent fa0ffd0c21
commit fc33f471bb
9 changed files with 2266 additions and 12 deletions

View File

@@ -239,6 +239,10 @@ public class EmailService implements AutoCloseable {
properties.put("mail." + protocol + ".rsetbeforequit", Boolean.toString(keep));
}
void setUnicode(boolean value) {
properties.put("mail.mime.allowutf8", Boolean.toString(value));
}
void setListener(StoreListener listener) {
this.listener = listener;
}