10 Jul 2024 |
@kreibaum:matrix.org | Like, the tagline is essentially "organized, organize, to mobilize". | 17:21:11 |
sgued | I think I saw something saying that the weblate was disabled or something... | 18:25:38 |
11 Jul 2024 |
strk (opencloud) | I'm unable to find an address when adding a new event. This blocks the event despite me writing the address manually, is there anything I can do to fix this ? | 15:27:05 |
setop | on which instance are you trying ? | 15:59:42 |
12 Jul 2024 |
strk (opencloud) | setop: mobilizon.it | 01:37:17 |
strk (opencloud) | is Mobilizon advertising links as Fediverse links or is this a libre initiative of Froendica, or Phanpy ? https://phanpy.social/#/poliverso.org/s/28483635 | 10:06:22 |
13 Jul 2024 |
| Victorus changed their profile picture. | 00:53:28 |
14 Jul 2024 |
| pierre joined the room. | 13:11:47 |
| sebseb01 joined the room. | 18:34:57 |
sebseb01 | Hello, i'm searching to get informations on a group over the graphql, but at this time all my Query made 500 errors. I don''t understand why any oune can help me, or send me useful link ? | 18:38:46 |
sebseb01 | Ok i found the wordpress connector, i go to analyse them, i probably have a very similar code | 19:20:04 |
15 Jul 2024 |
| @kreibaum:matrix.org left the room. | 05:43:01 |
18 Jul 2024 |
| javahippie changed their profile picture. | 11:44:08 |
cel ⚡️ | i am getting database timeout errors. i wonder why. 11:11:21.773 [error] Postgrex.Protocol (#PID<0.4368.0>) disconnected: ** (DBConnection.ConnectionError) client #PID<0.4822.0> timed out because it queued and checked out the connection for longer than 15000ms
| 15:18:47 |
cel ⚡️ | also seeing Failed to send Sentry event. Cannot send Sentry event because of invalid DSN | 15:23:12 |
cel ⚡️ | and /api returning 500 sometimes - no info in logs | 15:40:18 |
| Drakfrid left the room. | 16:05:20 |
cel ⚡️ | emails not getting sent. mobilizon log: [error] Failed sending email to [...]. {:retries_exceeded, {:network_failure, ~c"mx1.celehner.com", {:error, :closed}}}
relay host (postfix) log says it is a TLS version issue: SSL_accept error from unknown[199.170.132.3]: -1
warning: TLS library problem: error:0A00010B:SSL routines::wrong version number:../ssl/record/ssl3_record.c:354:
| 16:11:29 |
cel ⚡️ | * emails not getting sent. mobilizon log: [error] Failed sending email to [...]. {:retries_exceeded, {:network_failure, ~c"[...]", {:error, :closed}}}
relay host (postfix) log says it is a TLS version issue: SSL_accept error from unknown[...]: -1
warning: TLS library problem: error:0A00010B:SSL routines::wrong version number:../ssl/record/ssl3_record.c:354:
| 16:16:10 |
cel ⚡️ | In reply to @cel:mobilizon.us
emails not getting sent. mobilizon log: [error] Failed sending email to [...]. {:retries_exceeded, {:network_failure, ~c"mx1.celehner.com", {:error, :closed}}}
relay host (postfix) log says it is a TLS version issue: SSL_accept error from unknown[199.170.132.3]: -1
warning: TLS library problem: error:0A00010B:SSL routines::wrong version number:../ssl/record/ssl3_record.c:354:
it used to work and then stopped at some point. using starttls. is there a recommended configuration? i see this https://docs.joinmobilizon.org/administration/configure/email/ but it looks like it uses SSL on port 25, which doesn't make sense | 16:21:40 |
sgued | What is your config?
This looks a lot like it's getting plaintext when it's expecting a TLS connection
| 19:56:58 |
cel ⚡️ | config :mobilizon, Mobilizon.Web.Email.Mailer,
adapter: Swoosh.Adapters.SMTP,
relay: "[...]",
# usually 25 (clear), 465 (TLS) or 587 (STARTTLS)
port: 587,
username: "[...]",
password: "[...]",
# can be `:always` or `:never` or :if_available
tls: :always,
# not needed when using STARTTLS
ssl: false,
allowed_tls_versions: [:"tlsv1.2", :"tlsv1.3"],
retries: 2,
# can be `true`
no_mx_lookups: false,
# can be `:always`. If your smtp relay requires authentication set it to `:always`.
#auth: :if_available
auth: :always
relay log says lost connection after STARTTLS from unknown so i think it is doing SMTP OK but fails when doing STARTTLS | 20:38:41 |
sgued | Can you try removing the tlsv1.2 option? | 21:17:31 |
cel ⚡️ | problem still occurs - or with removing that option | 21:30:14 |
cel ⚡️ | * problem still occurs - or with removing that line | 21:32:41 |
cel ⚡️ | trying TLS (SSL, not STARTTLS), the relay host does not seem to receive the connection (nothing in log) port: 465,
tls: :never,
ssl: true,
Maybe i am misunderstanding what some of these options mean. | 21:40:06 |
cel ⚡️ | openssl s_client [host]:465 shows the SMTP banner; this is supposed to work as an alternative | 21:41:53 |
cel ⚡️ | could there be other adapter options besides SMTP, like sendmail CLI? | 21:49:46 |
cel ⚡️ | i think it is this https://framagit.org/framasoft/mobilizon/-/issues/1374 "Swoosh does not support SSL/TLS, only STARTTLS (not verified if that's true)" so nevermind that part. looks like the specific tls_options are needed. thanks @sgued for the help/ideas | 21:52:47 |
cel ⚡️ | trying to follow example here https://framagit.org/framasoft/mobilizon/-/issues/1374#note_2046215 now got different error
warning: TLS library problem: error:0A000410:SSL routines::sslv3 alert handshake failure:../ssl/record/rec_layer_s3.c:1600:SSL alert number 40: | 21:56:57 |