noop.c 155 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #include "noop.h" STATUS imap_noop(Command *command) { if( command->args ) return BAD; fprintf(output, "* OK XSTATE %d\r\n", state); return OK; }