mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 06:38:29 +02:00
Allow larger user message size
This commit is contained in:
@@ -556,9 +556,11 @@ public class ServiceSend extends ServiceBase {
|
||||
throw new IOException("Test");
|
||||
db.identity().setIdentityState(ident.id, "connected");
|
||||
|
||||
Long max_size = iservice.getMaxSize();
|
||||
if (max_size != null)
|
||||
db.identity().setIdentityMaxSize(ident.id, max_size);
|
||||
if (ident.max_size == null) {
|
||||
Long max_size = iservice.getMaxSize();
|
||||
if (max_size != null)
|
||||
db.identity().setIdentityMaxSize(ident.id, max_size);
|
||||
}
|
||||
|
||||
Address[] to = imessage.getAllRecipients();
|
||||
String via = "via " + ident.host + "/" + ident.user +
|
||||
|
||||
Reference in New Issue
Block a user