https://bugs.openldap.org/show_bug.cgi?id=9193
Bug ID: 9193 Summary: HTML in mailing list description Product: website Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: normal Priority: --- Component: website Assignee: bugs@openldap.org Reporter: ryan@openldap.org Target Milestone: ---
e.g. https://lists.openldap.org/postorius/lists/openldap-devel.openldap.org/ contains code for links and formatting, but all inside of a <pre> block.
https://bugs.openldap.org/show_bug.cgi?id=9193
Quanah Gibson-Mount quanah@openldap.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Assignee|bugs@openldap.org |ondra@mistotebe.net
https://bugs.openldap.org/show_bug.cgi?id=9193
Ondřej Kuzník ondra@mistotebe.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |CONFIRMED Ever confirmed|0 |1
--- Comment #1 from Ondřej Kuzník ondra@mistotebe.net --- Since postorius 1.3.0 it is possible to use markdown in list descriptions, until then it's just text. But Debian buster only has 1.2.4.
https://bugs.openldap.org/show_bug.cgi?id=9193
--- Comment #2 from Quanah Gibson-Mount quanah@openldap.org --- (In reply to Ondřej Kuzník from comment #1)
Since postorius 1.3.0 it is possible to use markdown in list descriptions, until then it's just text. But Debian buster only has 1.2.4.
I need 1.3.0 to better be able to handle moderation as well.
Is there no backport for mailman being maintained in Debian?
https://bugs.openldap.org/show_bug.cgi?id=9193
Ondřej Kuzník ondra@mistotebe.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Assignee|ondra@mistotebe.net |bugs@openldap.org
--- Comment #3 from Ondřej Kuzník ondra@mistotebe.net --- To be handled when we upgrade hypatia to Bullseye.
https://bugs.openldap.org/show_bug.cgi?id=9193
--- Comment #4 from gerlin@post.com --- Ejemplo escolar
def enviar_correo(asunto, mensaje, lista_destinatarios):
# Importar la librería smtplib import smtplib
# Crear un objeto SMTP smtp_obj = smtplib.SMTP('smtp.gmail.com', 587)
# Iniciar la sesión SMTP smtp_obj.starttls() smtp_obj.login('correo_usuario', 'contrasena_usuario')
# Enviar el correo electrónico smtp_obj.sendmail('correo_usuario', lista_destinatarios, f'Subject: {asunto}\n{mensaje}')
# Cerrar la sesión SMTP smtp_obj.quit()
# Ejemplo de uso enviar_correo( asunto='Tarea de matemáticas', mensaje='Hola a todos, les recuerdo que la tarea de matemáticas se debe entregar mañana.', lista_destinatarios=['estudiante1@correo.com', 'estudiante2@correo.com'] )