X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmailshears%2Fmailstore.rb;fp=lib%2Fmailshears%2Fmailstore.rb;h=19772d356087cddb330d89f79876f1ddb50d6f21;hp=0000000000000000000000000000000000000000;hb=314f5670531dfda9b3d708fce8b0161a098cf134;hpb=fd60e4e45d24c7efe5bc2710ae23f60bbb6b7be1 diff --git a/lib/mailshears/mailstore.rb b/lib/mailshears/mailstore.rb new file mode 100644 index 0000000..19772d3 --- /dev/null +++ b/lib/mailshears/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