61 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
| # -*- encoding: utf-8 -*-
 | |
| ##############################################################################
 | |
| #
 | |
| #    OpenERP, Open Source Management Solution    
 | |
| #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 | |
| #    $Id$
 | |
| #
 | |
| #    This program is free software: you can redistribute it and/or modify
 | |
| #    it under the terms of the GNU 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 General Public License for more details.
 | |
| #
 | |
| #    You should have received a copy of the GNU General Public License
 | |
| #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
| #
 | |
| ##############################################################################
 | |
| 
 | |
| 
 | |
| {
 | |
|     'name': 'Mail Follower Control',
 | |
|     'version': '1.0',
 | |
|     'category': 'Custom',
 | |
|     'author': 'DataDialog, Michael Karrer (original version for v7 by camadeus)',
 | |
|     'website': 'http://www.datadialog.net',
 | |
|     'installable': True,
 | |
|     'description': """
 | |
| mail_follower_control
 | |
| =====================
 | |
| 
 | |
| This addon allows better control over follower handling for the chatter view.
 | |
| 
 | |
| Goals:
 | |
| ------
 | |
| 
 | |
| - Checkbox "Do not automatically add as follower" for res.partner
 | |
| - Set this new Checkbox to True by default
 | |
| - Show the followers and additional recipients that will receive an email (notify always + email)
 | |
| - Show a warning when adding additional recipients if the new recipient will not receive an email
 | |
| - Show followers that will not receive Messages in Red
 | |
| - Write the followers that received an email to mail.message in a new field to view them in message thread views
 | |
| 
 | |
| - ToDo: Always show all the followers when writing a message in full message composer
 | |
|     - ToDo: Allow to remove some followers just for the current mail
 | |
| - ToDo: BCC Field for all Chatter E-Mails
 | |
|     - ToDo: Do NOT add BCC Recipients as followers regardless of the checkbox "Do not automatically ad as follower"
 | |
| 
 | |
|     """,
 | |
|     'depends': ['web', 'mail'],
 | |
|     'qweb': [
 | |
|         'views/templates.xml',
 | |
|     ],
 | |
|     'data': [
 | |
|         'views/views.xml',
 | |
|     ],
 | |
| 
 | |
| } |