Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-28 Thread Aaron Stone
On Mon, 2005-11-28 at 01:30 +0200, Igor Olemskoi wrote: > >> I've also changed g_module_build_path calls to look in modules/.libs/ > >> first, and if that fails, in /usr/lib/dbmail. > > Ok, so next we need to work on the autotools scripts to be sure to > > install things correctly. Or is that worki

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-28 Thread Igor Olemskoi
>> I've also changed g_module_build_path calls to look in modules/.libs/ >> first, and if that fails, in /usr/lib/dbmail. > Ok, so next we need to work on the autotools scripts to be sure to > install things correctly. Or is that working already? My prefix is /usr/local/, so I had to change /usr/l

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Aaron Stone
Status and todo for this project are on this page: http://dbmail.org/dokuwiki/doku.php?id=loadable_modules Last two things are modularize sort and get rid of "ifdef AUTHLDAP" and "ifdef SIEVE" sections, replacing them with more generic library calls that do whatever is needed, or provide a no-op i

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Aaron Stone
Playing with this some more, I'm really happy with it. Looks great. Later this week I'll modularize sort, and write functions to test for correct sieve tables. Do you suppose that aliases could be handled as a module? (Or is that just asking for trouble...) I'm thinking that username+mailbox could

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Aaron Stone
On Sun, 2005-11-27 at 16:56 +0100, Paul J Stevens wrote: > I've also changed g_module_build_path calls to look in modules/.libs/ first, > and > if that fails, in /usr/lib/dbmail. Ok, so next we need to work on the autotools scripts to be sure to install things correctly. Or is that working alrea

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Paul J Stevens
Aaron, Did as I said: I've consolidated all loadable modules in /modules/, dropping the /auth/, /mysql/, /pgsql/, and /sqlite/ directories. Only thing broken atm afaik is the --with-check build. Something in acinclude.m4 I surmise. I'll look into that later. I've also changed g_module_build_path

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Paul J Stevens
Paul J Stevens wrote: > Aaron Stone wrote: > >>I have authentication loadable now, too. Beware of breakage! > > > Cewl. > > Perhaps we should move all database drivers to a single directory like ./db/ > > Or *all* modules to ./modules/ ? -- ___

Re: [Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Paul J Stevens
Aaron Stone wrote: > I have authentication loadable now, too. Beware of breakage! Cewl. Perhaps we should move all database drivers to a single directory like ./db/ -- Paul Stevens mailto:[EMA

[Dbmail-dev] Auth loadable modules, possible breakage

2005-11-27 Thread Aaron Stone
I have authentication loadable now, too. Beware of breakage! Aaron