]> gitweb.michael.orlitzky.com - mailshears.git/blob - bin/configuration.rb
Prettied up the output with a header.
[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 end