view src/plugins/convert/convert-storage.h @ 9490:fd84592e817b HEAD

dovecot-example.conf: Updated dict comments.
author Timo Sirainen <tss@iki.fi>
date Mon, 23 Nov 2009 13:08:47 -0500
parents db66611fd195
children
line wrap: on
line source

#ifndef CONVERT_STORAGE_H
#define CONVERT_STORAGE_H

struct mail_namespace;

struct convert_settings {
	bool skip_broken_mailboxes;
	bool skip_dotdirs;
	char alt_hierarchy_char;
};

int convert_storage(const char *source_data,
		    struct mail_namespace *dest_namespaces,
		    const struct convert_settings *set);

#endif