From f36515f2334882aa2f9167c2ffc68b01d3a29ba2 Mon Sep 17 00:00:00 2001 From: inpos Date: Tue, 31 May 2016 13:42:31 +0300 Subject: [PATCH] ExtendedMaildir --- serpent/imap/mailbox.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 serpent/imap/mailbox.py 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