Sun, 12 Aug 2012 13:31:44 +0000 man/{de/}man5: s/Wiki/Homepage/g
Pascal Volk <user@localhost.localdomain.org> [Sun, 12 Aug 2012 13:31:44 +0000] rev 588
man/{de/}man5: s/Wiki/Homepage/g
Sat, 11 Aug 2012 16:13:12 +0000 man/{de/}man1: s/Wiki/Homepage/g
Pascal Volk <user@localhost.localdomain.org> [Sat, 11 Aug 2012 16:13:12 +0000] rev 587
man/{de/}man1: s/Wiki/Homepage/g
Wed, 08 Aug 2012 14:37:29 +0000 VMM/common: Improve search_address complexity
martin f. krafft <madduck@debian.org> [Wed, 08 Aug 2012 14:37:29 +0000] rev 586
VMM/common: Improve search_address complexity Checking the dictionary (a hash) for existence of a key is likely to be O(log(n)), while checking a list is O(n). Therefore, to increase performance, this patch changes the check accordingly.
Tue, 07 Aug 2012 23:55:41 +0000 doc/web: Refreshed vmm.cfg
Pascal Volk <user@localhost.localdomain.org> [Tue, 07 Aug 2012 23:55:41 +0000] rev 585
doc/web: Refreshed vmm.cfg
Tue, 07 Aug 2012 23:50:11 +0000 vmm.cfg: Updated/improved comments.
Pascal Volk <user@localhost.localdomain.org> [Tue, 07 Aug 2012 23:50:11 +0000] rev 584
vmm.cfg: Updated/improved comments.
Tue, 07 Aug 2012 21:54:39 +0000 If an alias has multiple destinations, multiple records exist, due to
"martin f. krafft" <madduck@debian.org> [Tue, 07 Aug 2012 21:54:39 +0000] rev 583
If an alias has multiple destinations, multiple records exist, due to the nature of the database. address_list would then return the same alias multiple times, which does not add any information, eats screen space and is potentially confusing. Therefore, we SELECT DISTINCTly from the alias table. Signed-off-by: martin f. krafft <madduck@debian.org> --- VirtualMailManager/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Tue, 07 Aug 2012 21:53:41 +0000 Due to the UNION query in address_list, the assumption that the list of
"martin f. krafft" <madduck@debian.org> [Tue, 07 Aug 2012 21:53:41 +0000] rev 582
Due to the UNION query in address_list, the assumption that the list of gids received from the database would be continuous does not hold. To prevent addresses for domains with multiple entry types from being listed, it is necessary to check the list of domain gids for every entry. Signed-off-by: martin f. krafft <madduck@debian.org> --- VirtualMailManager/common.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
Sun, 29 Jul 2012 16:44:20 +0000 doc/web: Emphasized a few lines of Dovecot/PostgreSQL configuration
Pascal Volk <user@localhost.localdomain.org> [Sun, 29 Jul 2012 16:44:20 +0000] rev 581
doc/web: Emphasized a few lines of Dovecot/PostgreSQL configuration file excerpts.
Sun, 29 Jul 2012 14:56:14 +0000 .hgignore: "doc/build" is no longer required.
Pascal Volk <user@localhost.localdomain.org> [Sun, 29 Jul 2012 14:56:14 +0000] rev 580
.hgignore: "doc/build" is no longer required.
Sun, 29 Jul 2012 14:46:52 +0000 doc: Added source of http://vmm.localdomain.org/.
Pascal Volk <user@localhost.localdomain.org> [Sun, 29 Jul 2012 14:46:52 +0000] rev 579
doc: Added source of http://vmm.localdomain.org/.
Sun, 29 Jul 2012 14:17:05 +0000 doc: Moved API documentation to doc/api.
Pascal Volk <user@localhost.localdomain.org> [Sun, 29 Jul 2012 14:17:05 +0000] rev 578
doc: Moved API documentation to doc/api.
Sun, 22 Jul 2012 20:19:07 +0000 INSTALL: Updated PostgreSQL configuration URL.
Pascal Volk <user@localhost.localdomain.org> [Sun, 22 Jul 2012 20:19:07 +0000] rev 577
INSTALL: Updated PostgreSQL configuration URL. Use ${sql} and ${proxysql} expressions in the main.cf description.
Sun, 01 Jul 2012 18:50:32 +0000 README: Substituted a few words.
Pascal Volk <user@localhost.localdomain.org> [Sun, 01 Jul 2012 18:50:32 +0000] rev 576
README: Substituted a few words.
Sat, 30 Jun 2012 19:09:20 +0000 README: Updated URL of the hg repository@sf.net.
Pascal Volk <user@localhost.localdomain.org> [Sat, 30 Jun 2012 19:09:20 +0000] rev 575
README: Updated URL of the hg repository@sf.net.
Sat, 30 Jun 2012 16:21:26 +0000 man: Deleted erroneous placed backslash.
Pascal Volk <user@localhost.localdomain.org> [Sat, 30 Jun 2012 16:21:26 +0000] rev 574
man: Deleted erroneous placed backslash.
Thu, 28 Jun 2012 21:40:08 +0000 Added tag vmm-0.6.0 for changeset 3238c58d01ae
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 21:40:08 +0000] rev 573
Added tag vmm-0.6.0 for changeset 3238c58d01ae
Thu, 28 Jun 2012 21:39:59 +0000 Released vmm-0.6.0 vmm-0.6.0
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 21:39:59 +0000] rev 572
Released vmm-0.6.0
Thu, 28 Jun 2012 19:26:50 +0000 Merged changes from v0.6.x(28230a8230bf).
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 19:26:50 +0000] rev 571
Merged changes from v0.6.x(28230a8230bf).
Thu, 28 Jun 2012 19:23:24 +0000 Close v0.6.x branch. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 19:23:24 +0000] rev 570
Close v0.6.x branch.
Thu, 28 Jun 2012 18:48:37 +0000 vmm: Don't insert the module directory into sys.path by default. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 18:48:37 +0000] rev 569
vmm: Don't insert the module directory into sys.path by default. Doesn't make much sense, if the code is installed inside sys.path.
Thu, 28 Jun 2012 18:33:32 +0000 Updated copyright notices to include the year 2012. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 18:33:32 +0000] rev 568
Updated copyright notices to include the year 2012.
Thu, 28 Jun 2012 18:03:48 +0000 TODO: Removed "listpwschemes" entry. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 18:03:48 +0000] rev 567
TODO: Removed "listpwschemes" entry. Was done with changeset a64c1b5e08b4
Thu, 28 Jun 2012 17:51:23 +0000 UPGRADE: Updated documentation. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 17:51:23 +0000] rev 566
UPGRADE: Updated documentation.
Thu, 28 Jun 2012 16:16:01 +0000 VMM/cli/subcommands: Replaced the keyword `default' by `domain'. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Thu, 28 Jun 2012 16:16:01 +0000] rev 565
VMM/cli/subcommands: Replaced the keyword `default' by `domain'. Patch by Martin F. Krafft
Wed, 27 Jun 2012 21:36:36 +0000 INSTALL: Added description how to create additional dove* user/group. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Wed, 27 Jun 2012 21:36:36 +0000] rev 564
INSTALL: Added description how to create additional dove* user/group. `doveauth' user and group for the authentication process and the group `dovemail' for mail related Dovecot processes.
Wed, 27 Jun 2012 20:20:00 +0000 INSTALL: Updated documentation. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Wed, 27 Jun 2012 20:20:00 +0000] rev 563
INSTALL: Updated documentation.
Wed, 27 Jun 2012 20:15:06 +0000 Configure.Dovecot_2: Added configuration documentation for Dovecot_2 >= 2.0. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Wed, 27 Jun 2012 20:15:06 +0000] rev 562
Configure.Dovecot_2: Added configuration documentation for Dovecot_2 >= 2.0.
Wed, 27 Jun 2012 13:11:28 +0000 VMM: The Python 2.4.x compatibility commit - part III. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Wed, 27 Jun 2012 13:11:28 +0000] rev 561
VMM: The Python 2.4.x compatibility commit - part III.
Wed, 27 Jun 2012 12:46:27 +0000 VMM/account: Check the account's transport only when we have a transport. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Wed, 27 Jun 2012 12:46:27 +0000] rev 560
VMM/account: Check the account's transport only when we have a transport.
Wed, 27 Jun 2012 12:18:53 +0000 VMM: The Python 2.4.x compatibility commit. v0.6.x
Pascal Volk <user@localhost.localdomain.org> [Wed, 27 Jun 2012 12:18:53 +0000] rev 559
VMM: The Python 2.4.x compatibility commit.
(0) -300 -100 -50 -30 +30 +50 +100 tip