[MERGE] mail.alias: updated views and simplified models
[odoo/odoo.git] / addons / mail / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2010-Today OpenERP S.A. (<http://www.openerp.com>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 {
23     'name': 'Emails Management',
24     'version': '1.0',
25     'category': 'Hidden/Dependency',
26     'description': """
27 A generic email subsystem with message storage and queuing
28 ==========================================================
29
30 This email subsystem is not intended to be used as as standalone
31 application, but to provide a unified email abstraction that all
32 other applications can use.
33
34 The main features are:
35
36     * Relies on the global Outgoing Mail Servers configured in the 
37       Administration menu for delivering outgoing mail
38     * Provides an API for sending messages and archiving them,
39       grouped by conversation
40     * Any OpenERP document can act as a conversation topic, provided
41       it includes the necessary support for handling incoming emails
42       (see the ``mail.thread`` class for more details). 
43     * Includes queuing mechanism with automated configurable
44       scheduler-based processing
45     * Includes a generic email composition assistant, that can turn
46       into a mass-mailing assistant, and is capable of interpreting
47       simple *placeholder expressions* that will be replaced with
48       dynamic data when each email is actually sent.
49       This generic assistant is easily extensible to provide advanced
50       features (see ``email_template`` for example, which adds email
51       templating features to this assistant)
52
53     """,
54     'author': 'OpenERP SA',
55     'website': 'http://www.openerp.com',
56     'depends': ['base', 'base_tools'],
57     'data': [
58         'wizard/mail_compose_message_view.xml',
59         'res_config_view.xml',
60         'mail_message_view.xml',
61         'mail_alias_data.xml',
62         'mail_subscription_view.xml',
63         'mail_thread_view.xml',
64         'mail_group_view.xml',
65         'res_partner_view.xml',
66         'security/mail_security.xml',
67         'security/ir.model.access.csv',
68         'mail_data.xml',
69         'mail_group_data.xml',
70         'res_users_view.xml',
71         'mail_alias_view.xml',
72     ],
73     'demo': [
74         'mail_demo.xml',
75     ],
76     'installable': True,
77     'certificate': '001056784984222247309',
78     'images': [
79         'images/customer_history.jpeg',
80         'images/messages_form.jpeg',
81         'images/messages_list.jpeg',
82         'static/src/img/email_icong.png',
83         'static/src/img/_al.png',
84         'static/src/img/_pincky.png',
85         'static/src/img/feeds.png',
86         'static/src/img/feeds-hover.png',
87         'static/src/img/groupdefault.png',
88     ],
89     'css': [
90         'static/src/css/mail.css',
91         'static/src/css/mail_group.css',
92     ],
93     'js': [
94         'static/lib/jquery.expander/jquery.expander.js',
95         'static/src/js/mail.js',
96     ],
97     'qweb': [
98         'static/src/xml/mail.xml',
99     ],
100 }
101 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: