* More license declarations
[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 free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
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  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifdef  __cplusplus
22 extern "C" {
23 #endif
24
25 #define FUNAMBOL_CONFIG_TEXT "funambol"
26 #define PAGER_CONFIG_MESSAGE "__ Push email settings __"
27 #define PAGER_CONFIG_SYSTEM  "textmessage"    
28 #define PAGER_CONFIG_HTTP  "httpmessage"    
29
30 #define FUNAMBOL_WS "/funambol/services/admin"
31
32 typedef struct _NotifyContext {
33         StrBuf **NotifyHostList;
34         HashList *NotifyErrors;
35 } NotifyContext;
36
37 int notify_http_server(char *remoteurl, 
38                        const char* template, 
39                        long tlen, 
40                        char *user,
41                        char *msgid, 
42                        long MsgNum, 
43                        NotifyContext *Ctx);
44
45 void ExtNotify_PutErrorMessage(NotifyContext *Ctx, StrBuf *ErrMsg);
46
47 void extNotify_getPrefs(long configMsgNum, char *configMsg);
48 long extNotify_getConfigMessage(char *username);
49 void process_notify(long msgnum, void *usrdata);
50
51 #ifdef  __cplusplus
52 }
53 #endif
54
55