Changed the signature and now is working like a charm. User uploaded some random stuff from canva idk.
How to change the signature, just in case:
`
SELECT JSON_EXTRACT(c_defaults, ‘$.SOGoMailIdentities[0].signature’)
FROM sogo_user_profile WHERE c_uid = ‘some@mail.com’;
UPDATE sogo_user_profile
SET c_defaults = JSON_SET(
c_defaults,
‘$.SOGoMailIdentities[0].signature’,
‘<p>New Signature<br>’
)
WHERE c_uid = ‘some@mail.com’;
`