예제 #1
0
IMAPStore::IMAPStore(ref <session> sess, ref <security::authenticator> auth, const bool secured)
	: store(sess, getInfosInstance(), auth), m_connection(NULL), m_isIMAPS(secured)
{
}
sendmailTransport::sendmailTransport(ref <session> sess, ref <security::authenticator> auth)
	: transport(sess, getInfosInstance(), auth), m_connected(false)
{
}
예제 #3
0
파일: maildirStore.cpp 프로젝트: NPU/vmime
maildirStore::maildirStore(shared_ptr <session> sess, shared_ptr <security::authenticator> auth)
	: store(sess, getInfosInstance(), auth), m_connected(false)
{
}
예제 #4
0
파일: POP3Store.cpp 프로젝트: 8ackl0/vmime
POP3Store::POP3Store(shared_ptr <session> sess, shared_ptr <security::authenticator> auth, const bool secured)
	: store(sess, getInfosInstance(), auth), m_isPOP3S(secured)
{
}