blob: 6e9c7c870b963785aa97a4f28abc1da3c97f1a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# $NetBSD: pkginstall.mk,v 1.7 2007/09/22 04:42:03 jlam Exp $
# Convenience definition used below for a file or directory owned by the
# courier user and group.
#
COURIER_OWNED= ${COURIER_USER} ${COURIER_GROUP}
REQD_DIRS+= ${DATADIR} ${DOCDIR} ${EGDIR} \
${LIBEXECDIR} ${LIBEXECDIR}/modules
REQD_DIRS_PERMS+= ${LIBEXECDIR}/webmail \
${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0700
MAKE_DIRS+= ${COURIER_STATEDIR}
MAKE_DIRS_PERMS+= ${COURIER_STATEDIR}/tmp ${COURIER_OWNED} 0770
###
### Courier filter directories
###
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/filters ${COURIER_OWNED} 0750
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/filters/active \
${COURIER_OWNED} 0750
OWN_DIRS_PERMS+= ${COURIER_STATEDIR}/allfilters ${COURIER_OWNED} 0750
OWN_DIRS_PERMS+= ${COURIER_STATEDIR}/filters ${COURIER_OWNED} 0750
###
### Courier mail submission directories
###
OWN_DIRS_PERMS+= ${COURIER_STATEDIR}/msgq ${COURIER_OWNED} 0750
OWN_DIRS_PERMS+= ${COURIER_STATEDIR}/msgs ${COURIER_OWNED} 0750
OWN_DIRS_PERMS+= ${COURIER_STATEDIR}/track ${COURIER_OWNED} 0755
###
### Courier webadmin directories
###
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/webadmin ${COURIER_OWNED} 0700
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/webadmin/added \
${COURIER_OWNED} 0700
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/webadmin/removed \
${COURIER_OWNED} 0700
###
### Courier setuid and setgid binaries
###
SPECIAL_PERMS+= bin/cancelmsg ${COURIER_OWNED} 6555
SPECIAL_PERMS+= bin/mailq ${COURIER_OWNED} 2555
SPECIAL_PERMS+= bin/sendmail ${SETUID_ROOT_PERMS}
SPECIAL_PERMS+= libexec/courier/webmail/webadmin \
${SETUID_ROOT_PERMS}
SPECIAL_PERMS+= libexec/courier/submitmkdir ${COURIER_OWNED} 4550
###
### Courier delivery configuration directories
###
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/aliasdir ${COURIER_OWNED} 0755
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/aliases ${COURIER_OWNED} 0750
OWN_DIRS_PERMS+= ${PKG_SYSCONFDIR}/smtpaccess ${COURIER_OWNED} 0755
.for _file_ in aliases/system
CONF_FILES_PERMS+= ${EGDIR}/${_file_} ${PKG_SYSCONFDIR}/${_file_} \
${COURIER_OWNED} 0640
.endfor
.for _file_ in courierd.dist enablefiltering locallowercase \
maildrop maildropfilter rfcerr2045.txt \
rfcerr2046.txt rfcerr2047.txt rfcerrheader.txt \
smtpaccess/default webmlmrc.dist
CONF_FILES_PERMS+= ${EGDIR}/${_file_} \
${PKG_SYSCONFDIR}/${_file_:S/.dist$//} \
${COURIER_FILE_PERMS}
.endfor
RCD_SCRIPTS+= courier courierd courierfilter webmlm
|