mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-03 03:19:24 +01:00
Added account setting to ignore bodystructure size
This commit is contained in:
@@ -142,8 +142,11 @@ public class MailService implements AutoCloseable {
|
||||
}
|
||||
|
||||
void setPartialFetch(boolean enabled) {
|
||||
if (!enabled)
|
||||
properties.put("mail." + protocol + ".partialfetch", "false");
|
||||
properties.put("mail." + protocol + ".partialfetch", Boolean.toString(enabled));
|
||||
}
|
||||
|
||||
void setIgnoreBodyStructureSize(boolean enabled) {
|
||||
properties.put("mail." + protocol + ".ignorebodystructuresize", Boolean.toString(enabled));
|
||||
}
|
||||
|
||||
void setUseIp(boolean enabled) {
|
||||
|
||||
Reference in New Issue
Block a user