# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2010-Today OpenERP S.A. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { 'name': 'Emails Management', 'version': '1.0', 'category': 'Hidden/Dependency', 'complexity': "easy", 'description': """ A generic email subsystem with message storage and queuing ========================================================== This email subsystem is not intended to be used as as standalone application, but to provide a unified email abstraction that all other applications can use. The main features are: * Relies on the global Outgoing Mail Servers configured in the Administration menu for delivering outgoing mail * Provides an API for sending messages and archiving them, grouped by conversation * Any OpenERP document can act as a conversation topic, provided it includes the necessary support for handling incoming emails (see the ``mail.thread`` class for more details). * Includes queuing mechanism with automated configurable scheduler-based processing * Includes a generic email composition assistant, that can turn into a mass-mailing assistant, and is capable of interpreting simple *placeholder expressions* that will be replaced with dynamic data when each email is actually sent. This generic assistant is easily extensible to provide advanced features (see ``email_template`` for example, which adds email templating features to this assistant) """, 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': ['base', 'base_tools'], 'data': [ "wizard/mail_compose_message_view.xml", "mail_message_view.xml", "mail_thread_view.xml", "res_partner_view.xml", 'security/ir.model.access.csv', 'mail_data.xml', ], 'installable': True, 'active': False, 'certificate': '001056784984222247309', 'images': ['images/customer_history.jpeg','images/messages_form.jpeg','images/messages_list.jpeg'], } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: