From dbeb9a88947d70d87cca3f9d25d786d6281a31df Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 13 Jul 2010 15:41:45 -0400 Subject: [PATCH] Added some more virtual function definitions to the Mailstore class. --- src/mailstore.rb | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) 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 -- 2.43.2