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


_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to