> - Are all the table features documented in mongodb_table(5)? They are.
> - Is there a MONGODB_README that covers building the driver and tutorial > prose with usage examples, best-practices, and so on? There was one, but Wietse asked for a mongodb_table so he can generate the MONGODB_README off of that in response to my very first email. I removed the README I created, but I can put that back in if need be. This is what I used to build the module: make makefiles pie=yes shared=yes dynamicmaps=yes 'CCARGS=-DHAS_MONGODB -I/usr/include/libmongoc-1.0 -I/usr/include/libbson-1.0' 'AUXLIBS_MONGODB=-lmongoc-1.0 -lbson-1.0' obviously requires mongo-c-driver and mongo-c-driver-dev packages. > - Have you tested the key features? I have built and tested the module on Alpine-3.16 inside a container, using a MongoDB Atlas cluster for the backend database. Tried to cover as many scenarios as I could, but as always, single-person testing has limited reliability. Would be best if we had others test this as well. Regards Hamid Maadani June 27, 2022 5:34 PM, "Viktor Dukhovni" <postfix-us...@dukhovni.org> wrote: > On Mon, Jun 27, 2022 at 11:53:54PM +0000, Hamid Maadani wrote: > >> Fyi, I have added a second commit to the mongodb branch of my fork on >> github, which will enable mongo projections: >> https://github.com/21stcaveman/postfix/commits/mongodb >> >> I have kept them separate in case it is chosen not to introduce >> projections for now. The reason I go back to projections, is that I >> see operations like concatenation all over when it comes to SQL setups >> with postfix. Even looking at postfix-admin docs, I can see the same: >> https://github.com/postfixadmin/postfixadmin/blob/master/DOCUMENTS/POSTFIX_CONF.txt >> >> I understand that it might not be good database design, but I'm not >> sure if we should limit users' choice when it comes to layout of the >> database. Also, without projections, the Mongo implementation would be >> incomplete compared to the SQL implementation. > > - Are all the table features documented in mongodb_table(5)? > > - Is there a MONGODB_README that covers building the driver and tutorial > prose with usage examples, best-practices, and so on? > > - Have you tested the key features? > > If so, you may be ready, modulo code style/quality improvements, ... > > -- > Viktor.