Kailash Nadh

Results 672 comments of Kailash Nadh

From the error, it looks like the database is either deleted or corrupted somehow. Something to do with Docker volumes most likely. I'm not sure how to debug this, unfortunately.

listmonk is indeed a one-way mailing list. Will add this to the intro in docs to make it explicit. Thanks for pointing out.

This is added to docs and the site in https://github.com/knadh/listmonk/commit/139267d57ef16dcf0ed26edc9564657a39b95823

HTTP 307 being completely broken in Safari seems highly unlikely. I was unable to find any references to such an issue after searching for a few mins. Could you please...

pg_dump is the safest and simplest way to backup indeed. Guaranteed to export the DB state as-is. A built-in function would indeed be more convenient but that will involve trying...

There is no straightforward way of doing this from within the app. The best way is to backup using native tools such as `pg_dump`, although it's not as convenient as...

Hi @Mangeshrex. If the idea is to execute `pg_dump` from within the binary, that will not work in most environments, especially Docker. In most production setups, there is no guarantee...

We can check for the presence of `pg_dump`, but it won't be a universal for backups. It'll be an option that works in some environments and not in most, where...

This is by design. This allows the campaign to be tested before it’s saved to the DB. Having to save every change to the DB only to test it is...

Yep, it always takes the inputs from the form, saved or unsaved, to send the test. Please do send a PR to fix the docs. Thank you.