[MERGE] forward port of branch saas-3 up to 3d80dc2
[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@openerp.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' : 'Email Gateway',
25     'version' : '1.0',
26     'depends' : ['mail'],
27     'author' : 'OpenERP SA',
28     'category': 'Tools',
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 emails on
34 these accounts will be automatically downloaded into your OpenERP system. All
35 POP3/IMAP-compatible servers are supported, included those that require an
36 encrypted SSL/TLS connection.
37
38 This can be used to easily create email-based workflows for many email-enabled OpenERP documents, such as:
39 ----------------------------------------------------------------------------------------------------------
40     * CRM Leads/Opportunities
41     * CRM Claims
42     * Project Issues
43     * Project Tasks
44     * Human Resource Recruitments (Applicants)
45
46 Just install the relevant application, and you can assign any of these document
47 types (Leads, Project Issues) to your incoming email accounts. New emails will
48 automatically spawn new documents of the chosen type, so it's a snap to create a
49 mailbox-to-OpenERP integration. Even better: these documents directly act as mini
50 conversations synchronized by email. You can reply from within OpenERP, and the
51 answers will automatically be collected when they come back, and attached to the
52 same *conversation* document.
53
54 For more specific needs, you may also assign custom-defined actions
55 (technically: Server Actions) to be triggered for each incoming mail.
56     """,
57     'website': 'http://www.openerp.com',
58     'data': [
59         'fetchmail_data.xml',
60         'fetchmail_view.xml',
61         'security/ir.model.access.csv',
62         'fetchmail_installer_view.xml'
63     ],
64     'demo': [],
65     'installable': True,
66     'auto_install': True,
67     'images': ['images/1_email_servers.jpeg'],
68 }
69
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: