Browse Source

Now that default smtpd.conf aliases table has been switched to

'file' backend, we no longer have to generate the .db files.
Ok gilles@
OPENBSD_5_9
sunil 8 years ago
parent
commit
83a87d3451
1 changed files with 2 additions and 16 deletions
  1. +2
    -16
      src/etc/mail/Makefile

+ 2
- 16
src/etc/mail/Makefile View File

@ -1,28 +1,14 @@
# $OpenBSD: Makefile,v 1.12 2015/12/08 09:03:50 sunil Exp $
#
# Generate the various .db versions from their source files.
# $OpenBSD: Makefile,v 1.13 2015/12/22 07:39:00 sunil Exp $
DB_FILES= aliases.db
MAKEMAP= /usr/sbin/makemap
all: ${DB_FILES}
clean:
rm -f ${DB_FILES}
all clean:
distribution:
${INSTALL} -c -o root -g wheel -m 644 aliases \
${DESTDIR}/etc/mail/aliases
${MAKEMAP} -t aliases -o ${DESTDIR}/etc/mail/aliases.db \
${DESTDIR}/etc/mail/aliases
${INSTALL} -c -o root -g wheel -m 644 smtpd.conf \
${DESTDIR}/etc/mail/smtpd.conf
${INSTALL} -c -o root -g wheel -m 644 spamd.conf \
${DESTDIR}/etc/mail/spamd.conf
chmod 644 ${DESTDIR}/etc/mail/aliases.db
aliases.db: aliases
newaliases
.PHONY: distribution
.include <bsd.own.mk>


Loading…
Cancel
Save