On Thu, Dec 28, 2006 at 11:01:33AM -0600, Jeff Fisher wrote:
> I have a client who is using Entourage to check this POP3 account and is
> claiming that every once and awhile it will just stop checking messages.
> I was finally able to track this down in the logs files to his client
> being disconnected with the message: I/O error disconnect.
> 
> Now looking at the source code, this error is coming from line 687 of
> pop3dserver.c (Courier-IMAP-4.1.1):
> 
>         if (ferror(f)) {
>                 /* Oops! All we can do is drop the connection */
>                 fprintf(stderr, "ERR: I/O error while reading message
> file %s: %s\n",
>                         msglist_a[i]->filename, strerror(errno));
>                 acctout("INFO: I/O error disconnect");
>                 exit(1);
>         }
> 
> Does anyone have any guesses as to what might cause this error? It seems
> to only happen when he is downloading large e-mails (e-mails with
> attachments).

Does it happen repeatedly with the same message?

The error message includes two additional pieces of information (substituted
where '%s' is shown in the above code):
- the filename
- the error code from the operating system

So I suggest you post, verbatim, an *actual* instance of this error message
from your logs, as it would show what error the O/S has said occurred, and
therefore might point to what the problem is.

http://www.catb.org/~esr/faqs/smart-questions.html#beprecise

Brian.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Courier-imap mailing list
[email protected]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-imap

Reply via email to