~zaber/openobject-addons/stable_5.0-extra-addons

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" ?>
<openerp>
    <data>

        ##############################################################################
        #
        #    network_extension module for OpenERP
        #    Copyright (C) 2008 Zikzakmedia S.L. (http://zikzakmedia.com)
        #       Jordi Esteve [jesteve@zikzakmedia.com] All Rights Reserved.
        #    Copyright (C) 2009 SYLEAM (http://syleam.fr)
        #       Christophe Chauvet [christophe.chauvet@syleam.fr] All Rights Reserved.
        #
        #    This file is a part of network_extension
        #
        #    network_extension is free software: you can redistribute it and/or modify
        #    it under the terms of the GNU General Public License as published by
        #    the Free Software Foundation, either version 3 of the License, or
        #    (at your option) any later version.
        #
        #    network_extension is distributed in the hope that it will be useful,
        #    but WITHOUT ANY WARRANTY; without even the implied warranty of
        #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        #    GNU General Public License for more details.
        #
        #    You should have received a copy of the GNU General Public License
        #    along with this program.  If not, see [http://www.gnu.org/licenses/].
        #
        ##############################################################################

        <record id="network_protocol_ssh0" model="network.protocol">
            <field name="name">ssh</field>
            <field name="port" eval="22"/>
            <field name="protocol">tcp</field>
            <field name="description">The Secure Shell (SSH)</field>
        </record>

        <record id="network_protocol_ftp0" model="network.protocol">
            <field name="name">ftp</field>
            <field name="port" eval="21"/>
            <field name="protocol">tcp</field>
            <field name="description">File Transfer [Control]</field>
        </record>

        <record id="network_protocol_http0" model="network.protocol">
            <field name="name">http</field>
            <field name="port" eval="80"/>
            <field name="protocol">tcp</field>
            <field name="description">World Wide Web HTTP</field>
        </record>

        <record id="network_protocol_https0" model="network.protocol">
            <field name="name">https</field>
            <field name="port" eval="443"/>
            <field name="protocol">tcp</field>
            <field name="description">http protocol over TLS/SSL</field>
        </record>

        <record id="network_protocol_xmlrpc0" model="network.protocol">
            <field name="name">xml-rpc</field>
            <field name="port" eval="8069"/>
            <field name="protocol">tcp</field>
            <field name="description">Open ERP XML-RPC</field>
        </record>

        <record id="network_protocol_netrpc0" model="network.protocol">
            <field name="name">net-rpc</field>
            <field name="port" eval="8070"/>
            <field name="protocol">tcp</field>
            <field name="description">Open ERP NET-RPC</field>
        </record>

        <record id="network_protocol_pyro0" model="network.protocol">
            <field name="name">pyro</field>
            <field name="port" eval="0"/>
            <field name="protocol">tcp</field>
            <field name="description"></field>
        </record>

        <record id="network_protocol_smtp0" model="network.protocol">
            <field name="name">smtp</field>
            <field name="port" eval="25"/>
            <field name="protocol">tcp</field>
            <field name="description">Simple Mail Transfer</field>
        </record>

        <record id="network_protocol_pop0" model="network.protocol">
            <field name="name">pop3</field>
            <field name="port" eval="110"/>
            <field name="protocol">tcp</field>
            <field name="description">Post Office Protocol - Version 3</field>
        </record>

        <record id="network_protocol_imap0" model="network.protocol">
            <field name="name">imap</field>
            <field name="port" eval="143"/>
            <field name="protocol">tcp</field>
            <field name="description">Internet Message Access Protocol</field>
        </record>

    </data>
</openerp>