feat: raise HTML signature length cap to 50000 chars

5000 chars is too tight for signatures containing base64-embedded images (even a small PNG can run a few thousand chars).
This commit is contained in:
Timo Streule
2026-05-15 14:46:43 +02:00
committed by Linus Rath
parent 55a408e810
commit 4b7009dfc2
+1 -1
View File
@@ -263,7 +263,7 @@ export function IdentityForm({ identity, onSave, onCancel }: IdentityFormProps)
</label> </label>
<textarea <textarea
id="identity-html-sig" id="identity-html-sig"
maxLength={5000} maxLength={50000}
value={formData.htmlSignature} value={formData.htmlSignature}
onChange={(e) => setFormData({ ...formData, htmlSignature: e.target.value })} onChange={(e) => setFormData({ ...formData, htmlSignature: e.target.value })}
rows={5} rows={5}