@lbutlr wrote:> On 19 Oct 2020, at 20:31, Victor Sudakov <vas at sibptus.ru> wrote: > > I have seen this but I do not want this information in a database. > ? > > > Even a local sqlite database would do. > > What? >This meant that an external DMBS/daemon process (MySQL, Redis etc) was not desirable, but any on-disk format Dovecot can save the data in was fine with me. The sqlite format too. -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN 2:5005/49 at fidonet http://vas.tomsk.ru/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: not available URL: <https://dovecot.org/pipermail/dovecot/attachments/20201021/6c2f85cd/attachment.sig>
On 20 Oct 2020, at 20:08, Victor Sudakov <vas at sibptus.ru> wrote:> @lbutlr wrote: >> On 19 Oct 2020, at 20:31, Victor Sudakov <vas at sibptus.ru> wrote: >>> I have seen this but I do not want this information in a database. >> ? >> >>> Even a local sqlite database would do. >> >> What? >> > > This meant that an external DMBS/daemon process (MySQL, Redis etc) was not > desirable, but any on-disk format Dovecot can save the data in was fine > with me. The sqlite format too.How is SQLite different from MySQL? I have both on my system. They are both on-disk database files. -- 'They come back to the mountains to die,' said the King. 'They live in Ankh-Morpork.' --The Fifth Elephant
On 21.10.20 18:27, @lbutlr wrote:> How is SQLite different from MySQL? I have both on my system. They are both on-disk database files. >sqlite is accessed through a library, data is stored in a file. whereas mysql needs a running service/daemon (which takes care of storing the data into files)