Ejemplo n.º 1
0
IMAPStore::IMAPStore(ref <session> sess, ref <security::authenticator> auth, const bool secured)
	: store(sess, getInfosInstance(), auth), m_connection(NULL), m_isIMAPS(secured)
{
}
Ejemplo n.º 2
0
sendmailTransport::sendmailTransport(ref <session> sess, ref <security::authenticator> auth)
	: transport(sess, getInfosInstance(), auth), m_connected(false)
{
}
Ejemplo n.º 3
0
maildirStore::maildirStore(shared_ptr <session> sess, shared_ptr <security::authenticator> auth)
	: store(sess, getInfosInstance(), auth), m_connected(false)
{
}
Ejemplo n.º 4
0
POP3Store::POP3Store(shared_ptr <session> sess, shared_ptr <security::authenticator> auth, const bool secured)
	: store(sess, getInfosInstance(), auth), m_isPOP3S(secured)
{
}