blob: f96860fc3a9fac17b4a109d9f5cef2782a4a3542 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef IMAP_SIEVE_STORAGE_H
#define IMAP_SIEVE_STORAGE_H
void imap_sieve_storage_init(struct module *module);
void imap_sieve_storage_deinit(void);
void imap_sieve_storage_client_created(struct client *client,
bool user_script);
#endif
|