Kailash Nadh
Kailash Nadh
CORS can now be setup directly from the admin UI. Added this after increasing user demand and complains of UX-pain. https://github.com/knadh/listmonk/commit/cdf0a5c153f4967e477bad318840726d1172184f
You can blocklist/bulk add/bulk remove the results of a query into other lists. There are no dynamic lists yet (one can be created manually, and results can be bulk added...
`broken pipe` is a TCP/network level issue in the environment. There must be something that's causing it, perhaps a firewall. Nothing we can do inside listmonk about it, unfortunately ;(
listmonk already has retry support. It's configured in SMTP settings. Debugging why the connections are breaking, I am afraid there are two many factors involved depending on the environment. Perhaps...
Oops, closed this accidentally. Investigating this issue currently.
Did quite a few tests on this, and it's trickier than I thought. ``` subIDs AS ( SELECT DISTINCT ON (subscriber_lists.subscriber_id) subscriber_id, list_id, status FROM subscriber_lists WHERE -- ARRAY_AGG is...
hmm, @subhash-ngowda then it is not possible that in the subIDs query, the conditions will ever return 0 rows before max_subscriber_id is reached, right? Referring to your observation here: >...
After a marathon debugging session with @vividvilla, it looks like we've nailed the issue. Thank you everyone who debugged and shared cues and clues on this thread! This happens when:...
Thanks @subhash-ngowda. I was able to reproduce the issue. Working on a fix.
This has been fixed and has been tested in production on our large prod instance. The fix (https://github.com/knadh/listmonk/commit/bf26ec86420cf3721b8ee3ff13182a66cbd0b9d5) was way more complex than I imagined, and while working on it,...