]> git.donarmstrong.com Git - roundcube.git/blob - debian/roundcube-core.postinst
Imported Debian patch 0.5.1+dfsg-7
[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-5; 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 \`changed\` datetime NOT NULL DEFAULT '1000-01-01 00:00:00' AFTER \`user_id\`;
69 ALTER TABLE \`identities\` ADD INDEX \`user_identities_index\` (\`user_id\`, \`del\`);
70 EOF
71                 fi
72             fi
73         fi
74
75         CONFFILE=/etc/roundcube/main.inc.php
76         touch $CONFFILE.ucftmp
77         chmod 640 $CONFFILE.ucftmp
78
79         db_get roundcube/hosts || true
80         hosts="$RET"
81         if [ "$hosts" != "" ]; then
82             hosts="array(\"$(echo $hosts | sed 's/ /\",\"/g')\")"
83         else
84             hosts="''"
85         fi
86
87         db_get roundcube/language || true
88         language="$RET"
89
90         # Get current 3DES key from /etc/roundcube/main.inc.php
91         [ -f /etc/roundcube/main.inc.php ] && {
92             deskey=$(sed -n "s+^\$rcmail_config\['des_key'\] = '\(.*\)';\$+\1+p" \
93                 /etc/roundcube/main.inc.php)
94         }
95         # If this is the default key, forget it !
96         [ "$deskey" = "rcmail-!24ByteDESkey*Str" ] && unset deskey
97         # Generate a new one
98         while [ -z "$deskey" ]; do
99             deskey=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | \
100                 tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
101         done
102
103         # Put hosts, language and key in main.inc.php
104         cat /usr/share/roundcube/main.inc.php.dist | while read line; do
105             case "$line" in
106                 "\$rcmail_config['default_host'] = "*)
107                     printf "\$rcmail_config['default_host'] = %s;\n" "${hosts}"
108                     ;;
109                 "\$rcmail_config['des_key'] = "*)
110                     printf "\$rcmail_config['des_key'] = '%s';\n" "${deskey}"
111                     ;;
112                 "\$rcmail_config['language'] = "*)
113                     printf "\$rcmail_config['language'] = '%s';\n" "${language}"
114                     ;;
115                 *)
116                     printf "%s\n" "$line"
117                     ;;
118             esac
119         done >> $CONFFILE.ucftmp
120
121         ucf --debconf-ok $CONFFILE.ucftmp $CONFFILE
122         chown root:www-data $CONFFILE
123         rm -f $CONFFILE.ucftmp
124         
125         # Handle webserver reconfiguration/restart ; stolen from zabbix package
126         db_get roundcube/reconfigure-webserver || true
127         webservers="$RET"
128         restart=""
129
130         for webserver in $webservers; do
131             webserver=${webserver%,}
132             if [ "$webserver" = "lighttpd" ] ; then
133                 lighttpd_install
134             else
135                 apache_install $webserver
136             fi
137             test -x /usr/sbin/$webserver || continue
138             restart="$restart $webserver"
139         done
140
141         db_get roundcube/restart-webserver || true
142         res="$RET"
143         db_stop || true
144         if [ "$res" = "true" ]; then
145             for webserver in $restart; do
146                 webserver=${webserver%,}
147                 # Redirection of 3 is needed because Debconf uses it and it might
148                 # be inherited by webserver. See bug #446324.
149                 if [ -x /usr/sbin/invoke-rc.d ]; then
150                     invoke-rc.d $webserver reload 3>/dev/null || true
151                 else
152                     /etc/init.d/$webserver reload 3>/dev/null || true
153                 fi
154             done
155         fi
156
157         chown -R www-data:adm /var/log/roundcube
158         chmod -R 750 /var/log/roundcube
159         chown -R www-data:www-data /var/lib/roundcube/temp
160         chmod -R 750 /var/lib/roundcube/temp
161
162     ;;
163
164     abort-upgrade|abort-remove|abort-deconfigure)
165     ;;
166
167     *)
168         echo "postinst called with unknown argument \`$1'" >&2
169         exit 1
170     ;;
171 esac
172
173
174 #DEBHELPER#
175
176 exit 0
177
178