Skip to content

Releases: sagredo-dev/vpopmail

v5.6.4

19 Dec 19:54
Compare
Choose a tag to compare
  • Password strength enforcement PR #5 (grabbed from Matt Brookings' 5.5.0-dev version)
  • Dropped min pwd length feature.
  • vmysql.h: tables' layout changed in order to have VARCHAR instead of CHAR.
    Fields containing ip addresses enlarged to VARCHAR(39), to create room for ipv6.
    Unix timestamps definition changed from BIGINT(20) to INT(11).
    44bad58

Full Changelog: v5.6.3...v5.6.4

v5.6.3

29 Nov 19:24
Compare
Choose a tag to compare
  • bug fix: pwd with length>8 denied when sha-512 disabled #3

v5.6.2

29 Nov 19:23
Compare
Choose a tag to compare
  • fixed a configure break where a trivial C test program exits on error with gcc-14.1 due to missing headers 4e9d90f
  • vusaged/domain.c: fixed -Wimplicit-function-declaration compilation warning 9044fd9
  • vusaged/configure: autoconf 2.71 compat 577b0b9
  • vmysql.h: dropped the multicolumn PRIMARY KEY in valias table to allow multiple forwards for a given alias. 554fe54
    In case one already has the valias table defined, this is the sql query for the upgrade:
    ALTER TABLE `vpopmail`.`valias` DROP PRIMARY KEY, ADD INDEX (`alias`, `domain`, `valias_type`) USING BTREE;
    ALTER TABLE `vpopmail`.`valias` ADD `id` INT NOT NULL AUTO_INCREMENT FIRST, ADD PRIMARY KEY (`id`);