01c8da1367d0c6c9ad3a3b4929ac0c9ad62a30bc
[amavisd-cn.git] / debian / postinst
1 #!/bin/sh
2 # postinst script for amavisd-cn
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # summary of how this script can be called:
9 #        * <postinst> `configure' <most-recently-configured-version>
10 #        * <old-postinst> `abort-upgrade' <new version>
11 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
12 #          <new-version>
13 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
14 #          <failed-install-package> <version> `removing'
15 #          <conflicting-package> <version>
16 # for details, see http://www.debian.org/doc/debian-policy/ or
17 # the debian-policy package
18 #
19
20 [ "$DEBIAN_SCRIPT_DEBUG" ] && set -vx
21
22 case "$1" in
23   configure)
24     # continue below
25   ;;
26
27   abort-upgrade|abort-remove|abort-deconfigure)
28     exit 0
29   ;;
30
31   *)
32     echo "postinst called with unknown argument \`$1'" >&2
33     exit 0
34   ;;
35 esac
36
37 PATH=/bin:/usr/bin:/sbin:/usr/sbin
38 export PATH
39
40 . /usr/share/amavisd-cn/version.sh
41 . /usr/share/carnet-tools/functions.sh
42 . /usr/share/amavisd-cn/variables.sh
43 . /usr/share/amavisd-cn/functions.sh
44
45 mta=postfix
46 . /usr/share/amavisd-cn/postfix.sh
47
48 # $domain will be equal to $host if nothing better can be found
49 cp_get_mx_domain
50 domain=$RET
51
52 update_postfix $*
53
54 # amavisd.conf
55 if [ -f "$ACONFOLD" ]; then
56   cp_echo "CN: Amavisd configuration is now in $ACONF."
57   noisy_backup "$ACONFOLD"
58   rm -f "$ACONFOLD"
59   cp_echo ""
60   cp_echo "CN: Please read /usr/share/doc/amavisd-cn/README.CARNet."
61 elif [ -f "$ACONFOLD.disabled" ]; then
62   noisy_backup "$ACONFOLD.disabled" "$(basename $ACONFOLD)"
63   rm -f "$ACONFOLD.disabled"
64   cp_echo "CN: Please read /usr/share/doc/amavisd-cn/README.CARNet."
65 fi
66
67 if [ -f $ACONF ]; then
68   # add other fixups to function update_conf(), way above
69   update_conf $*
70 fi
71 # nonexistent or empty config
72 if [ ! -f $ACONF -o ! -s $ACONF ]; then
73   # Create fresh config from template
74   conf_from_template
75   restart_daemon=1
76 fi
77
78 # disable SAVI as proven problematic
79 if cp_check_and_sed "^[[:blank:]]*\['Sophos SAVI'" \
80  "s/^[[:blank:]]*\(\['Sophos SAVI', ..sophos_savi \]\)/#\1/" $ACONF; then
81   cp_echo "CN: Disabled SAVI::Perl usage in ${ACONF}."
82   restart_daemon=1
83 fi
84
85 check_and_add_alias virusalert root
86 check_and_add_alias spamalert root
87
88 # ovo je rijeseno u spamassassin-cn, i ovdje nije potrebno, stoga brisemo
89 if [ -f $AHOME/.spamassassin/user_prefs ] ; then
90   user_prefs_temp=$(mktemp /tmp/user_prefs.XXXXXX)
91   cat > $user_prefs_temp <<-EEND
92         bayes_path              $AHOME/.spamassassin/bayes
93         bayes_auto_expire       0
94         auto_whitelist_path     $AHOME/.spamassassin/auto-whitelist
95         EEND
96   if cmp -s $user_prefs_temp $AHOME/.spamassassin/user_prefs; then
97     rm -f $AHOME/.spamassassin/user_prefs
98   fi
99   rm -f $user_prefs_temp
100 fi
101
102 # No sysvinit order fixes
103 :
104
105 # Fix missing redirection in cron files for amavisd-new-cronjob
106 add_redirection /etc/cron.d/amavisd-new
107
108 if [ -n "$chown_ahome" ]; then
109   # might be slow
110   echo -n "CN: Fixing ownership in /var/*/amavis... "
111   chown -R amavis:amavis $AHOME /var/run/amavis || true
112   echo "done."
113   cp_echo -mailonly "CN: Fixed ownerships in /var/*/amavis."
114 fi
115
116 restart_daemon="1"
117 if [ "$restart_daemon" -a -x /etc/init.d/amavis ]; then
118   if [ -x "/etc/init.d/amavis" ]; then
119     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
120       invoke-rc.d amavis restart
121     else
122       /etc/init.d/amavis restart
123     fi
124   fi
125 fi
126 # always check that the daemons are running
127
128 # this needs to be updated when $CRONTAB file changes
129 if dpkg --compare-versions "$2" lt "2:20030616p10-4"; then
130   cp_echo ""
131   cp_echo "CN: Deleting temp files older than 1 day every day at 01:35 AM"
132   cp_echo "CN: Deleting spam-mail  older than 7 days every day at 03:15 AM"
133   cp_echo "CN: Deleting virus-mail older than 7 days every day at 04:25 AM"
134   cp_echo "    (can be changed in $CRONTAB)"
135 fi
136
137 if [ "$failed" ]; then
138   cp_echo ""
139   cp_echo "CN: Services $failed failed to restart!"
140   cp_echo "CN: Please check and start manually if needed."
141 fi
142
143 # Upgrade, but no automatically changed config;
144 # warn if new template available
145 if [ -n "$2" -a -z "$changed_config" ] && \
146    dpkg --compare-versions "$2" lt "$TMPLVERSION"; then
147   cp_echo ""
148   cp_echo "CN: It seems you have upgraded this package from version $2."
149   cp_echo "CN: Configuration template for $mta was modified in version ${TMPLVERSION}."
150   cp_echo "    You might want to review the changes, or simply copy the new template and"
151   cp_echo "    and replace the _CN_DOMAIN_ string with an adequate value:"
152   cp_echo "    cp $ACONFTMPL $ACONF"
153   cp_echo "    perl -pi -e 's/_CN_DOMAIN_/$domain/g' $ACONF"
154 fi
155
156 # Delete old conffiles...
157 for conffile in /etc/logcheck/violations.ignore.d/amavisd-new \
158          /etc/logcheck/ignore.d.server/amavisd-new \
159          /etc/logcheck/ignore.d.workstation/amavisd-new \
160          /etc/cron.daily/amavisd-new; do
161   if [ -f ${conffile} ]; then
162     cp_echo "CN: Deleting old conffile ${conffile}..."
163     rm -f ${conffile}
164   fi
165 done
166
167 cp_mail $PKG $VERSION
168
169 exit 0
170
171 #DEBHELPER#