Moved IMAP, POP3, maildir and SMTP files to separate namespaces.
This commit is contained in:
parent
ac2a2cdaab
commit
0bba2794fc
@ -2,6 +2,11 @@
|
||||
VERSION 0.6.4cvs
|
||||
================
|
||||
|
||||
2005-04-03 Vincent Richard <vincent@vincent-richard.net>
|
||||
|
||||
* messaging/*: moved IMAP, POP3, maildir and SMTP files to separate
|
||||
namespaces.
|
||||
|
||||
2005-03-31 Vincent Richard <vincent@vincent-richard.net>
|
||||
|
||||
* misc/importanceHelper.{cpp|hpp}: added support for message importance:
|
||||
|
30
SConstruct
30
SConstruct
@ -200,36 +200,36 @@ libvmime_messaging_proto_sources = [
|
||||
[
|
||||
'pop3',
|
||||
[
|
||||
'messaging/POP3Store.cpp', 'messaging/POP3Store.hpp',
|
||||
'messaging/POP3Folder.cpp', 'messaging/POP3Folder.hpp',
|
||||
'messaging/POP3Message.cpp', 'messaging/POP3Message.hpp'
|
||||
'messaging/pop3/POP3Store.cpp', 'messaging/pop3/POP3Store.hpp',
|
||||
'messaging/pop3/POP3Folder.cpp', 'messaging/pop3/POP3Folder.hpp',
|
||||
'messaging/pop3/POP3Message.cpp', 'messaging/pop3/POP3Message.hpp'
|
||||
]
|
||||
],
|
||||
[
|
||||
'smtp',
|
||||
[
|
||||
'messaging/SMTPTransport.cpp', 'messaging/SMTPTransport.hpp'
|
||||
'messaging/smtp/SMTPTransport.cpp', 'messaging/smtp/SMTPTransport.hpp'
|
||||
]
|
||||
],
|
||||
[
|
||||
'imap',
|
||||
[
|
||||
'messaging/IMAPConnection.cpp', 'messaging/IMAPConnection.hpp',
|
||||
'messaging/IMAPStore.cpp', 'messaging/IMAPStore.hpp',
|
||||
'messaging/IMAPFolder.cpp', 'messaging/IMAPFolder.hpp',
|
||||
'messaging/IMAPMessage.cpp', 'messaging/IMAPMessage.hpp',
|
||||
'messaging/IMAPTag.cpp', 'messaging/IMAPTag.hpp',
|
||||
'messaging/IMAPUtils.cpp', 'messaging/IMAPUtils.hpp',
|
||||
'messaging/IMAPParser.hpp'
|
||||
'messaging/imap/IMAPConnection.cpp', 'messaging/imap/IMAPConnection.hpp',
|
||||
'messaging/imap/IMAPStore.cpp', 'messaging/imap/IMAPStore.hpp',
|
||||
'messaging/imap/IMAPFolder.cpp', 'messaging/imap/IMAPFolder.hpp',
|
||||
'messaging/imap/IMAPMessage.cpp', 'messaging/imap/IMAPMessage.hpp',
|
||||
'messaging/imap/IMAPTag.cpp', 'messaging/imap/IMAPTag.hpp',
|
||||
'messaging/imap/IMAPUtils.cpp', 'messaging/imap/IMAPUtils.hpp',
|
||||
'messaging/imap/IMAPParser.hpp'
|
||||
]
|
||||
],
|
||||
[
|
||||
'maildir',
|
||||
[
|
||||
'messaging/maildirStore.cpp', 'messaging/maildirStore.hpp',
|
||||
'messaging/maildirFolder.cpp', 'messaging/maildirFolder.hpp',
|
||||
'messaging/maildirMessage.cpp', 'messaging/maildirMessage.hpp',
|
||||
'messaging/maildirUtils.cpp', 'messaging/maildirUtils.hpp'
|
||||
'messaging/maildir/maildirStore.cpp', 'messaging/maildir/maildirStore.hpp',
|
||||
'messaging/maildir/maildirFolder.cpp', 'messaging/maildir/maildirFolder.hpp',
|
||||
'messaging/maildir/maildirMessage.cpp', 'messaging/maildir/maildirMessage.hpp',
|
||||
'messaging/maildir/maildirUtils.cpp', 'messaging/maildir/maildirUtils.hpp'
|
||||
]
|
||||
]
|
||||
]
|
||||
|
@ -25,26 +25,26 @@
|
||||
|
||||
|
||||
#if VMIME_BUILTIN_MESSAGING_PROTO_POP3
|
||||
#include "vmime/messaging/POP3Store.hpp"
|
||||
REGISTER_SERVICE(POP3Store, pop3);
|
||||
#include "vmime/messaging/pop3/POP3Store.hpp"
|
||||
REGISTER_SERVICE(pop3::POP3Store, pop3);
|
||||
#endif
|
||||
|
||||
|
||||
#if VMIME_BUILTIN_MESSAGING_PROTO_SMTP
|
||||
#include "vmime/messaging/SMTPTransport.hpp"
|
||||
REGISTER_SERVICE(SMTPTransport, smtp);
|
||||
#include "vmime/messaging/smtp/SMTPTransport.hpp"
|
||||
REGISTER_SERVICE(smtp::SMTPTransport, smtp);
|
||||
#endif
|
||||
|
||||
|
||||
#if VMIME_BUILTIN_MESSAGING_PROTO_IMAP
|
||||
#include "vmime/messaging/IMAPStore.hpp"
|
||||
REGISTER_SERVICE(IMAPStore, imap);
|
||||
#include "vmime/messaging/imap/IMAPStore.hpp"
|
||||
REGISTER_SERVICE(imap::IMAPStore, imap);
|
||||
#endif
|
||||
|
||||
|
||||
#if VMIME_BUILTIN_MESSAGING_PROTO_MAILDIR
|
||||
#include "vmime/messaging/maildirStore.hpp"
|
||||
REGISTER_SERVICE(maildirStore, maildir);
|
||||
#include "vmime/messaging/maildir/maildirStore.hpp"
|
||||
REGISTER_SERVICE(maildir::maildirStore, maildir);
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -17,10 +17,10 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/IMAPTag.hpp"
|
||||
#include "vmime/messaging/IMAPConnection.hpp"
|
||||
#include "vmime/messaging/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/IMAPStore.hpp"
|
||||
#include "vmime/messaging/imap/IMAPTag.hpp"
|
||||
#include "vmime/messaging/imap/IMAPConnection.hpp"
|
||||
#include "vmime/messaging/imap/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/imap/IMAPStore.hpp"
|
||||
|
||||
#include "vmime/exception.hpp"
|
||||
#include "vmime/platformDependant.hpp"
|
||||
@ -30,6 +30,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
IMAPConnection::IMAPConnection(IMAPStore* store, authenticator* auth)
|
||||
@ -259,5 +260,6 @@ IMAPParser::response* IMAPConnection::readResponse(IMAPParser::literalHandler* l
|
||||
}
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,13 +17,13 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/IMAPFolder.hpp"
|
||||
#include "vmime/messaging/imap/IMAPFolder.hpp"
|
||||
|
||||
#include "vmime/messaging/IMAPStore.hpp"
|
||||
#include "vmime/messaging/IMAPParser.hpp"
|
||||
#include "vmime/messaging/IMAPMessage.hpp"
|
||||
#include "vmime/messaging/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/IMAPConnection.hpp"
|
||||
#include "vmime/messaging/imap/IMAPStore.hpp"
|
||||
#include "vmime/messaging/imap/IMAPParser.hpp"
|
||||
#include "vmime/messaging/imap/IMAPMessage.hpp"
|
||||
#include "vmime/messaging/imap/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/imap/IMAPConnection.hpp"
|
||||
|
||||
#include "vmime/message.hpp"
|
||||
|
||||
@ -36,6 +36,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
IMAPFolder::IMAPFolder(const folder::path& path, IMAPStore* store, const int type, const int flags)
|
||||
@ -1555,5 +1556,6 @@ void IMAPFolder::status(int& count, int& unseen)
|
||||
}
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,12 +17,12 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/IMAPParser.hpp"
|
||||
#include "vmime/messaging/IMAPMessage.hpp"
|
||||
#include "vmime/messaging/IMAPFolder.hpp"
|
||||
#include "vmime/messaging/IMAPStore.hpp"
|
||||
#include "vmime/messaging/IMAPConnection.hpp"
|
||||
#include "vmime/messaging/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/imap/IMAPParser.hpp"
|
||||
#include "vmime/messaging/imap/IMAPMessage.hpp"
|
||||
#include "vmime/messaging/imap/IMAPFolder.hpp"
|
||||
#include "vmime/messaging/imap/IMAPStore.hpp"
|
||||
#include "vmime/messaging/imap/IMAPConnection.hpp"
|
||||
#include "vmime/messaging/imap/IMAPUtils.hpp"
|
||||
|
||||
#include <sstream>
|
||||
#include <iterator>
|
||||
@ -30,6 +30,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
//
|
||||
@ -837,5 +838,6 @@ void IMAPMessage::setFlags(const int flags, const int mode)
|
||||
}
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,9 +17,9 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/IMAPStore.hpp"
|
||||
#include "vmime/messaging/IMAPFolder.hpp"
|
||||
#include "vmime/messaging/IMAPConnection.hpp"
|
||||
#include "vmime/messaging/imap/IMAPStore.hpp"
|
||||
#include "vmime/messaging/imap/IMAPFolder.hpp"
|
||||
#include "vmime/messaging/imap/IMAPConnection.hpp"
|
||||
|
||||
#include "vmime/exception.hpp"
|
||||
#include "vmime/platformDependant.hpp"
|
||||
@ -29,6 +29,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
#ifndef VMIME_BUILDING_DOC
|
||||
@ -288,5 +289,6 @@ const std::vector <string> IMAPStore::_infos::getAvailableProperties() const
|
||||
}
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,11 +17,12 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/IMAPTag.hpp"
|
||||
#include "vmime/messaging/imap/IMAPTag.hpp"
|
||||
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
const int IMAPTag::sm_maxNumber = 52 * 10 * 10 * 10;
|
||||
@ -93,5 +94,6 @@ void IMAPTag::generate()
|
||||
}
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,7 +17,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/imap/IMAPUtils.hpp"
|
||||
#include "vmime/messaging/message.hpp"
|
||||
|
||||
#include <sstream>
|
||||
@ -27,6 +27,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
const string IMAPUtils::quoteString(const string& text)
|
||||
@ -549,5 +550,6 @@ const string IMAPUtils::dateTime(const vmime::datetime& date)
|
||||
}
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,11 +17,11 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/maildirFolder.hpp"
|
||||
#include "vmime/messaging/maildir/maildirFolder.hpp"
|
||||
|
||||
#include "vmime/messaging/maildirStore.hpp"
|
||||
#include "vmime/messaging/maildirMessage.hpp"
|
||||
#include "vmime/messaging/maildirUtils.hpp"
|
||||
#include "vmime/messaging/maildir/maildirStore.hpp"
|
||||
#include "vmime/messaging/maildir/maildirMessage.hpp"
|
||||
#include "vmime/messaging/maildir/maildirUtils.hpp"
|
||||
|
||||
#include "vmime/utility/smartPtr.hpp"
|
||||
|
||||
@ -33,6 +33,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
maildirFolder::maildirFolder(const folder::path& path, maildirStore* store)
|
||||
@ -1344,5 +1345,6 @@ const utility::file::path maildirFolder::getMessageFSPath(const int number)
|
||||
}
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,11 +17,11 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/maildirMessage.hpp"
|
||||
#include "vmime/messaging/maildirFolder.hpp"
|
||||
#include "vmime/messaging/maildirUtils.hpp"
|
||||
#include "vmime/messaging/maildir/maildirMessage.hpp"
|
||||
#include "vmime/messaging/maildir/maildirFolder.hpp"
|
||||
#include "vmime/messaging/maildir/maildirUtils.hpp"
|
||||
|
||||
#include "vmime/messageParser.hpp" // to include "message.hpp" in root directory
|
||||
#include "vmime/message.hpp"
|
||||
|
||||
#include "vmime/exception.hpp"
|
||||
#include "vmime/platformDependant.hpp"
|
||||
@ -29,6 +29,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
//
|
||||
@ -499,5 +500,6 @@ header& maildirMessage::getOrCreateHeader()
|
||||
}
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,9 +17,9 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/maildirStore.hpp"
|
||||
#include "vmime/messaging/maildir/maildirStore.hpp"
|
||||
|
||||
#include "vmime/messaging/maildirFolder.hpp"
|
||||
#include "vmime/messaging/maildir/maildirFolder.hpp"
|
||||
|
||||
#include "vmime/utility/smartPtr.hpp"
|
||||
|
||||
@ -29,6 +29,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
maildirStore::maildirStore(session* sess, authenticator* auth)
|
||||
@ -228,5 +229,6 @@ const std::vector <string> maildirStore::_infos::getAvailableProperties() const
|
||||
}
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,14 +17,15 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/maildirUtils.hpp"
|
||||
#include "vmime/messaging/maildirStore.hpp"
|
||||
#include "vmime/messaging/maildir/maildirUtils.hpp"
|
||||
#include "vmime/messaging/maildir/maildirStore.hpp"
|
||||
|
||||
#include "vmime/utility/random.hpp"
|
||||
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
const vmime::word maildirUtils::TMP_DIR("tmp", vmime::charset(vmime::charsets::US_ASCII)); // ensure reliable delivery (not to be listed)
|
||||
@ -188,5 +189,6 @@ const bool maildirUtils::messageIdComparator::operator()
|
||||
}
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,16 +17,17 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/POP3Folder.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Folder.hpp"
|
||||
|
||||
#include "vmime/messaging/POP3Store.hpp"
|
||||
#include "vmime/messaging/POP3Message.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Store.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Message.hpp"
|
||||
|
||||
#include "vmime/exception.hpp"
|
||||
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace pop3 {
|
||||
|
||||
|
||||
POP3Folder::POP3Folder(const folder::path& path, POP3Store* store)
|
||||
@ -814,5 +815,6 @@ void POP3Folder::parseMultiListOrUidlResponse(const string& response, std::map <
|
||||
}
|
||||
|
||||
|
||||
} // pop3
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,15 +17,16 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/POP3Message.hpp"
|
||||
#include "vmime/messaging/POP3Folder.hpp"
|
||||
#include "vmime/messaging/POP3Store.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Message.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Folder.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Store.hpp"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace pop3 {
|
||||
|
||||
|
||||
POP3Message::POP3Message(POP3Folder* folder, const int num)
|
||||
@ -212,5 +213,6 @@ void POP3Message::setFlags(const int /* flags */, const int /* mode */)
|
||||
}
|
||||
|
||||
|
||||
} // pop3
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/POP3Store.hpp"
|
||||
#include "vmime/messaging/POP3Folder.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Store.hpp"
|
||||
#include "vmime/messaging/pop3/POP3Folder.hpp"
|
||||
|
||||
#include "vmime/exception.hpp"
|
||||
#include "vmime/platformDependant.hpp"
|
||||
@ -30,6 +30,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace pop3 {
|
||||
|
||||
|
||||
POP3Store::POP3Store(session* sess, authenticator* auth)
|
||||
@ -624,5 +625,6 @@ const std::vector <string> POP3Store::_infos::getAvailableProperties() const
|
||||
}
|
||||
|
||||
|
||||
} // pop3
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,7 +17,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#include "vmime/messaging/SMTPTransport.hpp"
|
||||
#include "vmime/messaging/smtp/SMTPTransport.hpp"
|
||||
|
||||
#include "vmime/exception.hpp"
|
||||
#include "vmime/platformDependant.hpp"
|
||||
@ -30,6 +30,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace smtp {
|
||||
|
||||
|
||||
SMTPTransport::SMTPTransport(session* sess, authenticator* auth)
|
||||
@ -587,5 +588,6 @@ const std::vector <string> SMTPTransport::_infos::getAvailableProperties() const
|
||||
}
|
||||
|
||||
|
||||
} // smtp
|
||||
} // messaging
|
||||
} // vmime
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPCONNECTION_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPCONNECTION_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPCONNECTION_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPCONNECTION_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/config.hpp"
|
||||
@ -27,11 +27,12 @@
|
||||
#include "vmime/messaging/socket.hpp"
|
||||
#include "vmime/messaging/timeoutHandler.hpp"
|
||||
|
||||
#include "vmime/messaging/IMAPParser.hpp"
|
||||
#include "vmime/messaging/imap/IMAPParser.hpp"
|
||||
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
class IMAPTag;
|
||||
@ -104,8 +105,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPCONNECTION_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPCONNECTION_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPFOLDER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPFOLDER_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPFOLDER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPFOLDER_HPP_INCLUDED
|
||||
|
||||
|
||||
#include <vector>
|
||||
@ -31,6 +31,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
class IMAPStore;
|
||||
@ -148,8 +149,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPFOLDER_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPFOLDER_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPMESSAGE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPMESSAGE_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPMESSAGE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPMESSAGE_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/messaging/message.hpp"
|
||||
@ -29,6 +29,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
/** IMAP message implementation.
|
||||
@ -98,8 +99,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPMESSAGE_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPMESSAGE_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPPARSER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPPARSER_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPPARSER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPPARSER_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/base.hpp"
|
||||
@ -38,7 +38,7 @@
|
||||
#include "vmime/messaging/timeoutHandler.hpp"
|
||||
#include "vmime/messaging/socket.hpp"
|
||||
|
||||
#include "vmime/messaging/IMAPTag.hpp"
|
||||
#include "vmime/messaging/imap/IMAPTag.hpp"
|
||||
|
||||
#include <vector>
|
||||
#include <stdexcept>
|
||||
@ -54,6 +54,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
#if DEBUG_RESPONSE
|
||||
@ -5070,8 +5071,9 @@ public:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPPARSER_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPPARSER_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPSTORE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPSTORE_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPSTORE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPSTORE_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/config.hpp"
|
||||
@ -32,6 +32,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
class IMAPParser;
|
||||
@ -110,8 +111,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPSTORE_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPSTORE_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPTAG_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPTAG_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPTAG_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPTAG_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/types.hpp"
|
||||
@ -26,6 +26,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
class IMAPTag
|
||||
@ -57,8 +58,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPTAG_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPTAG_HPP_INCLUDED
|
@ -17,21 +17,22 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_IMAPUTILS_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAPUTILS_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_IMAP_IMAPUTILS_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_IMAP_IMAPUTILS_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/types.hpp"
|
||||
#include "vmime/dateTime.hpp"
|
||||
|
||||
#include "vmime/messaging/folder.hpp"
|
||||
#include "vmime/messaging/IMAPParser.hpp"
|
||||
#include "vmime/messaging/imap/IMAPParser.hpp"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace imap {
|
||||
|
||||
|
||||
class IMAPUtils
|
||||
@ -59,8 +60,9 @@ public:
|
||||
};
|
||||
|
||||
|
||||
} // imap
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_IMAPUTILS_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_IMAP_IMAPUTILS_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_MAILDIRFOLDER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIRFOLDER_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_MAILDIR_MAILDIRFOLDER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIR_MAILDIRFOLDER_HPP_INCLUDED
|
||||
|
||||
|
||||
#include <vector>
|
||||
@ -33,6 +33,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
class maildirStore;
|
||||
@ -167,8 +168,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_MAILDIRFOLDER_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_MAILDIR_MAILDIRFOLDER_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_MAILDIRMESSAGE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIRMESSAGE_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_MAILDIR_MAILDIRMESSAGE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIR_MAILDIRMESSAGE_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/messaging/message.hpp"
|
||||
@ -27,6 +27,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
class maildirFolder;
|
||||
@ -93,8 +94,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_MAILDIRMESSAGE_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_MAILDIR_MAILDIRMESSAGE_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_MAILDIRSTORE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIRSTORE_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_MAILDIR_MAILDIRSTORE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIR_MAILDIRSTORE_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/config.hpp"
|
||||
@ -34,6 +34,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
class maildirFolder;
|
||||
@ -100,8 +101,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_MAILDIRSTORE_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_MAILDIR_MAILDIRSTORE_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_MAILDIRUTILS_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIRUTILS_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_MAILDIR_MAILDIRUTILS_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_MAILDIR_MAILDIRUTILS_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/utility/file.hpp"
|
||||
@ -27,6 +27,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace maildir {
|
||||
|
||||
|
||||
class maildirStore;
|
||||
@ -142,8 +143,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // maildir
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_MAILDIRUTILS_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_MAILDIR_MAILDIRUTILS_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_POP3FOLDER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_POP3FOLDER_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_POP3_POP3FOLDER_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_POP3_POP3FOLDER_HPP_INCLUDED
|
||||
|
||||
|
||||
#include <vector>
|
||||
@ -32,6 +32,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace pop3 {
|
||||
|
||||
|
||||
class POP3Store;
|
||||
@ -138,8 +139,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // pop3
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_POP3FOLDER_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_POP3_POP3FOLDER_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_POP3MESSAGE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_POP3MESSAGE_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_POP3_POP3MESSAGE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_POP3_POP3MESSAGE_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/config.hpp"
|
||||
@ -29,6 +29,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace pop3 {
|
||||
|
||||
|
||||
/** POP3 message implementation.
|
||||
@ -85,8 +86,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // pop3
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_POP3MESSAGE_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_POP3_POP3MESSAGE_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_POP3STORE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_POP3STORE_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_POP3_POP3STORE_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_POP3_POP3STORE_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/config.hpp"
|
||||
@ -32,6 +32,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace pop3 {
|
||||
|
||||
|
||||
/** POP3 store service.
|
||||
@ -109,8 +110,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // pop3
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_POP3STORE_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_POP3_POP3STORE_HPP_INCLUDED
|
@ -17,8 +17,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef VMIME_MESSAGING_SMTPTRANSPORT_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_SMTPTRANSPORT_HPP_INCLUDED
|
||||
#ifndef VMIME_MESSAGING_SMTP_SMTPTRANSPORT_HPP_INCLUDED
|
||||
#define VMIME_MESSAGING_SMTP_SMTPTRANSPORT_HPP_INCLUDED
|
||||
|
||||
|
||||
#include "vmime/config.hpp"
|
||||
@ -30,6 +30,7 @@
|
||||
|
||||
namespace vmime {
|
||||
namespace messaging {
|
||||
namespace smtp {
|
||||
|
||||
|
||||
/** SMTP transport service.
|
||||
@ -89,8 +90,9 @@ private:
|
||||
};
|
||||
|
||||
|
||||
} // smtp
|
||||
} // messaging
|
||||
} // vmime
|
||||
|
||||
|
||||
#endif // VMIME_MESSAGING_SMTPTRANSPORT_HPP_INCLUDED
|
||||
#endif // VMIME_MESSAGING_SMTP_SMTPTRANSPORT_HPP_INCLUDED
|
Loading…
Reference in New Issue
Block a user