]> code.citadel.org Git - citadel.git/blob - libcitadel/lib/vnote.c
Added a skeleton 'vnote.c' module to libcitadel
[citadel.git] / libcitadel / lib / vnote.c
1 /*
2  * $Id: $
3  *
4  * vNote implementation for Citadel
5  *
6  * Copyright (C) 1999-2007 by the citadel.org development team.
7  * This code is freely redistributable under the terms of the GNU General
8  * Public License.  All other rights reserved.
9  */
10
11
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <stdio.h>
15 #include <fcntl.h>
16 #include <signal.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #include <ctype.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <limits.h>
33 #include <string.h>
34 #include <libcitadel.h>
35
36
37 /*
38
39 This whole file is merely a placeholder.
40
41 We need to be able to support some of these...
42
43
44 BEGIN:vnote
45 VERSION:1.1
46 PRODID://Bynari Insight Connector 3.1.3-0605191//Import from Outlook//EN
47 CLASS:PUBLIC
48 UID:040000008200E00074C5B7101A82E0080000000000000000000000000000000000000820425CE8571864B8D141CB3FB8CAC62
49 NOTE;ENCODING=QUOTED-PRINTABLE:blah blah blah=0D=0A=0D=0A
50 SUMMARY:blah blah blah=0D=0A=0D=0A
51 X-OUTLOOK-COLOR:#FFFF00
52 X-OUTLOOK-WIDTH:200
53 X-OUTLOOK-HEIGHT:166
54 X-OUTLOOK-LEFT:80
55 X-OUTLOOK-TOP:80
56 X-OUTLOOK-CREATE-TIME:20070611T204615Z
57 REV:20070611T204621Z
58 END:vnote
59
60 BEGIN:VNOTE^M
61 VERSION:1.1^M
62 UID:20061129111109.7chx73xdok1s at 172.16.45.2^M
63 BODY:HORDE_1^M
64 DCREATED:20061129T101109Z^M
65 END:VNOTE^M
66
67 */