DK <[EMAIL PROTECTED]> wrote: > There is data like email aliases which need to be accessed by the MTA. > It wouldn't be a good idea to open each users db to check the aliases > for each email that arrives. So what we would need is a common db > which mirrors one table from all the user databases.
Have one database containing email aliases and/or other shared information and then one email per user. Then use the ATTACH command to join them together at runtime. See http://www.sqlite.org/lang_attach.html -- D. Richard Hipp <[EMAIL PROTECTED]>

