]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/mailshears.rb
75e38f0927df7c32df1099805b34a23b0820d430
[mailshears.git] / lib / mailshears.rb
1 # Load the rest of the code we'll use.
2
3 # And the necessary classes.
4 require 'mailshears/errors.rb'
5 require 'mailshears/exit_codes.rb'
6 require 'mailshears/postfixadmin_db'
7
8 Configuration::PLUGINS.each do |plugin_file|
9 require "mailshears/plugins/#{plugin_file}"
10 end
11