]> gitweb.michael.orlitzky.com - mailshears.git/commitdiff
Remove the default configuration module.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 19 Apr 2012 13:55:04 +0000 (09:55 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 19 Apr 2012 13:55:04 +0000 (09:55 -0400)
lib/default_configuration.rb [deleted file]

diff --git a/lib/default_configuration.rb b/lib/default_configuration.rb
deleted file mode 100644 (file)
index fa20472..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-module Configuration
-  # Really delete domains/accounts, or just find them? This parameter
-  # could also be called, "i_trust_mailshears_not_to_do_anything_bad".
-  i_mean_business = false
-
-  # How to connect to your user/domain database. At the moment, this
-  # is PostfixAdmin.
-  #
-  # These should be obvious except for the ones that aren't. You can
-  # identify the non-obvious ones by my having left them blank.
-  dbhost = 'localhost'
-  dbport = 5432
-  dbopts = ''
-  dbtty = ''
-  dbuser = 'postgres'
-  dbpass = ''
-  dbname = 'postfix'
-
-  # This defines which plugins we'll use. The rest of the
-  # configuration is plugin-specific.
-  plugins = ['dovecot_mailstore', 'roundcube_db']
-
-  # Where your mailboxes are stored. The exact format could
-  # theoretically change in the future, but for now, the
-  # DovecotMailstore class is going to assume that the mailboxes are
-  # stored beneath this directory in <domain>/<username> format.
-  mail_root = '/var/spool/mail/vhosts'
-
-  # Roundcube-specific configuration.
-  roundcube_dbhost = 'localhost'
-  roundcube_dbport = 5432
-  roundcube_dbopts = ''
-  roundcube_dbtty = ''
-  roundcube_dbuser = 'postgres'
-  roundcube_dbpass = ''
-  roundcube_dbname = 'roundcube'
-
-end