]> gitweb.michael.orlitzky.com - mailshears.git/blob - src/mailstore.rb
45a6ba857345d5f7f2e6e0ca40033f89ab46ad20
[mailshears.git] / src / mailstore.rb
1 class Mailstore
2
3 attr_accessor :domain_root
4
5 def initialize(domain_root)
6 @domain_root = domain_root
7 end
8
9 def def get_domains_from_filesystem
10 raise NotImplementedError
11 end
12
13 def get_accounts_from_filesystem(domains)
14 raise NotImplementedError
15 end
16
17 def get_domain_path(domain)
18 raise NotImplementedError
19 end
20
21 def get_account_path(account)
22 raise NotImplementedError
23 end
24 end