[IMP] mail.message: added type in parameters. Default is email.
[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': 'Social Network',
24     'version': '1.0',
25     'category':'Social Network',
26     "sequence": 2,
27     "summary": "Discussions, Feeds, Alerts",
28     'description': """
29 A bussiness oriented Social Networking with a fully-integrated email 
30 and message management.
31 =====================================================================
32 The Social Networking module provides an unified social network
33 abstraction layer allowing applications to display a complete 
34 communication history on documents.It gives the users the possibility
35 to read and send messages and emails in an unified way.
36
37 It also provides a feeds page combined to a subscription mechanism, that 
38 allows to follow documents, and to be constantly updated about recent
39 news.
40         
41 The main features of the module are :
42
43     * a clean and renewed communication history for any OpenERP
44       document that can act as a discussion topic,       
45     * a discussion mean on documents,
46     * a subscription mechanism to be updated about new messages on 
47       interesting documents,
48     * an unified feeds page to see recent messages and activity 
49       on followed documents,
50     * user communication through the feeds page,
51     * a threaded discussion design,
52     * relies on the global outgoing mail server, an integrated email
53       management system allowing to send emails with a configurable 
54       scheduler-based processing engine
55     * includes an extensible generic email composition assistant, that can turn
56       into a mass-mailing assistant, and is capable of interpreting
57       simple *placeholder expressions* that will be replaced with
58       dynamic data when each email is actually sent
59     """,
60     'author': 'OpenERP SA',
61     'website': 'http://www.openerp.com',
62     'depends': ['base', 'base_tools'],
63     'data': [
64         'wizard/mail_compose_message_view.xml',
65         'mail_message_view.xml',
66         'mail_subscription_view.xml',
67         'mail_thread_view.xml',
68         'mail_group_view.xml',
69         'res_partner_view.xml',
70         'res_users_view.xml',
71         'data/mail_data.xml',
72         'data/mail_group_data.xml',
73         'security/mail_security.xml',
74         'security/ir.model.access.csv',
75     ],
76     'installable': True,
77     'auto_install': False,
78     'application':True,
79     'certificate': '001056784984222247309',
80     'images': [
81         'images/customer_history.jpeg',
82         'images/messages_form.jpeg',
83         'images/messages_list.jpeg',
84         'static/src/img/email_icong.png',
85         'static/src/img/_al.png',
86         'static/src/img/_pincky.png',
87         'static/src/img/groupdefault.png',
88         'static/src/img/attachment.png',
89         'static/src/img/checklist.png',
90         'static/src/img/formatting.png',
91     ],
92     'css': [
93         'static/src/css/mail.css',
94         'static/src/css/mail_group.css',
95         'static/src/css/mail_compose_message.css',
96     ],
97     'js': [
98         'static/lib/jquery.expander/jquery.expander.js',
99         'static/src/js/mail.js',
100     ],
101     'qweb': [
102         'static/src/xml/mail.xml',
103     ],
104     'demo': [
105         'data/mail_demo.xml',
106     ],   
107 }
108 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: