#ifndef __MAILSYNC_TYPES__ #include #include #include #include #include "c-client-header.h" #include "msgid.h" using namespace std; ////////////////////////////////////////////////////////////////////////// enum operation_mode_t { mode_unknown, mode_sync, mode_list, mode_diff }; typedef struct MailboxProperties { bool no_inferiors; bool no_select; bool contains_messages; bool done; // mailbox has been treated (synced...) MailboxProperties(): no_inferiors(false), no_select(false), contains_messages(false), done(false) {}; }; // we sort our mailboxes by length. That way longer mailboxes and their // submailboxes (!!) will be traversed first struct longer { bool operator()(const string& s1, const string& s2) const { if (s1.length() == s2.length()) return s1 < s2; // if same length return arbitrary order // - in this case alphabetical else return s1.length() > s2.length(); } }; typedef map MailboxMap; typedef set MsgIdSet; typedef map MsgIdPositions; // Map message ids to // positions within a // mailbox typedef map MsgIdsPerMailbox; // A List of message ids // per mailbox(-name) ////////////////////////////////////////////////////////////////////////// // class Passwd // // Structure that holds the password // ////////////////////////////////////////////////////////////////////////// { public: bool nopasswd; string text; void clear(); void set_passwd(string passwd); }; #define __MAILSYNC_TYPES__ #endif