Fetch SMTP max message size

This commit is contained in:
M66B
2020-07-01 23:34:53 +02:00
parent e109fa4b46
commit b39ed003b6
8 changed files with 2310 additions and 4 deletions

View File

@@ -112,6 +112,9 @@ public interface DaoIdentity {
@Query("UPDATE identity SET sign_key_alias = :alias WHERE id = :id")
int setIdentitySignKeyAlias(long id, String alias);
@Query("UPDATE identity SET max_size = :max_size WHERE id = :id")
int setIdentityMaxSize(long id, Integer max_size);
@Query("UPDATE identity SET error = :error WHERE id = :id")
int setIdentityError(long id, String error);