From 9db7b6b55f1d81a6a0e8439b371605fac92e2989 Mon Sep 17 00:00:00 2001 From: Linus Rath <139418639+rathlinus@users.noreply.github.com> Date: Thu, 4 Jun 2026 10:40:42 +0200 Subject: [PATCH] docs: clarify signature byte cap comment is Stalwart-specific --- components/identity/identity-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/identity/identity-form.tsx b/components/identity/identity-form.tsx index 30b1898f..b1d67240 100644 --- a/components/identity/identity-form.tsx +++ b/components/identity/identity-form.tsx @@ -8,7 +8,7 @@ import type { Identity, EmailAddress } from '@/lib/jmap/types'; import { sanitizeSignatureHtml } from '@/lib/email-sanitization'; import { getEmailValidationError, validateEmailList } from '@/lib/validation'; -// JMAP Identity/set caps signature fields at 2047 UTF-8 bytes per RFC 8621 ยง6.1. +// Stalwarts JMAP Identity/set caps signature fields at 2047 UTF-8 bytes const SIGNATURE_MAX_BYTES = 2047; const utf8Encoder = new TextEncoder();