X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Fmailstore.rb;fp=lib%2Fcommon%2Fmailstore.rb;h=19772d356087cddb330d89f79876f1ddb50d6f21;hp=0000000000000000000000000000000000000000;hb=c6cab6b71770d14dad1115db90a00b990c44a58d;hpb=150ee5398c17acca8ef03b3cc48b3aa7bc1b0035 diff --git a/lib/common/mailstore.rb b/lib/common/mailstore.rb new file mode 100644 index 0000000..19772d3 --- /dev/null +++ b/lib/common/mailstore.rb @@ -0,0 +1,20 @@ +class Mailstore + + attr_accessor :domain_root + + def def get_domains_from_filesystem + raise NotImplementedError + end + + def get_accounts_from_filesystem(domains) + raise NotImplementedError + end + + def get_domain_path(domain) + raise NotImplementedError + end + + def get_account_path(account) + raise NotImplementedError + end +end