diff --git a/.gitattributes b/.gitattributes index 1affc0bf..86be3fb0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -427,6 +427,7 @@ install/upgrades/0.9.7.sql -text install/upgrades/0.9.9.sql -text install/upgrades/1.0.1.php -text install/upgrades/1.0.1.sql -text +install/upgrades/1.0.3.sql -text install/upgrades/1.0.sql -text install/upgrades/README -text man/alternc-admintools.8 -text diff --git a/debian/changelog b/debian/changelog index f75f49a4..19a4a007 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ alternc (1.0.3) stable; urgency=high * Bugfix: the 'connect' button in the list of installed domains didn't work, make it work * Bugfix: fixing RNDC RELOAD behavior issue when ADDING a domain name + * Bugfix: some values in sub_domaines.compte are set to 0 instead of the user-id, (mainly MX, due tu 1.0 migration issue) - -- Benjamin Sonntag Wed, 12 Oct 2011 18:00:00 +0200 + -- Benjamin Sonntag Wed, 30 May 2011 16:00:00 +0200 alternc (1.0.2) stable; urgency=high * Bugfix: dependency on gamin OR fam : gamin is better for courier-imap and fam makes sasl imap auth fail diff --git a/install/upgrades/1.0.3.sql b/install/upgrades/1.0.3.sql new file mode 100644 index 00000000..109b3ff7 --- /dev/null +++ b/install/upgrades/1.0.3.sql @@ -0,0 +1,3 @@ + +-- some sub_domaines entries are not tagged with the right account's UID : +UPDATE sub_domaines,domaines SET sub_domaines.compte = domaines.compte WHERE sub_domaines.domaine = domaines.domaine ;