[ADD] crm_partner_assign: 1) added directory crm_partner_assign/test/ui,
[odoo/odoo.git] / addons / fetchmail / __openerp__.py
1 #-*- coding:utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    mga@tinyerp.com
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 {
24     "name" : "Fetch Emails",
25     "version" : "1.0",
26     "depends" : ["base", 'mail'],
27     "author" : "OpenERP SA",
28     "category": 'Customer Relationship Management',
29     "description": """
30 Retrieve incoming email on POP / IMAP servers
31 =============================================
32
33 Enter the parameters of your POP/IMAP account(s), and any incoming
34 emails on these accounts will be automatically downloaded into your OpenERP
35 system. All POP3/IMAP-compatible servers are supported, included those
36 that require an encrypted SSL/TLS connection.
37
38 This can be used to easily create email-based workflows for many
39 email-enabled OpenERP documents, such as:
40
41  * CRM Leads/Opportunities
42  * CRM Claims
43  * Project Issues
44  * Project Tasks
45  * Human Resource Recruitments (Applicants)
46  * etc.
47
48 Just install the relevant application, and you can assign any of
49 these document types (Leads, Project Issues, etc.) to your incoming
50 email accounts. New emails will automatically spawn new documents
51 of the chosen type, so it's a snap to create a mailbox-to-OpenERP
52 integration. Even better: these documents directly act as mini
53 conversations synchronized by email. You can reply from within
54 OpenERP, and the answers will automatically be collected when
55 they come back, and attached to the same *conversation* document.
56
57 For more specific needs, you may also assign custom-defined actions
58 (technically: Server Actions) to be triggered for each incoming
59 mail. 
60     """,
61     'website': 'http://www.openerp.com',
62     'init_xml': [],
63     'update_xml': [
64         "fetchmail_view.xml",
65         "fetchmail_data.xml",
66         'security/ir.model.access.csv',
67         'fetchmail_installer_view.xml'
68     ],
69     'demo_xml': [
70
71     ],
72     'installable': True,
73     'active': False,
74     'certificate' : '00692978332890137453',
75     'images': ['images/1_email_servers.jpeg'],
76 }