# # Sample configuration file for list-remote-forwards. # # The name of the database (or file, if SQLite) to which we should connect. # # Default: The name of the current user (Postgres only) # # database = "postfixadmin" # SQL query used to produce a list of local domains. This should return # the set of all domains (i.e one column) that are local to the # server. See the default value for an example. # # Default: "SELECT domain FROM domain WHERE domain <> 'ALL' ORDER BY domain;" # # domain_query = "SELECT DISTINCT domain FROM alias;" # The name of a mail exchanger, the forwards of whose domains we should # ignore. For example, if one mail exchanger, mx1.example.com, has # strict spam filtering, it may be acceptable to have remote forwarding # for domains that have mx1.example.com as their sole mail exchanger (MX # record). In that case, you might want to exclude those domains from # the report, by naming mx1.example.com here. # # A forward will be excluded from the report only if *all* of its MX # records are contained in the given exclude list. # # Default: [] (empty) # # exclude_mx = ["mx1.example.com"] # SQL query used to produce a list of all forwards on the mail # system. This query should return the set of all (address, goto) # triples, where "goto" is the destination address; i.e. to where # the "address" forwards. The "goto" field may contain more # than one email address, separated by commas. # # Default: "SELECT address,goto FROM alias ORDER BY address;" # # forward_query = "SELECT address,alias FROM aliases;" # Hostname where the database is located (Postgres-only). # # Default: None, a UNIX domain socket connection is attempted (Postgres only) # # host = "localhost" # Password used to connect to the database (Postgres-only). # # Default: None (assumes passwordless authentication) # # password = "hunter2" # Port number used to connect to the database (Postgres-only). # # Default: None, a UNIX domain socket connection is attempted (Postgres only) # # port = 5432 # Username used to connect to the database (Postgres-only). # # Default: The current user # # username = "postgres"