adding changelog + CREATE TABLE for password policy management features

This commit is contained in:
Benjamin Sonntag 2009-11-30 06:11:27 +00:00
parent a5ef76622e
commit 98c27aae57
2 changed files with 14 additions and 2 deletions

4
debian/changelog vendored
View File

@ -17,6 +17,8 @@ alternc (0.9.10~rc1) stable; urgency=low
* add new field to member form: 'notes' which is just a text field * add new field to member form: 'notes' which is just a text field
* send an email on new account creation. the actual email needs to be * send an email on new account creation. the actual email needs to be
configured through the AlternC variables for this to work. configured through the AlternC variables for this to work.
* added the password policy management module : you can choose which
password complexity you want to force for each place a password is required.
* API changes * API changes
* m_mysql->get_db_list() doesn't include size anymore because this * m_mysql->get_db_list() doesn't include size anymore because this
is a major performance hit on MySQL < 5.1.22 if there are > 1000 is a major performance hit on MySQL < 5.1.22 if there are > 1000
@ -25,7 +27,7 @@ alternc (0.9.10~rc1) stable; urgency=low
* Major patch * Major patch
* Blue desktop using only css, no frameset etc * Blue desktop using only css, no frameset etc
* Sanitizing of get/request/post parameters * Sanitizing of get/request/post parameters
-- Benjamin Sonntag <benjamin@alternc.org> Sat, 12 May 2009 17:55:30 +0200 -- Benjamin Sonntag <benjamin@alternc.org> Sat, 12 May 2009 17:55:30 +0200
alternc (0.9.9) stable; urgency=low alternc (0.9.9) stable; urgency=low

View File

@ -1 +1,11 @@
ALTER IGNORE TABLE `membres` ADD COLUMN `notes` TEXT NOT NULL AFTER `type`; ALTER IGNORE TABLE `membres` ADD COLUMN `notes` TEXT NOT NULL AFTER `type`;
CREATE TABLE IF NOT EXISTS `policy` (
`name` varchar(64) NOT NULL,
`minsize` tinyint(3) unsigned NOT NULL,
`maxsize` tinyint(3) unsigned NOT NULL,
`classcount` tinyint(3) unsigned NOT NULL,
`allowlogin` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='The password policies for services';