]> git.donarmstrong.com Git - roundcube.git/blob - debian/roundcube-core.postinst
59f85f727ba009b087ba18dc6b201321ab2c2386
[roundcube.git] / debian / roundcube-core.postinst
1 #!/bin/sh
2 # postinst script for roundcube
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 . /usr/share/debconf/confmodule
9 . /usr/share/dbconfig-common/dpkg/postinst 
10 dbc_generate_include=php:/etc/roundcube/debian-db.php
11 dbc_generate_include_owner="www-data:www-data"
12 dbc_generate_include_perms="640"
13 dbc_dbfile_owner="www-data:www-data"
14 dbc_dbfile_perms="0660"
15 dbc_dbuser=roundcube
16 dbc_dbname=roundcube
17
18 dbc_go roundcube $@
19
20 lighttpd_install() {
21         if [ ! -f /etc/lighttpd/conf-available/50-roundcube.conf ] ; then
22                 if [ ! -x /usr/sbin/lighty-enable-mod ] ; then
23                         echo "Lighttpd not installed, skipping"
24                 else
25                         ln -s /etc/roundcube/lighttpd.conf /etc/lighttpd/conf-available/50-roundcube.conf
26                         lighty-enable-mod roundcube
27                 fi
28         fi
29 }
30
31 apache_install() {
32         webserver=$1
33         if [ -d /etc/$webserver/conf.d ] && [ ! -e /etc/$webserver/conf.d/roundcube ]; then
34                ln -s /etc/roundcube/apache.conf /etc/$webserver/conf.d/roundcube
35         fi
36 }
37
38
39 case "$1" in
40     configure)
41
42         # We try to fix an incomplete upgrade (see #610725 and #613586)
43         if [ -n "$2" ] && dpkg --compare-versions "$2" le 0.5.1+dfsg-2; then
44             db_get roundcube/dbconfig-upgrade || true
45             if [ x"$RET" = x"true" ]; then
46                 if [ x"$dbc_dbtype" = x"mysql" ]; then
47                     # Ok, we may need to do some upgrade steps.
48                     echo "Fixing MySQL installation..."
49                     if dpkg --compare-versions "$2" ge 0.5; then
50                         # Hack (ugly) to replace "mysql" by "mysql -f"
51                         real_mysql="$(which mysql)"
52                         workdir="$(mktemp -d)"
53                         oldpath="$PATH"
54                         cat <<EOF > "$workdir/mysql"
55 #!/bin/sh
56 "$real_mysql" "\$@" -f
57 EOF
58                         chmod +x "$workdir/mysql"
59                         PATH="$workdir:$PATH"
60                         dbc_mysql_exec_file \
61                             /usr/share/dbconfig-common/data/roundcube/upgrade/mysql/0.5-1 || true
62                         PATH="$oldpath"
63                         rm -rf "$workdir"
64                     fi
65                     cat <<EOF | while read command; do dbc_mysql_exec_command "$command" || true ; done
66 ALTER TABLE \`messages\` ADD INDEX \`index_index\` (\`user_id\`, \`cache_key\`, \`idx\`);
67 ALTER TABLE \`contacts\`ADD INDEX \`user_contacts_index\` (\`user_id\`,\`email\`);
68 ALTER TABLE \`identities\` ADD INDEX \`user_identities_index\` (\`user_id\`, \`del\`);
69 EOF
70                 fi
71             fi
72         fi
73
74         CONFFILE=/etc/roundcube/main.inc.php
75         touch $CONFFILE.ucftmp
76         chmod 640 $CONFFILE.ucftmp
77
78         db_get roundcube/hosts || true
79         hosts="$RET"
80         if [ "$hosts" != "" ]; then
81             hosts="array(\"$(echo $hosts | sed 's/ /\",\"/g')\")"
82         else
83             hosts="''"
84         fi
85
86         db_get roundcube/language || true
87         language="$RET"
88
89         # Get current 3DES key from /etc/roundcube/main.inc.php
90         [ -f /etc/roundcube/main.inc.php ] && {
91             deskey=$(sed -n "s+^\$rcmail_config\['des_key'\] = '\(.*\)';\$+\1+p" \
92                 /etc/roundcube/main.inc.php)
93         }
94         # If this is the default key, forget it !
95         [ "$deskey" = "rcmail-!24ByteDESkey*Str" ] && unset deskey
96         # Generate a new one
97         while [ -z "$deskey" ]; do
98             deskey=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | \
99                 tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
100         done
101
102         # Put hosts, language and key in main.inc.php
103         cat /usr/share/roundcube/main.inc.php.dist | \
104             sed -e "s+^\(\$rcmail_config\['default_host'\] = \)''\(;\)\$+\1${hosts}\2+" \
105                 -e "s+^\(\$rcmail_config\['des_key'\] = '\).*\(';\)\$+\1$deskey\2+" \
106                 -e "s+^\(\$rcmail_config\['language'\] = \).*\(;\)\$+\1'${language}'\2+" >> $CONFFILE.ucftmp
107
108         ucf --debconf-ok $CONFFILE.ucftmp $CONFFILE
109         chown root:www-data $CONFFILE
110         rm -f $CONFFILE.ucftmp
111         
112         # Handle webserver reconfiguration/restart ; stolen from zabbix package
113         db_get roundcube/reconfigure-webserver || true
114         webservers="$RET"
115         restart=""
116
117         for webserver in $webservers; do
118             webserver=${webserver%,}
119             if [ "$webserver" = "lighttpd" ] ; then
120                 lighttpd_install
121             else
122                 apache_install $webserver
123             fi
124             test -x /usr/sbin/$webserver || continue
125             restart="$restart $webserver"
126         done
127
128         db_get roundcube/restart-webserver || true
129         res="$RET"
130         db_stop || true
131         if [ "$res" = "true" ]; then
132             for webserver in $restart; do
133                 webserver=${webserver%,}
134                 # Redirection of 3 is needed because Debconf uses it and it might
135                 # be inherited by webserver. See bug #446324.
136                 if [ -x /usr/sbin/invoke-rc.d ]; then
137                     invoke-rc.d $webserver reload 3>/dev/null || true
138                 else
139                     /etc/init.d/$webserver reload 3>/dev/null || true
140                 fi
141             done
142         fi
143
144         chown -R www-data:adm /var/log/roundcube
145         chmod -R 750 /var/log/roundcube
146         chown -R www-data:www-data /var/lib/roundcube/temp
147         chmod -R 750 /var/lib/roundcube/temp
148
149     ;;
150
151     abort-upgrade|abort-remove|abort-deconfigure)
152     ;;
153
154     *)
155         echo "postinst called with unknown argument \`$1'" >&2
156         exit 1
157     ;;
158 esac
159
160
161 #DEBHELPER#
162
163 exit 0
164
165