a9e8641da9
It is a small and lightweight Mail Transport Agent. It accepts mails from locally installed Mail User Agents (MUA) and delivers the mails either locally or to a remote destination. Remote delivery includes several features like TLS/SSL support, SMTP authentication and NULLCLIENT. Make dma conditional to new WITHOUT_DMA option and make it respect WITHOUT_MAIL Reviewed by: peter Discussed with: emaste, bz, peter
16 lines
300 B
Makefile
16 lines
300 B
Makefile
# $DragonFly: src/etc/dma/Makefile,v 1.3 2008/02/12 22:10:20 matthias Exp $
|
|
|
|
FILESDIR= /etc/dma
|
|
SHAREOWN= root
|
|
SHAREGRP= mail
|
|
FILESMODE= 640
|
|
|
|
.if !exists(${DESTDIR}/etc/dma/auth.conf)
|
|
FILES+= auth.conf
|
|
.endif
|
|
.if !exists(${DESTDIR}/etc/dma/dma.conf)
|
|
FILES+= dma.conf
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|