#ifndef SUBMISSION_COMMON_H
#define SUBMISSION_COMMON_H
#include "lib.h"
#include "array.h"
#include "ioloop.h"
#include "smtp-reply.h"
#include "smtp-server.h"
#include "submission-client.h"
#include "submission-settings.h"
/* Maximum number of bytes added to a relayed message. This is used to
calculate the SIZE capability based on what the backend server states. */
/* Maximum time to wait for QUIT reply from relay server */
extern bool submission_debug;
extern struct smtp_server *smtp_server;
extern struct smtp_client *smtp_client;
/* Sets the hook_client_created and returns the previous hook,
which the new_hook should call if it's non-NULL. */
void submission_refresh_proctitle(void);
#endif