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