On Thu, 21 Jul 2022 14:39:53 -0500 <[email protected]> wrote: > cd /var > find . -name "*.db" -print > > finds 52 files, but none appear in any way related to mailman.
I have no idea how mailman works. However, I do know that it is perfectly possible for a sqlite3 database file has to have an extension other than .db, or none at all. So what I would do instead is something like: cd /var ; find -type f | xargs file | grep -i sqlite But before doing that, I'd look in the mailman configuration files to see if it specifies the location(s) of any database files. > [T]he [database] section in /etc/mailman3/mailman.cfg references > postgres. Perhaps there is some sort of error and the mention of sqlite is spurious? -- Does anybody read signatures any more? https://charlescurley.com https://charlescurley.com/blog/

