]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/default_configuration.rb
fa20472a76cc53fa629cb57c26ce74a07929336c
[mailshears.git] / lib / default_configuration.rb
1 module Configuration
2 # Really delete domains/accounts, or just find them? This parameter
3 # could also be called, "i_trust_mailshears_not_to_do_anything_bad".
4 i_mean_business = false
5
6 # How to connect to your user/domain database. At the moment, this
7 # is PostfixAdmin.
8 #
9 # These should be obvious except for the ones that aren't. You can
10 # identify the non-obvious ones by my having left them blank.
11 dbhost = 'localhost'
12 dbport = 5432
13 dbopts = ''
14 dbtty = ''
15 dbuser = 'postgres'
16 dbpass = ''
17 dbname = 'postfix'
18
19 # This defines which plugins we'll use. The rest of the
20 # configuration is plugin-specific.
21 plugins = ['dovecot_mailstore', 'roundcube_db']
22
23 # Where your mailboxes are stored. The exact format could
24 # theoretically change in the future, but for now, the
25 # DovecotMailstore class is going to assume that the mailboxes are
26 # stored beneath this directory in <domain>/<username> format.
27 mail_root = '/var/spool/mail/vhosts'
28
29 # Roundcube-specific configuration.
30 roundcube_dbhost = 'localhost'
31 roundcube_dbport = 5432
32 roundcube_dbopts = ''
33 roundcube_dbtty = ''
34 roundcube_dbuser = 'postgres'
35 roundcube_dbpass = ''
36 roundcube_dbname = 'roundcube'
37
38 end