]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/default_configuration.rb
Load the default configuration file in lib/mailshears.rb.
[mailshears.git] / lib / default_configuration.rb
1 module Configuration
2 # Where your mailboxes are stored. The exact format could
3 # theoretically change in the future, but for now, the
4 # DovecotMailstore class is going to assume that the mailboxes are
5 # stored beneath this directory in <domain>/<username> format.
6 MAIL_ROOT = '/var/spool/mail/vhosts'
7
8 # These should be obvious except for the ones that aren't. You can
9 # identify the non-obvious ones by my having left them blank.
10 DBHOST = 'localhost'
11 DBPORT = 5432
12 DBOPTS = ''
13 DBTTY = ''
14 DBUSER = 'postgres'
15 DBPASS = ''
16 DBNAME = 'postfix'
17
18 # Really delete domains/accounts, or just find them? This parameter
19 # could also be called, "I_TRUST_MAILSHEARS_NOT_TO_DO_ANYTHING_BAD".
20 I_MEAN_BUSINESS = false
21
22 PLUGINS = ['dovecot_mailstore', 'roundcube_db']
23
24 # Roundcube-specific configuration.
25 ROUNDCUBE_DBHOST = 'localhost'
26 ROUNDCUBE_DBPORT = 5432
27 ROUNDCUBE_DBOPTS = ''
28 ROUNDCUBE_DBTTY = ''
29 ROUNDCUBE_DBUSER = 'postgres'
30 ROUNDCUBE_DBPASS = ''
31 ROUNDCUBE_DBNAME = 'roundcube'
32
33 end