]> gitweb.michael.orlitzky.com - mailbox-count.git/blob - doc/mailbox-countrc.example
Add an example config file.
[mailbox-count.git] / doc / mailbox-countrc.example
1 #
2 # Sample configuration file for mailbox-count.
3 #
4
5 # The name of the database to which we should connect.
6 #
7 # Default: The name of the current user (Postgres only)
8 #
9 # database = "postfixadmin"
10
11
12 # Produce a detailed report listing all mailboxes by domain.
13 #
14 # Default: false
15 #
16 # detail = true
17
18
19 # Hostname where the database is located.
20 #
21 # Default: None, a UNIX domain socket connection is attempted (Postgres only)
22 #
23 # host = "localhost"
24
25
26 # Password used to connect to the database.
27 #
28 # Default: None (assumes passwordless authentication)
29 #
30 # password = "hunter2"
31
32
33 # Port number used to connect to the database.
34 #
35 # Default: None, a UNIX domain socket connection is attempted (Postgres only)
36 #
37 # port = 5432
38
39
40 # Username used to connect to the database.
41 #
42 # Default: The current user
43 #
44 # username = "postgres"