I'm aware that development has shifted to v2 but I wanted to ask anyway. From the way I understand, server should return NO or BAD when a message has been moved on the server side and is no longer available:
C: a001 UID FETCH 23 BODY[HEADER]
S: a001 NO No message with UID 23
So I'm wondering how to properly send a BAD/NO response from ListMessages back to the client. The current fetch command is also not exposing the conn object to ListMessages.
Before I start and add a custom Fetch command that does expose conn to ListMessages I figured I'd just ask here first 😄
Hi,
I'm aware that development has shifted to v2 but I wanted to ask anyway. From the way I understand, server should return NO or BAD when a message has been moved on the server side and is no longer available:
List messages has this signature:
So I'm wondering how to properly send a BAD/NO response from ListMessages back to the client. The current fetch command is also not exposing the
conn
object to ListMessages.Before I start and add a custom Fetch command that does expose
conn
to ListMessages I figured I'd just ask here first 😄