Closed
Bug 226989
Opened 21 years ago
Closed 21 years ago
getting a lot of "failed creating protocol instance to play queued"
Categories
(MailNews Core :: Networking: IMAP, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bugzilla, Assigned: Bienvenu)
Details
Attachments
(2 files)
4.80 KB,
patch
|
sspitzer
:
review+
mscott
:
superreview+
sspitzer
:
approval1.6b+
|
Details | Diff | Splinter Review |
673 bytes,
patch
|
mscott
:
superreview+
|
Details | Diff | Splinter Review |
I see a lot of these in my imap protocol log:
failed creating protocol instance to play queued
url:imap://xxxxxxx@imap.xxxxxx.xxxxxx:143/folderstatus>/Drafts
Mailclient setup:
5 IMAP accounts
4 of them are checked every 10 min
1 of them are checked every 1 min
4 NEWS accounts
all 4 of them are checked every 10 min
I can email the protocol log since I dont like attaching it. it contains
sensistive info
Assignee | ||
Comment 1•21 years ago
|
||
is anything going wrong? That's a diagnostic (like the rest of the logging info)
that helps tell what's going on. It's not a bug in and of itself.
Reporter | ||
Comment 2•21 years ago
|
||
it bug is about selecting messages and they dont show. it says loading message
and nothing happens. perhaps it's caused by having to many imap status checks? I
can email you a imap log if you want.
Assignee | ||
Comment 3•21 years ago
|
||
yes, please, e-mail me a log. That log message is an indication that you've
already got 5 connections going on the server (or whatever your max cached
connections is) and they probably are doing STATUS. However, that shouldn't
cause a problem in and of itself because when each url finishes, it tries to run
the remaining queued urls. A problem would occur if for some reason a url is
queued but never gets to run. How many folders do you have getting checked? It
would be better if those checks were chained instead of queued all at once, but
I haven't done that yet.
Assignee | ||
Comment 4•21 years ago
|
||
this fixes the two problems I saw in Henrik's log - the first is a general
problem - we were doing STATUS on the root folder, if you check all folders for
new mail, and we were not parsing the STATUS mailboxname response correctly.
Henrik's server was returning the folder name as a string literal, which we
didn't parse correctly at all. So I fixed the status parsing code to just treat
the mailbox name as a string, as the RFC says - not sure where the initial
confusion about the syntax of the STATUS response came from, me or Kevin, but
it was long long ago. I also fixed the variable name to be clear that the
folder was not always aRootFolder, because the method is recursive.
Assignee | ||
Updated•21 years ago
|
Attachment #136596 -
Flags: superreview?(mscott)
Comment 5•21 years ago
|
||
Comment on attachment 136596 [details] [diff] [review]
proposed fix
r/a=sspitzer for 1.6b, once you get sr=mscott
Attachment #136596 -
Flags: review+
Attachment #136596 -
Flags: approval1.6b+
Updated•21 years ago
|
Attachment #136596 -
Flags: superreview?(mscott) → superreview+
Assignee | ||
Comment 6•21 years ago
|
||
fix for problems shown in log checked in - please try tomorrow's build. If you
still have problems, can you e-mail me a new protocol log?
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 7•21 years ago
|
||
Assignee | ||
Updated•21 years ago
|
Attachment #136817 -
Flags: superreview?(mscott)
Updated•21 years ago
|
Attachment #136817 -
Flags: superreview?(mscott) → superreview+
Updated•20 years ago
|
Product: MailNews → Core
Updated•16 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•