Michael Telatynski
Michael Telatynski
You can monitor my progress on the Development branch
in theory the Global Addressbook works in the Development branch, not got around to testing anything other than the basics, a lot of the programming I do is theoretical until...
Give me another 24-48 hours to get a little more progress, got a busy day tomorrow, send over your existing config (in a comment) and I'll try and convert it...
Database requires no changes, just the plugin itself and config file have been rewritten from scratch but still works in a fundamentally similar way, just far more dynamic, extendable and...
I'm thinking of renaming it so you wouldn't even have to do that, just changing config.inc.php (of Roundcube) - need to figure out what to call it though since its...
Definitely helped a bit, I'm currently thinking MultiBook, but I'll decide when I get the chance to carry on in 24-ish hours. Thanks
The functionality that you wanted should be functional. There is only currently one addressbook (Global) and only planning one more for now (Domain), but filter (hiding some users) but show...
Hmm, I could actually implement Domain book as a subset of Global book which just sets a filter. And yeah you're right with how to add filters, the config is...
Instead of your example at the end, you could just do `$GlobalBook->addShow('izzy@');` and this will allow all users which have the localpart of izzy, this would be a small bit...
And on your Union example, you can either run Two SQL Queries, or Union, or since your "extra" user was actually static, you should use `::addShow()` as it won't invoke...