view src/lib-imap-urlauth/imap-urlauth-private.h @ 22325:e01bc3015b2f

lib-index: Check .log.2 rotation only when syncing Instead of also whenever appending transactions to .log file. This shouldn't change the behavior much, and it's needed for the following change to work correctly.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Tue, 11 Jul 2017 15:33:56 +0300
parents aabfe48db1cf
children
line wrap: on
line source

#ifndef IMAP_URLAUTH_PRIVATE_H
#define IMAP_URLAUTH_PRIVATE_H

#include "imap-urlauth.h"

struct imap_urlauth_context {
	struct mail_user *user;
	struct imap_urlauth_connection *conn;

	char *url_host;
	in_port_t url_port;

	char *access_user;
	const char **access_applications;

	unsigned int access_anonymous:1;
};

#endif