diff --git a/.gitattributes b/.gitattributes index 72209945..1affc0bf 100644 --- a/.gitattributes +++ b/.gitattributes @@ -426,6 +426,7 @@ install/upgrades/0.9.6.sql -text 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.sql -text install/upgrades/README -text man/alternc-admintools.8 -text diff --git a/debian/changelog b/debian/changelog index 797c61fd..d8cb00ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +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 + * Bugfix : adding french messages for domain new error messages + * Bugfix : Fixing domaines types templates issues (incompatibility with pre 1.0 alternc) + + -- Benjamin Sonntag Thu, 11 Oct 2011 10:17:00 +0200 + alternc (1.0.1) stable; urgency=high * Bugfix : upgrades from 0.* to 1.0 was not working for MX fields, Fixed. diff --git a/debian/control b/debian/control index 23585258..570bced7 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Standards-Version: 3.9.1 Package: alternc Architecture: all Pre-depends: debconf (>= 0.5.00) | debconf-2.0 -Depends: debianutils (>= 1.13.1), apache2-mpm-prefork, libapache2-mod-php5, courier-ssl, courier-imap-ssl, courier-pop-ssl, php5-mysql, phpmyadmin, postfix, proftpd-mod-mysql, proftpd-basic, squirrelmail, squirrelmail-locales, postfix-tls, bind9, wget, rsync, quota, courier-authmysql | courier-authlib-mysql, ca-certificates, locales, perl-suid, perl, postfix-mysql, wwwconfig-common, sasl2-bin, fam | gamin, libsasl2-modules, php5-cli, lockfile-progs (>= 0.1.9), gettext (>= 0.10.40-5), adduser, mysql-client, dnsutils, ${misc:Depends} +Depends: debianutils (>= 1.13.1), apache2-mpm-prefork, libapache2-mod-php5, courier-ssl, courier-imap-ssl, courier-pop-ssl, php5-mysql, phpmyadmin, postfix, proftpd-mod-mysql, proftpd-basic, squirrelmail, squirrelmail-locales, bind9, wget, rsync, quota, courier-authmysql | courier-authlib-mysql, ca-certificates, locales, perl-suid, perl, postfix-mysql, wwwconfig-common, sasl2-bin, fam | gamin, libsasl2-modules, php5-cli, lockfile-progs (>= 0.1.9), gettext (>= 0.10.40-5), adduser, mysql-client, dnsutils, ${misc:Depends} Recommends: mysql-server Conflicts: alternc-admintools, alternc-awstats (<< 1.0), alternc-mailman (<< 2.0), alternc-procmail (<< 2.0), alternc-munin (<< 1.0), alternc-changepass (<< 1.0) Provides: alternc-admintools diff --git a/install/mysql.sql b/install/mysql.sql index 24dea471..eb4f76cf 100644 --- a/install/mysql.sql +++ b/install/mysql.sql @@ -495,7 +495,7 @@ PRIMARY KEY ( `name` ) INSERT IGNORE INTO `domaines_type` (name, description, target, entry, compatibility, only_dns, need_dns, advanced, enable) values ('vhost','Locally hosted', 'DIRECTORY', '%SUB% IN A @@PUBLIC_IP@@', 'txt,defmx,defmx2,mx,mx2', false, false, false, 'ALL'), -('url','URL redirection', 'URL', '%SUB% IN A @@PUBLIC_IP@@','txt,defmx,defmx2', true, true, false, 'ALL'), +('url','URL redirection', 'URL', '%SUB% IN A @@PUBLIC_IP@@','txt,defmx,defmx2', true, false, false, 'ALL'), ('ip','IPv4 redirect', 'IP', '%SUB% IN A %TARGET%','url,ip,ipv6,txt,mx,mx2,defmx,defmx2', false, true, false, 'ALL'), ('webmail', 'Webmail access', 'NONE', '%SUB% IN A @@PUBLIC_IP@@', 'txt', false, false, false, 'ALL'), ('ipv6','IPv6 redirect', 'IPV6', '%SUB% IN AAAA %TARGET%','ip,ipv6,webmail,txt,mx,mx2,defmx,defmx2',true, true, true , 'ALL'), diff --git a/install/upgrades/1.0.1.sql b/install/upgrades/1.0.1.sql new file mode 100644 index 00000000..27fb63c7 --- /dev/null +++ b/install/upgrades/1.0.1.sql @@ -0,0 +1,3 @@ + +UPDATE `domaines_type` SET need_dns=false WHERE name='url'; + diff --git a/install/upgrades/1.0.sql b/install/upgrades/1.0.sql index 636c285e..5449635e 100644 --- a/install/upgrades/1.0.sql +++ b/install/upgrades/1.0.sql @@ -75,7 +75,7 @@ PRIMARY KEY ( `name` ) INSERT IGNORE INTO `domaines_type` (name, description, target, entry, compatibility, only_dns, need_dns, advanced, enable) values ('vhost','Locally hosted', 'DIRECTORY', '%SUB% IN A @@PUBLIC_IP@@', 'txt,defmx,defmx2,mx,mx2', false, false, false, 'ALL'), -('url','URL redirection', 'URL', '%SUB% IN A @@PUBLIC_IP@@','txt,defmx,defmx2', true, true, false, 'ALL'), +('url','URL redirection', 'URL', '%SUB% IN A @@PUBLIC_IP@@','txt,defmx,defmx2', true, false, false, 'ALL'), ('ip','IPv4 redirect', 'IP', '%SUB% IN A %TARGET%','url,ip,ipv6,txt,mx,mx2,defmx,defmx2', false, true, false, 'ALL'), ('webmail', 'Webmail access', 'NONE', '%SUB% IN A @@PUBLIC_IP@@', 'txt', false, false, false, 'ALL'), ('ipv6','IPv6 redirect', 'IPV6', '%SUB% IN AAAA %TARGET%','ip,ipv6,webmail,txt,mx,mx2,defmx,defmx2',true, true, true , 'ALL'),