X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=98a24b1c9f6766d4add311167426d4c58bd45f18;hb=5b53bbacb025060b3982aa6639ad7726b22c0fde;hp=29e233c283fd379fec69e0fbecdaf5182c94e1ff;hpb=dd305df1c74dd0ec5c49b15f937e28daf4e5b209;p=spamassassin-cn.git diff --git a/debian/postinst b/debian/postinst index 29e233c..98a24b1 100755 --- a/debian/postinst +++ b/debian/postinst @@ -117,7 +117,7 @@ if [ -f $examdir/local.cf ]; then # old enough if [ -s $confdir/local.cf ] && - dpkg --compare-versions "$2" lt "2:3.0.3-3"; then + dpkg --compare-versions "$2" lt "2:3.2.5-4"; then echo "CN: Backing up old version of $confdir/local.cf in /var/backups" cp_backup_conffile $confdir/local.cf rm -f $confdir/local.cf @@ -199,6 +199,45 @@ if [ -f $examdir/local.cf ]; then mv -f $confdir/local.cf.$$.$$ $confdir/local.cf.$$ rm -f $confdir/local.cf.$$.$$ + # calculate trusted networks + cp_get_netaddr || true + netaddr="$RET" + # ... get already configured trusted networks + trusted_networks=$(awk '/^trusted_networks/ { print $2 }' \ + $confdir/local.cf.$$ | sed -e 's/,/ /g') + # ... merge with local networks configured on eth interfaces + for i in $netaddr; do + if ! echo "$trusted_networks" | grep -q "$i"; then + trusted_networks="$trusted_networks $i" + fi + done + # ... merge with Postfix ranges + if [ -x /usr/sbin/postconf ]; then + for i in $(postconf -h mynetworks | sed -e 's/,/ /g'); do + if ! echo "$trusted_networks" | grep -q "$i"; then + trusted_networks="$trusted_networks $i" + fi + done + fi + # ... strip 127/8 range + for i in $trusted_networks; do + if ! echo "$i" | egrep -q \ + "127.0.0.0/8|\[::1\]/128|\[::ffff:127.0.0.0\]/104"; then + trusted_networks_clean="$trusted_networks_clean $i" + fi + done + # ... strip left and right blanks from final string + trusted_networks_clean=$(echo "$trusted_networks_clean" \ + | sed 's/^[ \t]*//;s/[ \t]*$//') + # ... and replace if non-zero + if [ ! -z "$trusted_networks_clean" ]; then + trusted_networks=$trusted_networks_clean + fi + cp_check_and_sed "^trusted_networks " \ + "s#^trusted_networks .*#trusted_networks $trusted_networks#g" \ + $confdir/local.cf.$$ || true + echo "CN: Activated $trusted_networks as trusted networks" + # different than template if ! cmp -s $confdir/local.cf.$$ $confdir/local.cf; then # backup if not zero size @@ -248,6 +287,16 @@ for i in $list; do mv -f $i.$$ $i fi rm -f $i.$$ + + # enable AWL + cp -f $i $i.$$ + plugin="loadplugin Mail::SpamAssassin::Plugin::AWL" + cp_check_and_sed "^#$plugin.*$" \ + "s/^#$plugin.*$/$plugin/g" $i.$$ || true + if ! cmp -s $i.$$ $i; then + mv -f $i.$$ $i + fi + rm -f $i.$$ done # check and replace /etc/default/spamasassin if needed @@ -302,10 +351,18 @@ fi # cleanup the AWL if getent passwd amavis >/dev/null 2>&1; then - if [ -s ~amavis/.spamassassin/auto-whitelist ]; then + AWL=~amavis/.spamassassin/auto-whitelist + if [ -s $AWL ]; then echo "CN: Cleaning the Amavis auto-whitelist" su -c '/usr/bin/check_whitelist --clean' - amavis >/dev/null 2>&1 \ || true + + # see if size is still unacceptable + SIZE=$(du -ks $AWL | awk '{print $1}') + if [ $SIZE -ge 51200 ]; then + echo "CN: Size of AWL database > 50MB, doing full cleanup" + cp /dev/null $AWL + fi fi fi @@ -335,7 +392,7 @@ sa-update \ --channelfile /etc/spamassassin/sa-update.channels \ --gpgkey 856AA88A \ --gpgkey 24F434CE \ - --gpgkey BDE9DC10 >>/var/log/sa-update.log 2>&1 || true + --gpgkey BDE9DC10 >>/var/log/sa-update.log 2>&1 & echo "CN: SpamAssassin updates are now logged at /var/log/sa-update.log" # restart the spamasassin @@ -349,7 +406,13 @@ if [ "x$restart" = "xyes" ]; then fi # restart the amavis -if [ "x$restart" = "xyes" -a -x /etc/init.d/amavis ]; then +if [ "x$restart" = "xyes" -a -x /etc/init.d/amavisd-cn ]; then + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d --quiet amavisd-cn restart + else + /etc/init.d/amavisd-cn restart + fi +elif [ "x$restart" = "xyes" -a -x /etc/init.d/amavis ]; then if [ -x /usr/sbin/invoke-rc.d ]; then invoke-rc.d --quiet amavis restart else