fixing url type incompatibility with pre-1.0 + adding changelog for 1.0.2 prerelease
This commit is contained in:
parent
4d391d2354
commit
4201f79a67
|
@ -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
|
||||
|
|
|
@ -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 <benjamin@alternc.org> 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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'),
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
|
||||
UPDATE `domaines_type` SET need_dns=false WHERE name='url';
|
||||
|
|
@ -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'),
|
||||
|
|
Loading…
Reference in New Issue