~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to mapiproxy/services/plugins/dovecot/ocsmanager-plugin.h

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   OpenChange Service Manager Plugin for Dovecot
 
3
 
 
4
   OpenChange Project
 
5
 
 
6
   Copyright (C) Julien Kerihuel 2011.
 
7
 
 
8
   This program is free software; you can redistribute it and/or modify
 
9
   it under the terms of the GNU General Public License as published by
 
10
   the Free Software Foundation; either version 3 of the License, or
 
11
   (at your option) any later version.
 
12
   
 
13
   This program is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
   GNU General Public License for more details.
 
17
   
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
 
 
22
#ifndef __OCSMANAGER_PLUGIN_H
 
23
#define __OCSMANAGER_PLUGIN_H
 
24
 
 
25
#include "lib.h"
 
26
#include "llist.h"
 
27
#include "array.h"
 
28
#include "config.h"
 
29
#include "module-dir.h"
 
30
#include "mail-user.h"
 
31
#include "mail-storage-private.h"
 
32
#include "mailbox-list-private.h"
 
33
#include "notify-plugin.h"
 
34
 
 
35
#include <ctype.h>
 
36
#include <stdlib.h>
 
37
 
 
38
extern const char *ocsmanager_plugin_dependencies[];
 
39
 
 
40
const char *ocsmanager_plugin_version = DOVECOT_VERSION;
 
41
 
 
42
void ocsmanager_plugin_init(struct module *);
 
43
void ocsmanager_plugin_deinit(void);
 
44
 
 
45
#endif /* __OCSMANAGER_PLUGIN_H */