Increased max message size

This commit is contained in:
M66B 2021-10-28 12:40:00 +02:00
parent afb8ecf287
commit fdaa95b59c
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ public class MessageHelper {
static final String HEADER_CORRELATION_ID = "X-Correlation-ID";
private static final int MAX_HEADER_LENGTH = 998;
private static final int MAX_MESSAGE_SIZE = 10 * 1024 * 1024; // bytes
private static final int MAX_MESSAGE_SIZE = 20 * 1024 * 1024; // bytes
private static final long ATTACHMENT_PROGRESS_UPDATE = 1500L; // milliseconds
private static final int MAX_META_EXCERPT = 1024; // characters
private static final int FORMAT_FLOWED_LINE_LENGTH = 72;