[ADD] Added first not-working draft for widget. Cleaned message search function.
[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     'complexity': "easy",
27     'description': """
28 A generic email subsystem with message storage and queuing
29 ==========================================================
30
31 This email subsystem is not intended to be used as as standalone
32 application, but to provide a unified email abstraction that all
33 other applications can use.
34
35 The main features are:
36
37     * Relies on the global Outgoing Mail Servers configured in the 
38       Administration menu for delivering outgoing mail
39     * Provides an API for sending messages and archiving them,
40       grouped by conversation
41     * Any OpenERP document can act as a conversation topic, provided
42       it includes the necessary support for handling incoming emails
43       (see the ``mail.thread`` class for more details). 
44     * Includes queuing mechanism with automated configurable
45       scheduler-based processing
46     * Includes a generic email composition assistant, that can turn
47       into a mass-mailing assistant, and is capable of interpreting
48       simple *placeholder expressions* that will be replaced with
49       dynamic data when each email is actually sent.
50       This generic assistant is easily extensible to provide advanced
51       features (see ``email_template`` for example, which adds email
52       templating features to this assistant)
53
54     """,
55     'author': 'OpenERP SA',
56     'website': 'http://www.openerp.com',
57     'depends': ['base', 'base_tools'],
58     'data': [
59         "wizard/mail_compose_message_view.xml",
60         "mail_message_view.xml",
61         "mail_group_view.xml",
62         "mail_subscription_view.xml",
63         "mail_thread_view.xml",
64         "res_partner_view.xml",
65         'security/ir.model.access.csv',
66         'mail_data.xml',
67     ],
68     'installable': True,
69     'auto_install': False,
70     'certificate': '001056784984222247309',
71     'images': [
72         'images/customer_history.jpeg',
73         'images/messages_form.jpeg',
74         'images/messages_list.jpeg',
75     ],
76     'css': [
77         'static/src/css/mail_group.css',
78     ],
79     'js': [
80         'static/src/js/mail.js',
81     ],
82     'qweb': [
83         'static/src/xml/mail.xml',
84     ],
85 }
86 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: