Rev 3 | Rev 53 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3 | Rev 4 | ||
---|---|---|---|
Line 18... | Line 18... | ||
18 | 18 | ||
19 | case "$1" in |
19 | case "$1" in |
20 | configure) |
20 | configure) |
21 | if [ ! -e /var/spool/sa-exim ] ; then |
21 | if [ ! -e /var/spool/sa-exim ] ; then |
22 | # Debian-exim should exist as we depend on exim4-base |
22 | # Debian-exim should exist as we depend on exim4-base |
23 | install -d -m770 -oDebian-exim -gDebian-exim \ |
23 | install -d -m771 -oDebian-exim -gDebian-exim \ |
24 | /var/spool/sa-exim |
24 | /var/spool/sa-exim |
- | 25 | elif [ -d /var/spool/sa-exim ]; then |
|
- | 26 | # Fix permissions |
|
- | 27 | chmod 771 /var/spool/sa-exim |
|
- | 28 | chown Debian-exim:Debian-exim /var/spool/sa-exim |
|
25 | fi |
29 | fi |
26 | # Support for greylisting tuplets (written as nobody by spamd) |
30 | # Support for greylisting tuplets (written as nobody by spamd) |
27 | if [ ! -e /var/spool/sa-exim/tuplets ] ; then |
31 | if [ ! -e /var/spool/sa-exim/tuplets ] ; then |
28 | install -d -m750 -onobody -gDebian-exim \ |
32 | install -d -m750 -onobody -gDebian-exim \ |
29 | /var/spool/sa-exim/tuplets |
33 | /var/spool/sa-exim/tuplets |
- | 34 | elif [ -d /var/spool/sa-exim/tuplets ]; then |
|
- | 35 | # Fix permissions |
|
- | 36 | chmod 771 /var/spool/sa-exim/tuplets |
|
- | 37 | chown nobody:Debian-exim /var/spool/sa-exim/tuplets |
|
30 | fi |
38 | fi |
31 | # clean up temporary file generated by postrm uninstall |
39 | # clean up temporary file generated by postrm uninstall |
32 | if [ -e "${LOCALSCANCONF}.rul" ] && \ |
40 | if [ -e "${LOCALSCANCONF}.rul" ] && \ |
33 | [ "`md5sum ${LOCALSCANCONF}.rul | cut -d\ -f1`" = "${DISABLELOCALSCANMD5}" ]; then |
41 | [ "`md5sum ${LOCALSCANCONF}.rul | cut -d\ -f1`" = "${DISABLELOCALSCANMD5}" ]; then |
34 | rm ${LOCALSCANCONF}.rul |
42 | rm ${LOCALSCANCONF}.rul |