sendmail: Move libmilter to its own package

Many things other than sendmail itself use the milter API, for example
mail/opendkim from ports.  Putting the library in its own package means
those applications don't need to depend on FreeBSD-sendmail.

Reviewed by:	manu
Differential Revision:	https://reviews.freebsd.org/D51914
This commit is contained in:
Lexi Winter 2025-08-16 20:59:03 +01:00
parent fb13ae28b2
commit 9b48774c57
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,6 @@
.include <src.opts.mk>
PACKAGE=sendmail
PACKAGE=lib${LIB}
SENDMAIL_DIR=${SRCTOP}/contrib/sendmail
.PATH: ${SENDMAIL_DIR}/libmilter ${SENDMAIL_DIR}/libsm

View file

@ -0,0 +1,6 @@
comment = "Sendmail mail filter (milter) library"
desc = <<EOD
The Sendmail milter interface allows a mail transport agent to filter mail
through a separate process, called a milter. libmilter provides support
for applications implementing the milter interface.
EOD