blob: b0d478fcb3a27880e60fcbca3f15b288a4bf0063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef maildir_autoresponse_h
#define maildir_autoresponse_h
/*
** Copyright 2001-2003 Double Precision, Inc.
** See COPYING for distribution information.
*/
#include "config.h"
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Return a list of available autoresponses, NULL if error */
extern char **maildir_autoresponse_list(const char *);
extern void maildir_autoresponse_list_free(char **);
/* Validate the autoresponse name */
extern int maildir_autoresponse_validate(const char *, const char *);
/* Delete/Create/Open autoresponse text */
extern void maildir_autoresponse_delete(const char *, const char *);
extern FILE *maildir_autoresponse_create(const char *, const char *);
extern int maildir_autoresponse_create_finish(const char *, const char *, FILE *);
extern FILE *maildir_autoresponse_open(const char *, const char *);
#ifdef __cplusplus
}
#endif
#endif
|