imap-common.h revision b66d803de86bfb411165b3465b0d9ef64ecfe2a1
#ifndef IMAP_COMMON_H
#define IMAP_COMMON_H
/* Disconnect client after idling this many milliseconds */
/* If we can't send anything to client for this long, disconnect the client */
/* Stop buffering more data into output stream after this many bytes */
#define CLIENT_OUTPUT_OPTIMAL_SIZE 2048
/* Disconnect client when it sends too many bad commands in a row */
#define CLIENT_MAX_BAD_COMMANDS 20
#include "lib.h"
#include "imap-client.h"
#include "imap-settings.h"
/* Sets the hook_client_created and returns the previous hook,
which the new_hook should call if it's non-NULL. */
void imap_refresh_proctitle(void);
#endif