]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/mailshears.rb
Get the new YAML-based configuration working, and update the README.
[mailshears.git] / lib / mailshears.rb
1 # Load the rest of the code we'll use.
2
3 # And the necessary classes.
4 require 'mailshears/configuration'
5 require 'mailshears/errors'
6 require 'mailshears/exit_codes'
7 require 'mailshears/postfixadmin_db'
8
9 cfg = Configuration.new()
10
11 cfg.plugins.each do |plugin_file|
12 require "mailshears/plugins/#{plugin_file}"
13 end