#!/bin/sh # postinst script for amavisd-cn # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx case "$1" in configure) # continue below ;; abort-upgrade|abort-remove|abort-deconfigure) exit 0 ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac PATH=/bin:/usr/bin:/sbin:/usr/sbin export PATH . /usr/share/amavisd-cn/version.sh . /usr/share/carnet-tools/functions.sh . /usr/share/amavisd-cn/variables.sh . /usr/share/amavisd-cn/functions.sh mta=postfix . /usr/share/amavisd-cn/postfix.sh # $domain will be equal to $host if nothing better can be found cp_get_mx_domain domain=$RET update_postfix $* # Patchiramo /usr/sbin/amavisd-new zbog warninga: # (!!)collect_results from (/usr/bin/ripole): exit 102 File <> is not OLE2 format\n if ! grep -q '\[0,102\]);' /usr/sbin/amavisd-new; then sed -i.BAK '33055s/\[0\]/[0,102]/' /usr/sbin/amavisd-new echo "CN: Patchiram /usr/sbin/amavisd-new" fi # amavisd.conf if [ -f "$ACONFOLD" ]; then cp_echo "CN: Amavisd configuration is now in $ACONF." noisy_backup "$ACONFOLD" rm -f "$ACONFOLD" cp_echo "" cp_echo "CN: Please read /usr/share/doc/amavisd-cn/README.CARNET." elif [ -f "$ACONFOLD.disabled" ]; then noisy_backup "$ACONFOLD.disabled" "$(basename $ACONFOLD)" rm -f "$ACONFOLD.disabled" cp_echo "CN: Please read /usr/share/doc/amavisd-cn/README.CARNET." fi if [ -f $ACONF ]; then # add other fixups to function update_conf(), way above update_conf $* fi # nonexistent or empty config if [ ! -f $ACONF -o ! -s $ACONF ]; then # Create fresh config from template conf_from_template restart_daemon=1 fi # disable SAVI as proven problematic if cp_check_and_sed "^[[:blank:]]*\['Sophos SAVI'" \ "s/^[[:blank:]]*\(\['Sophos SAVI', ..sophos_savi \]\)/#\1/" $ACONF; then cp_echo "CN: Disabled SAVI::Perl usage in ${ACONF}." restart_daemon=1 fi check_and_add_alias virusalert root check_and_add_alias spamalert root # ovo je rijeseno u spamassassin-cn, i ovdje nije potrebno, stoga brisemo if [ -f $AHOME/.spamassassin/user_prefs ] ; then user_prefs_temp=$(mktemp /tmp/user_prefs.XXXXXX) cat > $user_prefs_temp <<-EEND bayes_path $AHOME/.spamassassin/bayes bayes_auto_expire 0 auto_whitelist_path $AHOME/.spamassassin/auto-whitelist EEND if cmp -s $user_prefs_temp $AHOME/.spamassassin/user_prefs; then rm -f $AHOME/.spamassassin/user_prefs fi rm -f $user_prefs_temp fi # No sysvinit order fixes : # Fix missing redirection in cron files for amavisd-new-cronjob add_redirection /etc/cron.d/amavisd-new if [ -n "$chown_ahome" ]; then # might be slow echo -n "CN: Fixing ownership in /var/*/amavis... " chown -R amavis:amavis $AHOME /var/run/amavis || true echo "done." cp_echo -mailonly "CN: Fixed ownerships in /var/*/amavis." fi restart_daemon="1" if [ "$restart_daemon" ]; then service amavis restart fi # always check that the daemons are running # this needs to be updated when $CRONTAB file changes if dpkg --compare-versions "$2" lt "2:20030616p10-4"; then cp_echo "" cp_echo "CN: Deleting temp files older than 1 day every day at 01:35 AM" cp_echo "CN: Deleting spam-mail older than 7 days every day at 03:15 AM" cp_echo "CN: Deleting virus-mail older than 7 days every day at 04:25 AM" cp_echo " (can be changed in $CRONTAB)" fi if [ "$failed" ]; then cp_echo "" cp_echo "CN: Services $failed failed to restart!" cp_echo "CN: Please check and start manually if needed." fi # Upgrade, but no automatically changed config; # warn if new template available if [ -n "$2" -a -z "$changed_config" ] && \ dpkg --compare-versions "$2" lt "$TMPLVERSION"; then cp_echo "" cp_echo "CN: It seems you have upgraded this package from version $2." cp_echo "CN: Configuration template for $mta was modified in version ${TMPLVERSION}." cp_echo " You might want to review the changes, or simply copy the new template and" cp_echo " and replace the _CN_DOMAIN_ string with an adequate value:" cp_echo " cp $ACONFTMPL $ACONF" cp_echo " perl -pi -e 's/_CN_DOMAIN_/$domain/g' $ACONF" fi # Delete old conffiles... for conffile in /etc/logcheck/violations.ignore.d/amavisd-new \ /etc/logcheck/ignore.d.server/amavisd-new \ /etc/logcheck/ignore.d.workstation/amavisd-new \ /etc/cron.daily/amavisd-new; do if [ -f ${conffile} ]; then cp_echo "CN: Deleting old conffile ${conffile}..." rm -f ${conffile} fi done cp_mail $PKG $VERSION exit 0 #DEBHELPER#