260aaf48f8
Packaged in wip by Petar Bogdanovic. The mail gopher (mopher) is an extension to all mail transfer agents that implement the Sendmail Milter API. It reads a list of rules and acts on each incoming mail delivery attempt based on various criteria and existing states. Mopher supports indiscriminate and selective grey- and whitelisting of either individual addresses or whole domains (based on reverse lookups and rules provided by Mozilla's Public Suffix List). Access to tables and state-related data passes through a generic interface and is then translated by one of the available backend drivers.
35 lines
619 B
Text
35 lines
619 B
Text
# $NetBSD: mopherd.conf,v 1.1 2014/12/01 13:58:15 gdt Exp $
|
|
#
|
|
# minimal mopherd.conf(5) for pkgsrc
|
|
#
|
|
# Your mailer-daemon needs to know about milter_socket.
|
|
|
|
workdir_path = "@MOPHER_HOME@"
|
|
mopherd_user = "@MOPHER_USER@"
|
|
mopherd_group = "@MOPHER_GROUP@"
|
|
control_socket = "unix:@MOPHER_HOME@/mopherd-c.sock"
|
|
milter_socket = "unix:@MOPHER_HOME@/mopherd-m.sock"
|
|
|
|
table[state] =
|
|
{
|
|
driver = "bdb",
|
|
path = "state.db"
|
|
}
|
|
|
|
table[greylist] =
|
|
{
|
|
driver = "bdb",
|
|
path = "greylist.db"
|
|
}
|
|
|
|
table[counter_relay] =
|
|
{
|
|
driver = "bdb",
|
|
path = "relay.db"
|
|
}
|
|
|
|
table[counter_penpal] =
|
|
{
|
|
driver = "bdb",
|
|
path = "penpal.db"
|
|
}
|