help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] Re: POP Mail client crashing


From: Paolo Bonzini
Subject: [Help-smalltalk] Re: POP Mail client crashing
Date: Thu, 28 Feb 2008 08:13:44 +0100
User-agent: Thunderbird 2.0.0.12 (Macintosh/20080213)


Here is the code I'm using:-
    client := NetClients.POP.POPClient connectToHost: popHost.
    [client
        username: popUsername
        password: popPassword.
        client login.

        client getNewMailMessages: [ :mimeEntity |
                self updateReceivedID: mimeEntity.  ]
            delete: true
    ] ensure: [client close].

For what its worth code in the getNewMailMessages: block is all completed. It fails when it goes to handle the delete: part. It doesn't matter if delete: is set to true or false.

What does updateReceivedID: do?

Paolo




reply via email to

[Prev in Thread] Current Thread [Next in Thread]