diff --git a/debian/changelog b/debian/changelog index 4724e568..059edd4d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,8 +14,9 @@ alternc (3.1.11) oldoldstable; urgency=low * fix opendkim signing for mails submitted over the network * fix a LOT of bugs from Github: #128 #69 #116 #123 #126 #134 #139 #156 #173 #138 * fix more BUGS from Github: #178 #159 #155 #176 #161 #162 #164 #165 #166 #170 #175 #177 + * enhanced message class, managed both logs to /var/log/alternc and LEVELS of messages - -- Benjamin Sonntag Wed, 7 Jun 2017 10:36:00 +0300 + -- Benjamin Sonntag Wed, 7 Oct 2017 23:36:00 +0200 alternc (3.1.10) oldoldstable; urgency=low diff --git a/svnup.sh b/svnup.sh deleted file mode 100755 index 874b333a..00000000 --- a/svnup.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# If you have all the AlternC's repositories in one folder, -# like alternc/trunk/ alternc-mailman/trunk/ ... -# this script do svn update on all of them ;) - -pushd ../.. - -for i in alternc alternc-bounces alternc-jabber alternc-munin alternc-procmail alternc-stats alternc-apps alternc-changepass alternc-mailman alternc-philesight alternc-secondarymx alternc-sympa alternc-awstats alternc-doc alternc-mergelog alternc-phpcron alternc-slavedns alternc-webalizer -do - if [ -d "$i" ]; then - pushd $i - svn up - popd - fi -done - -popd