X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=src%2Fmailstore.rb;h=19772d356087cddb330d89f79876f1ddb50d6f21;hp=4d75b87612f32fc1204374055c49aed62b793982;hb=6732f04111887cf7d940349719481dc4b00d5c36;hpb=da71911046617ccffbb899b57162c5e6bdbb37ee diff --git a/src/mailstore.rb b/src/mailstore.rb index 4d75b87..19772d3 100644 --- a/src/mailstore.rb +++ b/src/mailstore.rb @@ -1,13 +1,20 @@ class Mailstore - + attr_accessor :domain_root - - def initialize(domain_root) - @domain_root = 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_accounts_from_filesystem() + + def get_account_path(account) raise NotImplementedError end - end