Added MAIL and MESSAGE services.

This commit is contained in:
CalDescent 2023-04-29 17:45:38 +01:00
parent f044166b81
commit 36e944d7e2

View File

@ -159,7 +159,9 @@ public enum Service {
DATABASE(1700, false, null, false, null),
SNAPSHOT(1710, false, null, false, null),
COMMENT(1800, true, 500*1024L, true, null),
CHAIN_COMMENT(1810, true, 239L, true, null);
CHAIN_COMMENT(1810, true, 239L, true, null),
MAIL(1900, true, null, true, null),
MESSAGE(1910, true, null, true, null);
public final int value;
private final boolean requiresValidation;