diff --git a/serpent/imap/mailbox.py b/serpent/imap/mailbox.py new file mode 100644 index 0000000..da7e4b1 --- /dev/null +++ b/serpent/imap/mailbox.py @@ -0,0 +1,11 @@ +from mailbox import Maildir + +class ExtendedMaildir(Maildir): + def set_flags(self, key): + pass + def get_flags(self, key): + pass + def add_flag(self): + pass + def remove_flag(self): + pass \ No newline at end of file