]> gitweb.michael.orlitzky.com - mailshears.git/blob - bin/configuration.rb
Add a PLUGINS configuration option.
[mailshears.git] / bin / 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 = ['DovecotMailstore']
23 end