Indents are 8 characters wide and are expressed as a tab character.
[citadel.git] / citadel / modules / extnotify / extnotify.h
1 /*
2  * File:   extnotify.h
3  * Author: Mathew McBride <matt@mcbridematt.dhs.org> / <matt@comalies>
4  * Copyright (c) 2008-2009
5  *
6  *  This program is open source software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License version 3.
8  *  
9  *  
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  
17  *  
18  *  
19  */
20
21 #include "../eventclient/serv_curl.h"
22 #define PAGER_CONFIG_MESSAGE "__ Push email settings __"
23 #define FUNAMBOL_CONFIG_TEXT "funambol"
24 #define PAGER_CONFIG_SYSTEM  "textmessage"
25 #define PAGER_CONFIG_HTTP  "httpmessage"
26 typedef enum _eNotifyType {
27         eNone,
28         eFunambol,
29         eHttpMessages,
30         eTextMessage
31 }eNotifyType;
32
33
34 #define FUNAMBOL_WS "/funambol/services/admin"
35
36 typedef struct _NotifyContext {
37         StrBuf **NotifyHostList;
38         int nNotifyHosts;
39         HashList *NotifyErrors;
40         AsyncIO IO;
41 } NotifyContext;
42
43 int notify_http_server(char *remoteurl,
44                        const char* template,
45                        long tlen,
46                        char *user,
47                        char *msgid,
48                        long MsgNum,
49                        NotifyContext *Ctx);
50
51 void ExtNotify_PutErrorMessage(NotifyContext *Ctx, StrBuf *ErrMsg);
52
53 ///void process_notify(long msgnum, void *usrdata);