diff --git a/mayordomo/smtpd.py b/mayordomo/smtpd.py index e9522dc..8ea498f 100644 --- a/mayordomo/smtpd.py +++ b/mayordomo/smtpd.py @@ -55,7 +55,7 @@ class ilabHandler: try: dbremitente = await validate_direccion(str(envelope.mail_from)) - dbcarta = Carta(remitente=dbremitente, contenido=envelope.content.decode('latin1')) + dbcarta = Carta(remitente=dbremitente, contenido=envelope.content.decode('utf-8')) db.add(dbcarta) await db.commit()