ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/WinXPFAQPoll/IMAPHandler.h
(Generate patch)

Comparing trunk/WinXPFAQPoll/IMAPHandler.h (file contents):
Revision 107 by douglas, 2003-03-31T20:39:56-08:00 vs.
Revision 116 by douglas, 2003-04-01T00:43:13-08:00

# Line 121 | Line 121 | public:
121          string noop() { return imap("NOOP"); }
122          string logout() { return imap("LOGOUT"); }
123          string login(const string& args) { return imap("LOGIN", args); }
124 <        string select(const string& args) { return imap("select", args); }
125 <        string examine(const string& args) { return imap("examine", args); }
126 <        string create(const string& args) { return imap("create", args); }
127 <        string delete_(const string& args) { return imap("delete", args); }
128 <        string rename(const string& args) { return imap("rename", args); }
129 <        string subscribe(const string& args) { return imap("subscribe", args); }
130 <        string unsubscribe(const string& args) { return imap("unsubscribe", args); }
131 <        string list(const string& args) { return imap("list", args); }
132 <        string lsub(const string& args) { return imap("lsub", args); }
133 <        string status_(const string& args) { return imap("status", args); }
124 >        string select(const string& args) { return imap("SELECT", args); }
125 >        string examine(const string& args) { return imap("EXAMINE", args); }
126 >        string create(const string& args) { return imap("CREATE", args); }
127 >        string delete_(const string& args) { return imap("DELETE", args); }
128 >        string rename(const string& args) { return imap("RENAME", args); }
129 >        string subscribe(const string& args) { return imap("SUBSCRIBE", args); }
130 >        string unsubscribe(const string& args) { return imap("UNSUBSCRIBE", args); }
131 >        string list(const string& args) { return imap("LIST", args); }
132 >        string lsub(const string& args) { return imap("LSUB", args); }
133 >        string status_(const string& args) { return imap("STATUS", args); }
134          string append(const string& args, const string& message)
135          {
136 <                return imap("append", args, message);
136 >                return imap("APPEND", args, message);
137          }
138 <        string check() { return imap("check"); }
139 <        string close() { return imap("close"); }
140 <        string expunge() { return imap("expunge"); }
141 <        string search(const string& args) { return imap("search", args); }
142 <        string fetch(const string& args) { return imap("fetch", args); }
143 <        string store(const string& args) { return imap("store", args); }
144 <        string copy(const string& args) { return imap("copy", args); }
145 <        string uid(const string& args) { return imap("uid", args); }
138 >        string check() { return imap("CHECK"); }
139 >        string close() { return imap("CLOSE"); }
140 >        string expunge() { return imap("EXPUNGE"); }
141 >        string search(const string& args) { return imap("SEARCH", args); }
142 >        string fetch(const string& args) { return imap("FETCH", args); }
143 >        string store(const string& args) { return imap("STORE", args); }
144 >        string copy(const string& args) { return imap("COPY", args); }
145 >        string uid(const string& args) { return imap("UID", args); }
146          bool successful() { return success; }
147   };
148  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines