[enh] adding changelog information

This commit is contained in:
Benjamin Sonntag 2017-10-06 23:54:12 +02:00
parent 3de55aca37
commit e16c75f140
2 changed files with 2 additions and 19 deletions

3
debian/changelog vendored
View File

@ -14,8 +14,9 @@ alternc (3.1.11) oldoldstable; urgency=low
* fix opendkim signing for mails submitted over the network * 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 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 * 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 <benjamin@sonntag.fr> Wed, 7 Jun 2017 10:36:00 +0300 -- Benjamin Sonntag <benjamin@sonntag.fr> Wed, 7 Oct 2017 23:36:00 +0200
alternc (3.1.10) oldoldstable; urgency=low alternc (3.1.10) oldoldstable; urgency=low

View File

@ -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