X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=src%2Fmailstore.rb;h=45a6ba857345d5f7f2e6e0ca40033f89ab46ad20;hp=4d75b87612f32fc1204374055c49aed62b793982;hb=0a35436490fe90a205000f4413523284724f5832;hpb=da71911046617ccffbb899b57162c5e6bdbb37ee diff --git a/src/mailstore.rb b/src/mailstore.rb index 4d75b87..45a6ba8 100644 --- a/src/mailstore.rb +++ b/src/mailstore.rb @@ -1,13 +1,24 @@ class Mailstore - + attr_accessor :domain_root - + def initialize(domain_root) @domain_root = domain_root end - - def get_accounts_from_filesystem() + + 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