a9c055225c
Thu Apr 15 2004 Dan Walsh <dwalsh@redhat.com> 8.12.11-4.6 - Fix selinuxenabled location Wed Apr 07 2004 Dan Walsh <dwalsh@redhat.com> 8.12.11-4.5 - Fix security context of pid file for selinux Fri Apr 02 2004 Thomas Woerner <twoerner@redhat.com> 8.12.11-4.4 - fixed alternatives slave for sendmail.sendmail Thu Apr 01 2004 Thomas Woerner <twoerner@redhat.com> 8.12.11-4.3 - set path to cyrus-imapd deliver Wed Mar 31 2004 Thomas Woerner <twoerner@redhat.com> 8.12.11-4.2 - fixed spec file Wed Mar 31 2004 Thomas Woerner <twoerner@redhat.com> 8.12.11-4.1 - added authinfo to possible sendmail maps: /etc/mail/Makefile (#119010) - fixed minor version in changelog
40 lines
920 B
Plaintext
40 lines
920 B
Plaintext
# These could be used by sendmail, but are not part of the default install.
|
|
# To use them you will have to generate your own sendmail.cf with
|
|
# FEATURE('whatever')
|
|
#
|
|
POSSIBLE += $(shell test -f bitdomain && echo bitdomain.db)
|
|
POSSIBLE += $(shell test -f uudomain && echo uudomain.db)
|
|
POSSIBLE += $(shell test -f genericstable && echo genericstable.db)
|
|
POSSIBLE += $(shell test -f userdb && echo userdb.db)
|
|
POSSIBLE += $(shell test -f authinfo && echo authinfo.db)
|
|
CFFILES = sendmail.cf submit.cf
|
|
|
|
|
|
all: ${CFFILES} ${POSSIBLE} virtusertable.db access.db domaintable.db mailertable.db
|
|
|
|
userdb.db: userdb
|
|
@makemap btree $@ < $<
|
|
|
|
%.db: %
|
|
@makemap hash $@ < $<
|
|
|
|
%.cf: %.mc
|
|
@if test -f /usr/share/sendmail-cf/m4/cf.m4; then \
|
|
umask 022; \
|
|
mv -f $@ $@.bak; \
|
|
m4 $< > $@; \
|
|
fi
|
|
|
|
clean:
|
|
rm -f *.db *~
|
|
|
|
start:
|
|
service sendmail start
|
|
|
|
stop:
|
|
service sendmail stop
|
|
|
|
restart:
|
|
service sendmail restart
|
|
|