]> err.no Git - scalable-opengroupware.org/blob - OGoContentStore/contact.ocs
Install libs to /usr/lib
[scalable-opengroupware.org] / OGoContentStore / contact.ocs
1 {
2   blobTablePattern  = "SOGo_$folderId$_blob";
3   quickTablePattern = "SOGo_$folderId$_quick";
4   extractorClassName= "OCSContactFieldExtractor";
5
6   fields = (
7     {
8       columnName = c_name;
9       sqlType    = "VARCHAR(256)";
10       allowsNull = NO;
11     },
12     {
13       columnName = c_givenname;
14       sqlType    = "VARCHAR(256)";
15       allowsNull = YES;
16     },
17     {
18       columnName = c_cn;
19       sqlType    = "VARCHAR(256)";
20       allowsNull = YES;
21     },
22     {
23       columnName = c_sn;
24       sqlType    = "VARCHAR(256)";
25       allowsNull = YES;
26     },
27     {
28       columnName = c_screenname;
29       sqlType    = "VARCHAR(256)";
30       allowsNull = YES;
31     },
32     {
33       columnName = c_l;
34       sqlType    = "VARCHAR(256)";
35       allowsNull = YES;
36     },
37     {
38       columnName = c_mail;
39       sqlType    = "VARCHAR(256)";
40       allowsNull = YES;
41     },
42     {
43       columnName = c_o;
44       sqlType    = "VARCHAR(256)";
45       allowsNull = YES;
46     },
47     {
48       columnName = c_ou;
49       sqlType    = "VARCHAR(256)";
50       allowsNull = YES;
51     },
52     {
53       columnName = c_telephoneNumber;
54       sqlType    = "VARCHAR(256)";
55       allowsNull = YES;
56     },
57   );
58 }