author | alwin <alwin> | 2003-12-13 12:49:27 (UTC) |
---|---|---|
committer | alwin <alwin> | 2003-12-13 12:49:27 (UTC) |
commit | 865b023c57f657c8eff26baa670fc76bbcd548e4 (patch) (unidiff) | |
tree | 1d40c66d0b4e571277be77db1692791688569c9f | |
parent | cb7b0d2e509d5fc1759fee7c8c855e259e44ed95 (diff) | |
download | opie-865b023c57f657c8eff26baa670fc76bbcd548e4.zip opie-865b023c57f657c8eff26baa670fc76bbcd548e4.tar.gz opie-865b023c57f657c8eff26baa670fc76bbcd548e4.tar.bz2 |
try to solve the problems with slow imap-server
-rw-r--r-- | noncore/net/mail/imapwrapper.cpp | 3 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/imapwrapper.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/noncore/net/mail/imapwrapper.cpp b/noncore/net/mail/imapwrapper.cpp index 11bf3b8..48e476b 100644 --- a/noncore/net/mail/imapwrapper.cpp +++ b/noncore/net/mail/imapwrapper.cpp | |||
@@ -16,33 +16,34 @@ IMAPwrapper::~IMAPwrapper() | |||
16 | logout(); | 16 | logout(); |
17 | } | 17 | } |
18 | 18 | ||
19 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) | 19 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) |
20 | { | 20 | { |
21 | qDebug( "IMAP: %i of %i", current, maximum ); | 21 | qDebug( "IMAP: %i of %i", current, maximum ); |
22 | } | 22 | } |
23 | 23 | ||
24 | void IMAPwrapper::login() | 24 | void IMAPwrapper::login() |
25 | { | 25 | { |
26 | const char *server, *user, *pass; | 26 | const char *server, *user, *pass; |
27 | uint16_t port; | 27 | uint16_t port; |
28 | int err = MAILIMAP_NO_ERROR; | 28 | int err = MAILIMAP_NO_ERROR; |
29 | 29 | ||
30 | /* we are connected this moment */ | 30 | /* we are connected this moment */ |
31 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ | 31 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ |
32 | if (m_imap) { | 32 | if (m_imap) { |
33 | mailstream_flush(m_imap->imap_stream); | ||
33 | return; | 34 | return; |
34 | } | 35 | } |
35 | server = account->getServer().latin1(); | 36 | server = account->getServer().latin1(); |
36 | port = account->getPort().toUInt(); | 37 | port = account->getPort().toUInt(); |
37 | user = account->getUser().latin1(); | 38 | user = account->getUser().latin1(); |
38 | pass = account->getPassword().latin1(); | 39 | pass = account->getPassword().latin1(); |
39 | 40 | ||
40 | m_imap = mailimap_new( 20, &imap_progress ); | 41 | m_imap = mailimap_new( 20, &imap_progress ); |
41 | /* connect */ | 42 | /* connect */ |
42 | if (account->getSSL()) { | 43 | if (account->getSSL()) { |
43 | err = mailimap_ssl_connect( m_imap, (char*)server, port ); | 44 | err = mailimap_ssl_connect( m_imap, (char*)server, port ); |
44 | } else { | 45 | } else { |
45 | err = mailimap_socket_connect( m_imap, (char*)server, port ); | 46 | err = mailimap_socket_connect( m_imap, (char*)server, port ); |
46 | } | 47 | } |
47 | 48 | ||
48 | if ( err != MAILIMAP_NO_ERROR && | 49 | if ( err != MAILIMAP_NO_ERROR && |
diff --git a/noncore/net/mail/libmailwrapper/imapwrapper.cpp b/noncore/net/mail/libmailwrapper/imapwrapper.cpp index 11bf3b8..48e476b 100644 --- a/noncore/net/mail/libmailwrapper/imapwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/imapwrapper.cpp | |||
@@ -16,33 +16,34 @@ IMAPwrapper::~IMAPwrapper() | |||
16 | logout(); | 16 | logout(); |
17 | } | 17 | } |
18 | 18 | ||
19 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) | 19 | void IMAPwrapper::imap_progress( size_t current, size_t maximum ) |
20 | { | 20 | { |
21 | qDebug( "IMAP: %i of %i", current, maximum ); | 21 | qDebug( "IMAP: %i of %i", current, maximum ); |
22 | } | 22 | } |
23 | 23 | ||
24 | void IMAPwrapper::login() | 24 | void IMAPwrapper::login() |
25 | { | 25 | { |
26 | const char *server, *user, *pass; | 26 | const char *server, *user, *pass; |
27 | uint16_t port; | 27 | uint16_t port; |
28 | int err = MAILIMAP_NO_ERROR; | 28 | int err = MAILIMAP_NO_ERROR; |
29 | 29 | ||
30 | /* we are connected this moment */ | 30 | /* we are connected this moment */ |
31 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ | 31 | /* TODO: setup a timer holding the line or if connection closed - delete the value */ |
32 | if (m_imap) { | 32 | if (m_imap) { |
33 | mailstream_flush(m_imap->imap_stream); | ||
33 | return; | 34 | return; |
34 | } | 35 | } |
35 | server = account->getServer().latin1(); | 36 | server = account->getServer().latin1(); |
36 | port = account->getPort().toUInt(); | 37 | port = account->getPort().toUInt(); |
37 | user = account->getUser().latin1(); | 38 | user = account->getUser().latin1(); |
38 | pass = account->getPassword().latin1(); | 39 | pass = account->getPassword().latin1(); |
39 | 40 | ||
40 | m_imap = mailimap_new( 20, &imap_progress ); | 41 | m_imap = mailimap_new( 20, &imap_progress ); |
41 | /* connect */ | 42 | /* connect */ |
42 | if (account->getSSL()) { | 43 | if (account->getSSL()) { |
43 | err = mailimap_ssl_connect( m_imap, (char*)server, port ); | 44 | err = mailimap_ssl_connect( m_imap, (char*)server, port ); |
44 | } else { | 45 | } else { |
45 | err = mailimap_socket_connect( m_imap, (char*)server, port ); | 46 | err = mailimap_socket_connect( m_imap, (char*)server, port ); |
46 | } | 47 | } |
47 | 48 | ||
48 | if ( err != MAILIMAP_NO_ERROR && | 49 | if ( err != MAILIMAP_NO_ERROR && |