From owner at bugs.debian.org Thu Mar 2 01:36:04 2023 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Thu, 02 Mar 2023 01:36:04 +0000 Subject: [Pkg-mailman-hackers] Processed: Re: python3-django-hyperkitty: Javascript not loaded because of HTML error References: <167772077576.20643.11608340114822033395.reportbug@frontier> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: Processing control commands: > tags -1 moreinfo Bug #1031928 [python3-django-hyperkitty] python3-django-hyperkitty: Javascript not loaded because of HTML error Added tag(s) moreinfo. -- 1031928: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1031928 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From jay at jp-hosting.net Thu Mar 2 01:32:55 2023 From: jay at jp-hosting.net (James Addison) Date: Thu, 02 Mar 2023 01:32:55 +0000 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <167772077576.20643.11608340114822033395.reportbug@frontier> Package: python3-django-hyperkitty Followup-For: Bug #1031928 X-Debbugs-Cc: hjp at hjp.at Control: tags -1 moreinfo Hi Peter, I'd like to gain some experience with configuring email infrastructure, and this bug seems like a good opportunity to learn. I haven't yet been able to reproduce the self-closing HTML script tags; here's roughly the series of install steps I used (I may have omitted one or two details) to get the interface up-and-running: # apt install mailman3-full # vim /etc/mailman3/mailman-web.py # configure REST API creds # ln -s /etc/mailman3/apache.conf /etc/apache2/conf-available/mailman3.conf # a2enconf mailman3 # a2enmod proxy_uwsgi # systemctl restart mailman3-web # systemctl restart apache2 (note that I also had postfix utilities installed on the system) That seemed to work: I was able to browse the postorius web interface and see that I had no mailing lists configured. Checking the HTML source of the page, I did see some tag, as expected. Could you provide any more information on configuration steps / settings that may be required to reproduce the problem? Thanks! James From hjp at hjp.at Thu Mar 2 18:53:12 2023 From: hjp at hjp.at (Peter J. Holzer) Date: Thu, 2 Mar 2023 19:53:12 +0100 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error In-Reply-To: <167772077576.20643.11608340114822033395.reportbug@frontier> References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> <167772077576.20643.11608340114822033395.reportbug@frontier> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <20230302185312.ztjx3ju4kwmj5iyk@hjp.at> On 2023-03-02 01:32:55 +0000, James Addison wrote: > Package: python3-django-hyperkitty > Followup-For: Bug #1031928 > X-Debbugs-Cc: hjp at hjp.at > Control: tags -1 moreinfo > > Hi Peter, > > I'd like to gain some experience with configuring email infrastructure, and > this bug seems like a good opportunity to learn. > > I haven't yet been able to reproduce the self-closing HTML script tags; here's > roughly the series of install steps I used (I may have omitted one or two > details) to get the interface up-and-running: > > # apt install mailman3-full > # vim /etc/mailman3/mailman-web.py # configure REST API creds > # ln -s /etc/mailman3/apache.conf /etc/apache2/conf-available/mailman3.conf > # a2enconf mailman3 > # a2enmod proxy_uwsgi > # systemctl restart mailman3-web > # systemctl restart apache2 I just did that on a fresh VM to to have a pristine state again. > (note that I also had postfix utilities installed on the system) > > That seemed to work: I was able to browse the postorius web interface and see > that I had no mailing lists configured. The problem is only on the "Archives" page (/mailman3/hyperkitty), and it's not immediately noticable without any archived mailinglists, however ... > Checking the HTML source of the page, I did see some tag, as expected. At the bottom of the hyperkitty page I see now: This is ok, but it's not what I saw on the other system. Instead of the last line with the cached compressed javascript I got the 12 individual script entries from the template. So it seems that my suspicion that {% compress js %}...{% endcompress %} wasn't working properly was correct. But of course that raises the question why that would fail on one system and work on another. I'll investigate that and then get back to you. > Could you provide any more information on configuration steps / settings that > may be required to reproduce the problem? My process wasn't as straightforward as yours, there was quite a bit of trial and error involved (for example, I installed postgresql after mailman3 and then did a dpkg-reconfigure to get mailman3 to use posgresql instead of sqlite; and I also needed a few attempts to get the apache config right), however, browsing through the shell history I see no differences which look relevant. hp -- _ | Peter J. Holzer | Story must make more sense than reality. |_|_) | | | | | hjp at hjp.at | -- Charles Stross, "Creative writing __/ | http://www.hjp.at/ | challenge!" -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From hjp at hjp.at Thu Mar 2 19:30:04 2023 From: hjp at hjp.at (Peter J. Holzer) Date: Thu, 2 Mar 2023 20:30:04 +0100 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error In-Reply-To: <20230302185312.ztjx3ju4kwmj5iyk@hjp.at> References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> <167772077576.20643.11608340114822033395.reportbug@frontier> <20230302185312.ztjx3ju4kwmj5iyk@hjp.at> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <20230302193004.giqc2wfjc7strqtp@hjp.at> On 2023-03-02 19:53:12 +0100, Peter J. Holzer wrote: > So it seems that my suspicion that {% compress js %}...{% endcompress %} > wasn't working properly was correct. But of course that raises the > question why that would fail on one system and work on another. I'll > investigate that and then get back to you. Found it (RTFM helps). I had set DEBUG = True in /etc/mailman3/mailman-web.py. This implicitly sets COMPRESS_ENABLED = False, so it was just passing the wrong HTML from the template through to the browser. hp -- _ | Peter J. Holzer | Story must make more sense than reality. |_|_) | | | | | hjp at hjp.at | -- Charles Stross, "Creative writing __/ | http://www.hjp.at/ | challenge!" -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From jay at jp-hosting.net Thu Mar 2 20:36:10 2023 From: jay at jp-hosting.net (James Addison) Date: Thu, 02 Mar 2023 20:36:10 +0000 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <167778937080.41212.13622367718866349360.reportbug@frontier> Package: python3-django-hyperkitty Followup-For: Bug #1031928 Control: tags -1 - moreinfo Control: tags -1 + confirmed Control: severity -1 important On Thu, 2 Mar 2023 20:30:04 +0100, Peter J. Holzer wrote: > On 2023-03-02 19:53:12 +0100, Peter J. Holzer wrote: > > So it seems that my suspicion that {% compress js %}...{% endcompress %} > > wasn't working properly was correct. But of course that raises the > > question why that would fail on one system and work on another. I'll > > investigate that and then get back to you. > Found it (RTFM helps). I had set DEBUG = True in > /etc/mailman3/mailman-web.py. This implicitly sets COMPRESS_ENABLED = > False, so it was just passing the wrong HTML from the template through > to the browser. Perfect, thank you - I can confirm that I see the same errant HTML after turning off compression in mailman-web.py and restarting the service: even if COMPRESS_ENABLED = False. hp -- _ | Peter J. Holzer | Story must make more sense than reality. |_|_) | | | | | hjp at hjp.at | -- Charles Stross, "Creative writing __/ | http://www.hjp.at/ | challenge!" -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From hjp at hjp.at Sat Mar 4 10:58:15 2023 From: hjp at hjp.at (Peter J. Holzer) Date: Sat, 4 Mar 2023 11:58:15 +0100 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error In-Reply-To: <20230302193004.giqc2wfjc7strqtp@hjp.at> References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> <167772077576.20643.11608340114822033395.reportbug@frontier> <20230302185312.ztjx3ju4kwmj5iyk@hjp.at> <20230302193004.giqc2wfjc7strqtp@hjp.at> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <20230304105815.gaspms4hwn2aqeyn@hjp.at> On 2023-03-02 20:30:04 +0100, Peter J. Holzer wrote: > On 2023-03-02 19:53:12 +0100, Peter J. Holzer wrote: > > So it seems that my suspicion that {% compress js %}...{% endcompress %} > > wasn't working properly was correct. But of course that raises the > > question why that would fail on one system and work on another. I'll > > investigate that and then get back to you. > > Found it (RTFM helps). I had set DEBUG = True in > /etc/mailman3/mailman-web.py. This implicitly sets COMPRESS_ENABLED = > False, so it was just passing the wrong HTML from the template through > to the browser. Can I change the severity of the bug? Since it only happens if the admin sets DEBUG = True, it won't affect most users. So normal or even minor seems to be more appropriate than grave. hp -- _ | Peter J. Holzer | Story must make more sense than reality. |_|_) | | | | | hjp at hjp.at | -- Charles Stross, "Creative writing __/ | http://www.hjp.at/ | challenge!" -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From jay at jp-hosting.net Sat Mar 4 12:21:34 2023 From: jay at jp-hosting.net (James Addison) Date: Sat, 04 Mar 2023 12:21:34 +0000 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <167793249405.13723.16163267065747332362.reportbug@frontier> Package: python3-django-hyperkitty Followup-For: Bug #1031928 X-Debbugs-Cc: hjp at hjp.at > Can I change the severity of the bug? You should be able to do that, yes: by placing BTS (bug tracking system) control commands (as 'pseudoheaders') at the start of your email messages to bug threads: https://www.debian.org/Bugs/Reporting#additionalpseudoheaders > > Would you be willing to send your patch to the upstream hyperkitty project[1] > > as well? (likely as a merge request on their GitLab instance) > Sure, but it seems to be fixed in upstream already, presumably because > they use a significantly newer version of django-compressor (4.3.1 > instead of 2.4). The newer version of django-compressor reformats > even if COMPRESS_ENABLED = False. Fair point.. hmm. Ideally we'd want test coverage to ensure that it doesn't happen again, though. The upstream codebase does appear to assert on the contents[1] of the HTML response in some cases; something similar could work as a regression test for this bug. [1] - https://gitlab.com/mailman/hyperkitty/-/blob/aae84b89184b9ae048ca693d332b7478f8734d4e/hyperkitty/tests/views/test_index.py#L214-220 From hjp at hjp.at Sat Mar 4 12:52:20 2023 From: hjp at hjp.at (Peter J. Holzer) Date: Sat, 4 Mar 2023 13:52:20 +0100 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error In-Reply-To: <167793249405.13723.16163267065747332362.reportbug@frontier> References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> <167793249405.13723.16163267065747332362.reportbug@frontier> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <20230304125220.byv54ni6xojfqq43@hjp.at> Package: python3-django-hyperkitty Version: 1.3.4-4 Severity: normal From hjp at hjp.at Sat Mar 4 20:55:41 2023 From: hjp at hjp.at (Peter J. Holzer) Date: Sat, 4 Mar 2023 21:55:41 +0100 Subject: [Pkg-mailman-hackers] Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error In-Reply-To: <20230304125220.byv54ni6xojfqq43@hjp.at> References: <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> <167793249405.13723.16163267065747332362.reportbug@frontier> <20230304125220.byv54ni6xojfqq43@hjp.at> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: <20230304205541.72atqibmgsodcaym@hjp.at> Package: python3-django-hyperkitty Followup-For: Bug #1031928 Control: severity -1 normal next attempt ... -- _ | Peter J. Holzer | Story must make more sense than reality. |_|_) | | | | | hjp at hjp.at | -- Charles Stross, "Creative writing __/ | http://www.hjp.at/ | challenge!" -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From owner at bugs.debian.org Sat Mar 4 20:57:09 2023 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 04 Mar 2023 20:57:09 +0000 Subject: [Pkg-mailman-hackers] Processed: Re: Bug#1031928: python3-django-hyperkitty: Javascript not loaded because of HTML error References: <20230304205541.72atqibmgsodcaym@hjp.at> <167733365095.89516.16847261576786680412.reportbug@brandstetter.luga.at> Message-ID: Processing control commands: > severity -1 normal Bug #1031928 [python3-django-hyperkitty] python3-django-hyperkitty: Javascript not loaded because of HTML error Severity set to 'normal' from 'important' -- 1031928: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1031928 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From info at fwus.de Mon Mar 6 11:06:57 2023 From: info at fwus.de (=?UTF-8?B?RGV1dHNjaGUgUG9zdCBESEwgR3JvdXA=?=) Date: 6 Mar 2023 11:06:57 +0000 Subject: [Pkg-mailman-hackers] =?utf-8?q?Bitte_beachten_Sie=2C_dass_das_P?= =?utf-8?q?aket_auf_die_Lieferung_wartet_=2303983632?= Message-ID: <20230306110657.179839377E024C82@fwus.de> An HTML attachment was scrubbed... URL: From landiolivares at aprendizajeindustrial.com Sat Mar 11 00:23:15 2023 From: landiolivares at aprendizajeindustrial.com (Landi Olivares) Date: Fri, 10 Mar 2023 18:23:15 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?Revisi=F3n_de_cumplimient?= =?windows-1252?q?o?= Message-ID: An HTML attachment was scrubbed... URL: From remusgabriel.chelu at disroot.org Sat Mar 11 01:32:16 2023 From: remusgabriel.chelu at disroot.org (Remus-Gabriel Chelu) Date: Sat, 11 Mar 2023 01:32:16 +0000 Subject: [Pkg-mailman-hackers] Bug#1032683: [INTL:ro] Romanian debconf templates translation of mailman-hyperkitty Message-ID: <7eb25162bc9fda929d92e505793eee1488a82e7f@disroot.org> Package: mailman-hyperkitty Severity: wishlist Tags: l10n, patch Dear Maintainer, Please find attached the Romanian translation of the mailman-hyperkitty?file. Thanks, Remus-Gabriel -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: mailman-hyperkitty_debconf_ro.po Type: application/octet-stream Size: 2379 bytes Desc: not available URL: From remusgabriel.chelu at disroot.org Sat Mar 11 01:35:57 2023 From: remusgabriel.chelu at disroot.org (Remus-Gabriel Chelu) Date: Sat, 11 Mar 2023 01:35:57 +0000 Subject: [Pkg-mailman-hackers] Bug#1032684: [INTL:ro] Romanian debconf templates translation of mailman3 Message-ID: Package: mailman3 Severity: wishlist Tags: l10n, patch Dear Maintainer, Please find attached the Romanian translation of the mailman3?file. Thanks, Remus-Gabriel -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: mailman3_debconf_ro.po Type: application/octet-stream Size: 3062 bytes Desc: not available URL: From sofiatoledo at aprendizajeindustrial.com Mon Mar 13 20:31:59 2023 From: sofiatoledo at aprendizajeindustrial.com (=?windows-1252?Q?Sof=EDa_Toledo?=) Date: Mon, 13 Mar 2023 14:31:59 -0600 Subject: [Pkg-mailman-hackers] Es necesario actualizarse Message-ID: <04b7b5c24c51480320e22623001ff698@aprendizajeindustrial.com> An HTML attachment was scrubbed... URL: From juan.alban at 21d02.saludzona1.gob.ec Tue Mar 14 07:48:28 2023 From: juan.alban at 21d02.saludzona1.gob.ec (DAVID MURRAY) Date: Tue, 14 Mar 2023 00:48:28 -0700 Subject: [Pkg-mailman-hackers] BUSINESS PROPOSAL!! Message-ID: <20230314074806.227F2185867@mail.21d02.saludzona1.gob.ec> I have a transaction which is of mutual benefits and I would like to share with you. if interested for more information please get back to me via my email: dom65582 at gmail.com Regards. David Murray -- Este mensaje ha sido analizado por MailScanner en busca de virus y otros contenidos peligrosos, y se considera que est? limpio. From info at usamail.us Wed Mar 15 07:25:34 2023 From: info at usamail.us (Johnson Smith) Date: Wed, 15 Mar 2023 00:25:34 -0700 Subject: [Pkg-mailman-hackers] Waiting For Your Reply % Message-ID: Hello The United State Government is giving you the sum of $350,000.00 as a grant to further your Business. this grant is part of the administration's vision to reward Small Business that has helped the government generate internal revenue in Spain. If you wish to claim your grant, please reply to this mail so that we can proceed with your claim of your grant. You will be able to transfer your grant of $350,000.00 to any Bank account of your choice worldwide. Reply this email or Send email to our United States Officer Grant Email Address info at unitedstatesgrant.us Thanks for participation in Small business and also starting small business. Kind regards Johnson Smith United States Grant ====================================================================== Hola El Gobierno de los Estados Unidos le otorga la suma de $ 350,000.00 como una subvenci?n para impulsar su negocio. esta subvenci?n es parte de la visi?n de la administraci?n de recompensar a las Peque?as Empresas que han ayudado al gobierno a generar ingresos internos en Espa?a. Si desea reclamar su subvenci?n, responda a este correo para que podamos continuar con su reclamaci?n de su subvenci?n. Podr? transferir su subvenci?n de $ 350,000.00 a cualquier cuenta bancaria de su elecci?n en todo el mundo. Responda este correo electr?nico o env?e un correo electr?nico a nuestra direcci?n de correo electr?nico de subvenci?n oficial de los Estados Unidos info at unitedstatesgrant.us Gracias por participar en Small business y tambi?n por iniciar una peque?a empresa. Atentamente johnson smith Beca de los Estados Unidos From recursoshumanos at aprendizajeindustrial.com Wed Mar 15 18:31:54 2023 From: recursoshumanos at aprendizajeindustrial.com (Recursos Humanos) Date: Wed, 15 Mar 2023 12:31:54 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?Fecha_de_Auditor=EDa?= Message-ID: AUDITOR?A DE RRHH - RECURSOS HUMANOS - Curso Online en Vivo | 28 de Marzo 2023 Beneficios de participar en este Curso > Conocer el estado actual del ?rea de RH frente al marco legal > Detectar malas pr?cticas que puedan generar perdidas > Identificar riesgos administrativos y responsabilidades de RH > Implementaci?n de la Norma-035 > Metodolog?a de una auditor?a administrativa > Evaluar el costo beneficio de los procesos fallidos ante una auditor?a > Descargar el PDF para leer m?s... -------------------------------------------------------------------------------- Si desea recibir sin compromiso el folleto con toda la informaci?n y detalles de inversi?n, responda este correo llenando los datos solicitados. > Nombre: > Tel?fono: > Email: -------------- next part -------------- An HTML attachment was scrubbed... URL: From angelicaibarra at aprendizajeindustrial.com Thu Mar 16 18:52:22 2023 From: angelicaibarra at aprendizajeindustrial.com (=?windows-1252?Q?Ang=E9lica_Ibarra?=) Date: Thu, 16 Mar 2023 12:52:22 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?Reporte_REPSE_de_subcontr?= =?windows-1252?q?ataci=F3n?= Message-ID: <4e75ef733fdaee17a0c37067001856cd@aprendizajeindustrial.com> Hola. Le escribo este email porque quiero invitarle a participar en un evento que puede ayudarle a conocer y llenar correctamente los aplicativos del IMSS e INFONAVIT para la presentaci?n de las declaraciones informativas derivadas de la reforma a la subcontrataci?n, as? como algunos aspectos importantes que deben cuidarse para un env?o sin rechazo. Este 28 de Marzo se presentar? el "TALLER DE ICSOE Y SISUB LOS APLICATIVOS PARA LAS INFORMATIVAS AL IMSS E INFONAVIT Y SU LLENADO CORRECTO". Si le interesa recibir el PDF con el temario y todos los detalles de inversi?n, responda este email con sus datos. Nombre: Tel?fono: Email Si usted no es la persona indicada para esta invitaci?n, por favor reenv?ela. -------------- next part -------------- An HTML attachment was scrubbed... URL: From peter.chubb at unsw.edu.au Thu Mar 16 22:24:59 2023 From: peter.chubb at unsw.edu.au (Peter Chubb) Date: Fri, 17 Mar 2023 09:24:59 +1100 Subject: [Pkg-mailman-hackers] Bug#1033072: mailman3-web: After upgrade, moderation operations are broken Message-ID: <167900549902.1936.12051155984503671201.reportbug@mattermost.seL4.systems> Package: mailman3-web Version: 0+20200530-2.1 Severity: normal Dear Maintainer, I had a working mailman3 installation. I did 'apt upgrade' which pulled in a new python3-hyperkitty and nginx. Now when trying to manage 'held messages' on a list: -- the checkbox next to 'Subject' does not toggle all the checkboxes below it. -- Clicking on a held message does not switch to a page where I can manage the sender of that message. In fact it does nothing. I suspect the javascript to run this is broken somehow. In my bro3wser console when looking at teh javascript I see: Uncaught TypeError: Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript. at Object.jQueryDetection (bootstrap.min.js:34:98) at bootstrap.min.js:34:407 at bootstrap.min.js:6:200 at bootstrap.min.js:6:288 main.js:38 Uncaught ReferenceError: $ is not defined at main.js:38:1 held_messages:445 Uncaught ReferenceError: $ is not defined at held_messages:445:7 held_messages.js:3 Uncaught ReferenceError: $ is not defined at loadjs (held_messages.js:3:3) at held_messages:452:1 The held_messages source file refers to jquery-3.6.0; but jquery-1.11.3 is installed in /var/lib/mailman3/web/static/postorius/libs/jquery I notice that version 3.6 is in /usr/share/python3-django-postorius/static/postorius/libs/jquery ... should the nginx snippet in /etc/mailman3 be updated to point here? For now I deleted /var/lib/mailman3/web/static/postorius and replaced it with a symlink to /usr/share/python3-django-postorius/static/postorius -- System Information: Debian Release: 12.0 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'unstable'), (500, 'testing'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 6.1.0-6-cloud-amd64 (SMP w/1 CPU thread; PREEMPT) Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages mailman3-web depends on: ii dbconfig-sqlite3 2.0.24 ii debconf [debconf-2.0] 1.5.82 ii init-system-helpers 1.65.2 ii lsb-base 11.6 ii python3 3.11.2-1 ii python3-django-hyperkitty 1.3.7-1 ii python3-django-postorius 1.3.8-3 ii python3-psycopg2 2.9.5-1+b1 ii python3-whoosh 2.7.4+git6-g9134ad92-7 ii sysvinit-utils [lsb-base] 3.06-2 ii ucf 3.0043+nmu1 ii uwsgi-core 2.0.21-5 ii uwsgi-plugin-python3 2.0.21-5 Versions of packages mailman3-web recommends: ii nginx 1.22.1-7 Versions of packages mailman3-web suggests: ii postgresql 15+247 -- debconf information: mailman3-web/remote/port: mailman3-web/dbconfig-upgrade: true mailman3-web/missing-db-package-error: abort * mailman3-web/passwords-do-not-match: * mailman3-web/superuser-mail: listadmin at sel4.systems mailman3-web/pgsql/manualconf: mailman3-web/mysql/method: Unix socket * mailman3-web/db/dbname: mailman3web mailman3-web/db/basepath: * mailman3-web/dbconfig-install: true mailman3-web/install-error: abort mailman3-web/remove-error: abort mailman3-web/upgrade-backup: true * mailman3-web/db/app-user: mailman3web at localhost mailman3-web/pgsql/no-empty-passwords: mailman3-web/mysql/admin-user: * mailman3-web/restart-webserver: true * mailman3-web/pgsql/method: Unix socket * mailman3-web/pgsql/admin-user: postgres * mailman3-web/configure-webserver: none mailman3-web/internal/reconfiguring: false mailman3-web/mysql/authplugin: default mailman3-web/nginx-choice: mailman3-web/dbconfig-remove: true mailman3-web/upgrade-error: abort * mailman3-web/emailname: sel4.systems * mailman3-web/dbconfig-reinstall: true * mailman3-web/superuser-name: seL4 mailman3-web/remote/host: localhost mailman3-web/purge: false * mailman3-web/database-type: pgsql * mailman3-web/pgsql/authmethod-user: ident mailman3-web/internal/skip-preseed: false mailman3-web/pgsql/changeconf: false * mailman3-web/pgsql/authmethod-admin: ident mailman3-web/remote/newhost: From ligiadominguez at aprendizajeindustrial.com Fri Mar 17 01:39:18 2023 From: ligiadominguez at aprendizajeindustrial.com (Ligia Dominguez) Date: Thu, 16 Mar 2023 19:39:18 -0600 Subject: [Pkg-mailman-hackers] Cerficado de habilidades DC-3 Message-ID: Saludos cordiales, Est? cordialmente invitado a participar a nuestro seminario Online sobre ?Auditoria y Control Interno en el ?rea de Recursos Humanos?. Con 6 horas de capacitaci?n efectiva ser? celebrado el d?a martes 28 de Marzo. Este Seminario le proporciona las herramientas necesarias para asegurar la correcta operaci?n del ?rea de Recursos Humanos. Adem?s podr?: Conocer cu?l es el estado real de su ?rea de Recursos Humanos. Podr? detectar malas pr?cticas, condiciones que son perjudiciales para la empresa o que generan costos incensarios. Saber Interpretar la NOM-035. Su participaci?n incluye: Certificado de Habilidades Laborales DC-3 Exposici?n de un prestigiado consultor Material digital Diploma con valor oficial Si desea recibir el temario completo, con los costos y temario completo, responda esta invitaci?n con ?TEMARIO-RH? y sus datos de contacto: Nombre: Tel?fono: Correo: Empresa: C?mo sabr? el departamento de Recursos Humanos es fundamental en la estructura de la compa??a y el ?xito o fracaso de esta se debe al esfuerzo de los seres humanos que la componen. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cursos at concreta.uy Fri Mar 17 07:44:36 2023 From: cursos at concreta.uy (Concreta Capacitacion) Date: Fri, 17 Mar 2023 07:44:36 +0000 Subject: [Pkg-mailman-hackers] =?iso-8859-1?q?Autosimilitud_en_Dise=F1o?= Message-ID: <4ujg0636b202.k92ESP_apMnF7dPGHPS-_Q2@tracking.concreta.uy> Concreta Capacitaci?n? ?? En 2023 sub? un escal?n en el conocimiento de tu profesi?n Calendario de cursos 2023 Para conocer m?s sobre las distintas opciones, contact? a un docente? ??Autosimilitud en dise?o Hay una variedad de interfaces muy particular: aquellas donde el todo es similar a cada una de sus partes, como un mapa, un dibujo o un cuadro de mando. Lamentablemente, cuando el celular se nos cae al piso y se parte en dos no nos quedan dos celulares, sino un par de paquetes de basura electr?nica. Sin embargo, al partir una rama s? obtendremos dos ramas. Lo mismo sucede con una pastilla de jab?n, un trozo de chocolate, una gota de agua y un segmento de recta, entre una lista infinita de objetos. Esta propiedad por la que el objeto es similar a cada una de sus partes se denomina autosimilitud y es la base de la teor?a fractal, desarrollada por el matem?tico franc?s Benoit Mandelbrot. En dise?o tambi?n podemos encontrar la idea de autosimilitud. Cuando interactuamos con un mapa, un dibujo o un cuadro de mando tipo dashboard estamos ante una interfaz autosimilar. Las partes que lo integran son en s? de la misma naturaleza que el todo. Esto no sucede, por ejemplo, con la estructura can?nica del sitio Web: documentos y carpetas. La mayor?a de los sitios Web tienen p?ginas que constituyen un documento que re?ne informaci?n que el autor consider? relevante sobre un tema. Cuando se agrupan o listan esos documentos se forma una carpeta. La naturaleza del documento y la carpeta son sustancialmente distintas y la interacci?n con una y con otra son por tanto tambi?n distintas. (Vale acotar que la carpeta en s? misma si tiene una estructura autosimilar, lo que permite paginarla y aplicar otras t?cnicas de interacci?n) Formato Documento en Medium.com Formato Carpeta en Medium.com Pero cuando estamos ante un cuadro de mando, por ejemplo el que muestra ventas y gastos de una empresa, las ventas y gastos de cada ?rea ser? un cuadro de mando y las de cada divisi?n dentro del ?rea tambi?n y as? sucesivamente, hasta llegar al ?tomo de medici?n. Interfaces Autosimilares Ser?a genial que hubiera una receta para resolver interfaces autosimilares: una lista taxativa de acciones y actividades que nos dieran la clave para generar una buena interfaz. Todo lo contrario: las interfaces autosimilares tienden a ser m?s complejas, ya que las fronteras entre el todo y sus componentes son m?s borrosas, a lo que se suma que en muchos casos, como por ejemplo en un mapa, la arquitectura de la informaci?n es muy profunda. Podemos s? describir algunas caracter?sticas que suelen ser t?picas de una interfaz autosimilar. La profundidad de la Arqutiectura de la Informaci?n es clave : adem?s de que al partirla lo que obtengamos sea de la misma naturaleza que el todo, tiene que haber a la vez y sin contradicci?n cambios a medida que descendemos por el ?rbol de la informaci?n. Al partir una planilla electr?nica obtenemos una planilla electr?nica, pero no hay ning?n otro cambio significativo, por lo que su autosimilitud resulta poco relevante para la interfaz. Zoom : es habitual que el zoom resulte una herramienta b?sica de navegaci?n en una interfaz autosimilar. No en todas: por ejemplo en una planilla electr?nica tipo Excel el zoom no es siquiera una herramienta de navegaci?n, tal vez como se mencion? m?s arriba por lo ?chato? de su arquitectura de informaci?n. A veces el zoom no se expresa en la pantalla como zoom, la cantidad de items en el paginado o el scroll infinito de una carpeta pueden verse como manifestaciones del zoom. Un solo set de herramientas : es muy probable que las herramientas de la interfaz sean las mismas para cualquier nivel de detalle de la informaci?n. Se puede pensar en una herramienta de dibujo como Figma o PhotoShop, que independientemente de que este viendo toda la imagen o una peque?a porci?n son esencialmente las mismas. A medida que hacemos zoom, la interfaz muta manteni?ndose igual : como el r?o de Her?clito, que siempre es el mismo y siempre es distinto, la misma interfaz se mantiene estable pero muta al hacer zoom. El ejemplo tal vez m?s significativo sea el del mapa: siempre es un mapa, pero un mapamundi es distinto que el mapa de un pa?s, que el plano de una ciudad y que una ruta dentro de un barrio, ?a pesar de que todos son mapas el mismo mapa! Como corolario un atributo interesante de las interfaces autosimilares es que las Reglas Heur?sticas siguen aplicando sin restricciones, mientras que las listas de checkeo de Usabilidad tienden a fallar desde el arranque. Cuando leo ??Tiene un t?tulo claro y prominente? . . . . . . 2 puntos? siempre me divierte pensar en Google Maps.? ?? Calendario de cursos 2023 Ya est?n las fechas de los cursos para el pr?ximo a?o: Psicolog?a Cognitiva y Experiencia de Usuario Taller Intensivo de Dise?o de la Interacci?n Accesibilidad: Herramientas de evaluaci?n WCAG 2.1 Si quer?s conocer m?s detalles, o hablar con los docentes, no dudes en contactarnos. (Ahora pagos en pesos argentinos para Argentina) Calendario 2023? ?? No quiero recibir informaci?n sobre cursos de Concreta ? ? Concreta, Soriano 903 of 501, Montevideo, Montevideo, 11100, Uruguay, concreta.com.uy -------------- next part -------------- An HTML attachment was scrubbed... URL: From paolatrujillo at aprendizajeindustrial.com Fri Mar 17 19:57:04 2023 From: paolatrujillo at aprendizajeindustrial.com (Paola Trujillo) Date: Fri, 17 Mar 2023 13:57:04 -0600 Subject: [Pkg-mailman-hackers] Reporte de auditoria Message-ID: | RECURSOS HUMANOS | Seminario Online en Vivo | 28 de Marzo 2023 Auditor?a de Recursos Humanos Temario del Evento: ? Funciones clave del ?rea de RR.HH. . ? En qu? consiste la auditor?a interna vs externa. ? Procesos clave que se requieren auditar en RR.HH. ? M?todo para aplicar la auditor?a. ? Resultados de indicadores de encuesta de clima laboral. Si desea recibir el PDF sin compromiso de este evento con todos los detalles de inversi?n, responsa a este email con sus datos de contacto: - Nombre: - Tel?fono: - Email: -------------- next part -------------- An HTML attachment was scrubbed... URL: From stps at aprendizajeindustrial.com Sat Mar 18 00:19:37 2023 From: stps at aprendizajeindustrial.com (Margarita Sosa) Date: Fri, 17 Mar 2023 18:19:37 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?Revisi=F3n_de_documentaci?= =?windows-1252?q?=F3n?= Message-ID: <2640c29597bac628cb52f7ab001192b5@aprendizajeindustrial.com> STPS Secretar?a de Trabajo y Previsi?n Social Le invitamos a participar en esta conferencia online para que conozca a detalle el llenado de los aplicativos liberados del IMSS e INFONAVIT para la presentaci?n de las declaraciones informativas. LLENADO CORRECTO DEL REPSE, ICSOE, SISUB Y LAS REVISIONES DE LA STPS 2023 28 de Marzo 2023 / Conferencia Online en Vivo C?MO PARTICIPAR Solicite el folleto informativo y los detalles de inversi?n respondiendo a esta invitaci?n con sus datos de contacto: - Nombre: - Empresa: - Tel?fono: - Email: -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at release.debian.org Sat Mar 18 04:39:48 2023 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Sat, 18 Mar 2023 04:39:48 +0000 Subject: [Pkg-mailman-hackers] hyperkitty is marked for autoremoval from testing Message-ID: hyperkitty 1.3.7-1 is marked for autoremoval from testing on 2023-04-20 It (build-)depends on packages with these RC bugs: 1032479: libmemcached: CVE-2023-27478 https://bugs.debian.org/1032479 This mail is generated by: https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl Autoremoval data is generated by: https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl From noreply at release.debian.org Sat Mar 18 04:39:50 2023 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Sat, 18 Mar 2023 04:39:50 +0000 Subject: [Pkg-mailman-hackers] mailman-suite is marked for autoremoval from testing Message-ID: mailman-suite 0+20200530-2.1 is marked for autoremoval from testing on 2023-04-20 It (build-)depends on packages with these RC bugs: 1032479: libmemcached: CVE-2023-27478 https://bugs.debian.org/1032479 This mail is generated by: https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl Autoremoval data is generated by: https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl From noreply at release.debian.org Sat Mar 18 04:39:51 2023 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Sat, 18 Mar 2023 04:39:51 +0000 Subject: [Pkg-mailman-hackers] mailman3 is marked for autoremoval from testing Message-ID: mailman3 3.3.8-1 is marked for autoremoval from testing on 2023-04-20 It (build-)depends on packages with these RC bugs: 1032479: libmemcached: CVE-2023-27478 https://bugs.debian.org/1032479 This mail is generated by: https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl Autoremoval data is generated by: https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl From noreply at release.debian.org Sat Mar 18 04:39:50 2023 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Sat, 18 Mar 2023 04:39:50 +0000 Subject: [Pkg-mailman-hackers] mailman-hyperkitty is marked for autoremoval from testing Message-ID: mailman-hyperkitty 1.2.1-1 is marked for autoremoval from testing on 2023-04-20 It (build-)depends on packages with these RC bugs: 1032479: libmemcached: CVE-2023-27478 https://bugs.debian.org/1032479 This mail is generated by: https://salsa.debian.org/release-team/release-tools/-/blob/master/mailer/mail_autoremovals.pl Autoremoval data is generated by: https://salsa.debian.org/qa/udd/-/blob/master/udd/testing_autoremovals_gatherer.pl From gerhorst at cs.fau.de Mon Mar 20 19:04:41 2023 From: gerhorst at cs.fau.de (Luis Gerhorst) Date: Mon, 20 Mar 2023 20:04:41 +0100 Subject: [Pkg-mailman-hackers] Bug#1033256: bullseye: bump python3-django-mailman3 version? Message-ID: <4c4eddd3-0a27-d1dd-7099-640f379a3dd9@cs.fau.de> Package: python3-django-mailman3 Version: 1.3.5-2 Would it be possible to bump bullseye's python3-django-mailman3 [1] from 1.3.5 to something >= 1.3.6? We (running Debian 11) are affected by upstream issue [2] which has been fixed in 1.3.6. I noticed that 1.3.7 was already part of testing in 2021. Apologies if this is the wrong place to submit this issue. Best regards, Luis [1] https://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=python3-django-mailman3;dist=stable [2] https://gitlab.com/mailman/hyperkitty/-/issues/471 -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_0x135327F1058CA0EA.asc Type: application/pgp-keys Size: 5905 bytes Desc: OpenPGP public key URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature Type: application/pgp-signature Size: 665 bytes Desc: OpenPGP digital signature URL: From lorenaesparza at aprendizajeindustrial.com Tue Mar 21 19:42:24 2023 From: lorenaesparza at aprendizajeindustrial.com (Lorena Esparza) Date: Tue, 21 Mar 2023 13:42:24 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?Perfil_que_est=E1s_buscan?= =?windows-1252?q?do?= Message-ID: <62a05c0ed8ad291020ec43e700118eec@aprendizajeindustrial.com> Atenci?n Gerentes de Recursos Humanos y todo el personal involucrado en Reclutamiento y Selecci?n del personal, le invitamos al: Taller de Atracci?n y Retenci?n de Talento Exitoso Basado en Competencias Laborales 13 de Abril 2023 - V?a Zoom en vivo Al Inscribirse incluye: Constancia de habilidades DC-3. Exposici?n de un prestigiado consultor. Material digital. Diploma con valor oficial. C?mo Inscribirse: Si est? interesado responsa a esta invitaci?n para mandarle el PDF del evento y detalles inversi?n. Nombre: Tel?fono: Email: Empresa: -------------- next part -------------- An HTML attachment was scrubbed... URL: From leticiagongora at aprendizajeindustrial.com Tue Mar 21 23:44:41 2023 From: leticiagongora at aprendizajeindustrial.com (=?windows-1252?Q?Leticia_G=F3ngora?=) Date: Tue, 21 Mar 2023 17:44:41 -0600 Subject: [Pkg-mailman-hackers] Dirigido para usted Message-ID: <3f79ed5831e4ca9c7ecefb2e001ced4e@aprendizajeindustrial.com> An HTML attachment was scrubbed... URL: From griseldavazquez at aprendizajeindustrial.com Wed Mar 22 18:59:43 2023 From: griseldavazquez at aprendizajeindustrial.com (=?windows-1252?Q?Ing._Griselda_V=E1zquez?=) Date: Wed, 22 Mar 2023 12:59:43 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?COMISI=D3N_NACIONAL_DEL_A?= =?windows-1252?q?GUA?= Message-ID: <001c5dc977b4bb9afa2c6d6000193a26@aprendizajeindustrial.com> Visita: CONAGUA COMISI?N NACIONAL DEL AGUA Las causas de las infracciones o sanciones pueden ser varias, pero, al no cumplir con los requisitos administrativos pueden sufrir multas o sanciones en sus derechos y concesiones. > El pr?ximo 21 de Abril tendremos una conferencia en la cual nos gustar?a que usted participe, en donde un experto nos ayudar? a evitar estas multas y el uso correcto de las Aguas Nacionales de la CONAGUA. M?s informaci?n Si me permite enviarle la informaci?n a su correo por favor solo confirme que su direcci?n de email sea correcta y sus datos adicionales. - Nombre: - Tel?fono: - Email Corporativo: - Email Personal (opcional): -------------- next part -------------- An HTML attachment was scrubbed... URL: From vbd at service.sjbnltz.xyz Thu Mar 23 12:53:22 2023 From: vbd at service.sjbnltz.xyz (=?utf-8?B?44Ki44Oe44K+44Oz?=) Date: Thu, 23 Mar 2023 20:53:22 +0800 Subject: [Pkg-mailman-hackers] =?utf-8?b?44Ki44Kr44Km44Oz44OI44Gu56K66KqN?= =?utf-8?b?44Gu44GK6aGY44GE44GoMjTmmYLplpPku6XlhoXjga7lr77lv5zjgas=?= =?utf-8?b?44Gk44GE44Gm?= Message-ID: ?????????????24??????????? ??? ??????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????24????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????? ??????? ????????????????????????????????????????????????????????24??????????????????????? ???????????????????????????????????????????????????????????????????? ?? ????????????? -------------- next part -------------- An HTML attachment was scrubbed... URL: From gabrielapena at aprendizajeindustrial.com Fri Mar 24 19:50:06 2023 From: gabrielapena at aprendizajeindustrial.com (=?windows-1252?Q?Gabriela_Pe=F1a?=) Date: Fri, 24 Mar 2023 13:50:06 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?=BFRecibi=F3_la_informaci?= =?windows-1252?q?=F3n=3F?= Message-ID: A su correo pkg-mailman-hackers at lists.alioth.debian.org le mand? una invitaci?n pero no he recibido respuesta alguna. Es para un taller a nivel internacional que liderar? un experto en el tema sobre C?mo Atraer y Retener al Talento Exitoso Bas?ndose en Competencias. Se llevar? a cabo el 13 de abril v?a zoom. Es un curso dirigido a todo personal involucrado en la gesti?n y atracci?n del talento humano basado en competencias, captar al personal id?neo e integrarlo adecuadamente al proceso productivo a trav?s de la formaci?n y desarrollo de habilidades que garantizaran el ?xito constante de la empresa. Responda a este correo con sus datos (nombre, tel?fono, email) para hacerle llegar le PDF de este evento y datos de inversi?n. De antemano, muchas gracias por su atenci?n. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alejandrarodriguez at aprendizajeindustrial.com Mon Mar 27 22:19:30 2023 From: alejandrarodriguez at aprendizajeindustrial.com (Lic. Alejandra Rodriguez) Date: Mon, 27 Mar 2023 15:19:30 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?ll=E1mame?= Message-ID: <6f66620dc4f2e3edfbff0b0000125734@aprendizajeindustrial.com> Mand? al correo: pkg-mailman-hackers at lists.alioth.debian.org una invitaci?n pero no he recibido respuesta alguna. Es para un evento a nivel nacional que liderar? un experto en el tema sobre La Especializaci?n en la administraci?n del Cr?dito y la Gesti?n de la Cobranza para las empresas. Se llevar? a cabo el 18 de abril v?a zoom. Es un curso dirigido a todo personal interesado en aprender y mejorar sus estrategias dirigidas a una excelente administraci?n del cr?dito y gesti?n de cobranza para aumentar y mejorar los ingresos de su empresa. Responda a este correo con sus datos (nombre, tel?fono, email) para hacerle llegar los datos de inversi?n y el PDF completo de este evento. De antemano, muchas gracias por su atenci?n. Si tienes alguna duda por favor ll?mame. Lic. Alejandra Rodriguez. Tel. +52 55 9020 9315 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brendaaguirre at aprendizajeindustrial.com Tue Mar 28 19:55:15 2023 From: brendaaguirre at aprendizajeindustrial.com (Brenda Aguirre) Date: Tue, 28 Mar 2023 12:55:15 -0600 Subject: [Pkg-mailman-hackers] Aviso CONAGUA Message-ID: Visita de inspecci?n y procedimientos administrativos en Materia de Aguas Nacionales y Descargas Residuales 21 de Abril 2023 / Conferencia Online en Vivo CONAGUA COMISI?N NACIONAL DEL AGUA Le invitamos a participar en esta conferencia online para que conozca a detalle c?mo enfrentar con ?xito las visitas de inspecci?n y procedimientos administrativos de la CONAGUA para evitar pagar multas de hasta 2.5 millones de pesos. M?s informaci?n Le mando el PDF informativo para poder revisarlo, responda "TEMARIO-CONAGUA" y sus datos de contacto: - Nombre: - Empresa: - Tel?fono: - Email: -------------- next part -------------- An HTML attachment was scrubbed... URL: From ximenaescalante at aprendizajeindustrial.com Tue Mar 28 23:41:13 2023 From: ximenaescalante at aprendizajeindustrial.com (Ximena Escalante) Date: Tue, 28 Mar 2023 16:41:13 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?Inteligencia_artificial_y?= =?windows-1252?q?_aprendizaje_autom=E1tico?= Message-ID: <96a4859584af1bfde824b92a0014f06d@aprendizajeindustrial.com> Evento Corporativo avanzado: Mapeo y An?lisis de Procesos 24 de Marzo 2023- Curso Online en vivo Aprenda y mejore sus habilidades para identificar los procesos cr?ticos en su empresa y c?mo mejorarlos utilizando t?cnicas y herramientas de mapeo y an?lisis. Al participar: > Aprender? a definir los indicadores clave de rendimiento (KPIs) para medir el ?xito. > Descubrir? t?cnicas y herramientas para optimizar el flujo de trabajo. > Aprender? a utilizar la inteligencia artificial para el mapeo de procesos. > Obtendr? constancia de habilidades DC-3 y certificado digital oficial. Reciba m?s informaci?n de este evento dando click aqu?, o responda a este correo con sus datos de contacto para recibir los detalles de inversi?n, temario y horario: Nombre: Tel?fono: Email: -------------- next part -------------- An HTML attachment was scrubbed... URL: From nayelijimenez at aprendizajeindustrial.com Wed Mar 29 20:41:15 2023 From: nayelijimenez at aprendizajeindustrial.com (=?windows-1252?Q?Nayeli_Jim=E9nez?=) Date: Wed, 29 Mar 2023 13:41:15 -0600 Subject: [Pkg-mailman-hackers] =?windows-1252?q?=BFC=F3mo_hacer_un_mapeo_?= =?windows-1252?q?de_procesos_exitoso=3F?= Message-ID: An HTML attachment was scrubbed... URL: From lorenacarvajal at aprendizajeindustrial.com Thu Mar 30 00:39:10 2023 From: lorenacarvajal at aprendizajeindustrial.com (Lorena Carvajal) Date: Wed, 29 Mar 2023 17:39:10 -0600 Subject: [Pkg-mailman-hackers] Certificado de habilidades Message-ID: Congreso nacional para JEFES DE PLANEACI?N Y PRODUCCI?N El 25 de Abril se impartir? el programa corporativo para empresas manufactureras "Planeador Maestro de Producci?n" Donde aprender? t?cnicas, habilidades y herramientas de excelencia. Competencias a alcanzar: Asegurar la satisfacci?n de sus clientes con embargues en tiempo y forma, sin el estr?s, la presi?n y los costos extra que conlleva. Aprovechar de manera ?ptima sus recursos productivos (capital humano, m?quinas, equipos, materiales). Controlar los niveles de inventario en proceso de acuerdo con el plan de fabricaci?n. Dise?o de estrategias que le permitan disminuir los pedidos atrasados (backorder) hasta ponerse al corriente. Y mucho m?s... Solicite m?s informaci?n sin compromiso, datos de inversi?n y todo lo relacionado a este evento de talla internacional respondiendo este email con sus datos. Nombre: Tel?fono: Email Corporativo: -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From PilarskyWRL at t-online.de Thu Mar 30 02:29:20 2023 From: PilarskyWRL at t-online.de (Volant Trading) Date: 29 Mar 2023 18:29:20 -0700 Subject: [Pkg-mailman-hackers] Did you receive the message i sent yesterday Message-ID: <20230329182920.948C09D3E0D3D448@volantrading.com> An HTML attachment was scrubbed... URL: