adding permanent fix for custom zones

This commit is contained in:
Benjamin Sonntag 2015-04-29 10:45:40 +02:00
parent 5cc42ddcb8
commit af687a61d8
4 changed files with 16 additions and 5 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
alternc (3.1.5) oldstable; urgency=low
* fix alias changes not working in some cases
* fix ;;; END ALTERNC zones bug also for older versions
-- Benjamin Sonntag <benjamin@sonntag.fr> Wed, 29 Apr 2015 10:30:01 +0200
alternc (3.1.4) oldstable; urgency=low
* ensure that values in sub_domaines are prefixed by / for hosting subdomains

View File

@ -747,6 +747,6 @@ CREATE TABLE IF NOT EXISTS `alternc_status` (
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO alternc_status SET name='alternc_version',value='3.4.0.sh';
INSERT INTO alternc_status SET name='alternc_version',value='3.4.1.sh';

View File

@ -75,9 +75,13 @@ for file in $( ls $extensions | sort -n ) ; do
;;
php)
php -q $file
echo "UPDATE alternc_status SET value='$file' WHERE name='alternc_version';" |
mysql --defaults-file=/etc/alternc/my.cnf -f
;;
sh)
bash $file
echo "UPDATE alternc_status SET value='$file' WHERE name='alternc_version';" |
mysql --defaults-file=/etc/alternc/my.cnf -f
;;
*)
echo "skipping $file, not recognized !"

View File

@ -1,13 +1,13 @@
--- changelog 2014-06-24 13:42:50.234304438 +0200
+++ changelog.wheezy 2014-06-24 13:43:51.978313552 +0200
@@ -1,3 +1,10 @@
+alternc (3.2.4) stable; urgency=low
+alternc (3.2.5) stable; urgency=low
+
+ * Version identical to 3.1 for Squeeze
+ * Includes a small dovecot patch / dependency for dovecot 2.0 for Wheezy
+
+ -- Benjamin Sonntag <benjamin@sonntag.fr> Thu, 22 Apr 2015 18:19:00 +0100
+ -- Benjamin Sonntag <benjamin@sonntag.fr> Thu, 29 Apr 2015 18:19:00 +0100
+
alternc (3.1.4) oldstable; urgency=low
alternc (3.1.5) oldstable; urgency=low
* ensure that values in sub_domaines are prefixed by / for hosting subdomains
* fix alias changes not working in some cases