/* $Cambridge: hermes/src/mailchk/imap.h,v 1.2 2003/08/11 11:59:34 dpc22 Exp $ */

#define IMAP_GETLINE_DELTA (8192)

void
imap_set_callback(BOOL (*callback)(int exists));

struct iostream *
imap_connect(char *hostname, BOOL use_ssl);

BOOL
imap_authenticate(struct iostream *stream, char *username, char *password);

BOOL
imap_examine(struct iostream *stream, char *foldername);

BOOL
imap_noop(struct iostream *stream);

BOOL
imap_idle(struct iostream *stream);







