67548a7d79
Mon Jun 21 2004 Thomas Woerner <twoerner@redhat.com> 8.13.0-1 - new version 8.13.0 - made /etc/mail/Makefile complain missing sendmail-cf package (#123348) - fixed ownership of %{_includedir}/libmilter (#73977) - moved back to /usr/share/ssl/certs as certificate directory (see sendmail.mc) - extended sendmail.mc for spam protection
42 lines
996 B
Plaintext
42 lines
996 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 $< > $@; \
|
|
else \
|
|
echo "ERROR: package sendmail-cf is not installed.. aborting!"; \
|
|
fi
|
|
|
|
clean:
|
|
rm -f *.db *~
|
|
|
|
start:
|
|
service sendmail start
|
|
|
|
stop:
|
|
service sendmail stop
|
|
|
|
restart:
|
|
service sendmail restart
|
|
|