source: companies/serpro/emailadmin/setup/tables_current.inc.php @ 903

Revision 903, 3.0 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1<?php
2        /**************************************************************************\
3        * EGroupWare                                                               *
4        * http://www.egroupware.org                                                *
5        * http://www.phpgw.de                                                      *
6        * Author: lkneschke@phpgw.de                                               *
7        * --------------------------------------------                             *
8        *  This program is free software; you can redistribute it and/or modify it *
9        *  under the terms of the GNU General Public License as published by the   *
10        *  Free Software Foundation; either version 2 of the License, or (at your  *
11        *  option) any later version.                                              *
12        \**************************************************************************/
13
14
15        $phpgw_baseline = array(
16                'phpgw_emailadmin' => array(
17                        'fd' => array(
18                                'profileID' => array('type' => 'auto','nullable' => False),
19                                'smtpServer' => array('type' => 'varchar','precision' => '80'),
20                                'smtpType' => array('type' => 'int','precision' => '4'),
21                                'smtpPort' => array('type' => 'int','precision' => '4'),
22                                'smtpDelimiter' => array('type' => 'varchar','precision' => '1'),
23                                'smtpAuth' => array('type' => 'varchar','precision' => '3'),
24                                'smtpLDAPServer' => array('type' => 'varchar','precision' => '80'),
25                                'smtpLDAPBaseDN' => array('type' => 'varchar','precision' => '200'),
26                                'smtpLDAPAdminDN' => array('type' => 'varchar','precision' => '200'),
27                                'smtpLDAPAdminPW' => array('type' => 'varchar','precision' => '30'),
28                                'smtpLDAPUseDefault' => array('type' => 'varchar','precision' => '3'),
29                                'imapServer' => array('type' => 'varchar','precision' => '80'),
30                                'imapType' => array('type' => 'int','precision' => '4'),
31                                'imapPort' => array('type' => 'int','precision' => '4'),
32                                'imapDelimiter' => array('type' => 'varchar','precision' => '1'),
33                                'imapLoginType' => array('type' => 'varchar','precision' => '20'),
34                                'imapTLSAuthentication' => array('type' => 'varchar','precision' => '3'),
35                                'imapTLSEncryption' => array('type' => 'varchar','precision' => '3'),
36                                'imapEnableCyrusAdmin' => array('type' => 'varchar','precision' => '3'),
37                                'imapAdminUsername' => array('type' => 'varchar','precision' => '40'),
38                                'imapAdminPW' => array('type' => 'varchar','precision' => '40'),
39                                'imapEnableSieve' => array('type' => 'varchar','precision' => '3'),
40                                'imapSieveServer' => array('type' => 'varchar','precision' => '80'),
41                                'imapSievePort' => array('type' => 'int','precision' => '4'),
42                                'description' => array('type' => 'varchar','precision' => '200'),
43                                'defaultDomain' => array('type' => 'varchar','precision' => '100'),
44                                'organisationName' => array('type' => 'varchar','precision' => '100'),
45                                'userDefinedAccounts' => array('type' => 'varchar','precision' => '3'),
46                                'imapoldcclient' => array('type' => 'varchar','precision' => '3')
47                        ),
48                        'pk' => array('profileID'),
49                        'fk' => array(),
50                        'ix' => array(),
51                        'uc' => array()
52                )
53        );
54?>
Note: See TracBrowser for help on using the repository browser.