Merge pull request #228 from simahawk/11.0

mail_digest fix/imp
pull/239/head
Guewen Baconnier 2018-02-08 17:38:53 +01:00 committed by GitHub
commit 3430dd47b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 6 deletions

View File

@ -46,7 +46,7 @@ which will be sent as a standard email.
Given that the user has `Notification management = Handle by Emails`... Given that the user has `Notification management = Handle by Emails`...
a message with subtype assigned _will be sent_ via digest if: a message with subtype assigned **will be sent** via digest if:
* global: `mail_digest_enabled_message_types` param enables the message type * global: `mail_digest_enabled_message_types` param enables the message type
* user: digest mode is ON for the recipient * user: digest mode is ON for the recipient
@ -54,7 +54,7 @@ a message with subtype assigned _will be sent_ via digest if:
* user: recipient's user has no specific disabling setting for the subtype * user: recipient's user has no specific disabling setting for the subtype
a message with subtype assigned _will NOT be sent_ via digest if: a message with subtype assigned **will NOT be sent** via digest if:
* global: `mail_digest_enabled_message_types` param disables the message type * global: `mail_digest_enabled_message_types` param disables the message type
* user: digest mode is OFF for the recipient * user: digest mode is OFF for the recipient

View File

@ -4,7 +4,7 @@
{ {
'name': 'Mail digest', 'name': 'Mail digest',
'summary': """Basic digest mail handling.""", 'summary': """Basic digest mail handling.""",
'version': '11.0.1.0.0', 'version': '11.0.1.0.1',
'license': 'AGPL-3', 'license': 'AGPL-3',
'author': 'Camptocamp, Odoo Community Association (OCA)', 'author': 'Camptocamp, Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/social', 'website': 'https://github.com/OCA/social',

View File

@ -1,4 +1,5 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_partner_notification_conf_user,partner.notification.user,model_user_notification_conf,base.group_user,1,1,1,1 access_user_notification_conf_user,user.notification.conf user,model_user_notification_conf,base.group_user,1,1,1,1
access_mail_digest_system,mail.digest.sys,model_mail_digest,base.group_system,1,1,1,1 access_user_notification_conf_portal,user.notification.conf portal,model_user_notification_conf,base.group_portal,1,1,1,1
access_partner_notification_conf_system,partner.notification.sys,model_user_notification_conf,base.group_system,1,1,1,1 access_user_notification_conf_system,user.notification.conf sys,model_user_notification_conf,base.group_system,1,1,1,1
access_mail_digest_system,mail.digest sys,model_mail_digest,base.group_system,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_partner_notification_conf_user access_user_notification_conf_user partner.notification.user user.notification.conf user model_user_notification_conf base.group_user 1 1 1 1
3 access_mail_digest_system access_user_notification_conf_portal mail.digest.sys user.notification.conf portal model_mail_digest model_user_notification_conf base.group_system base.group_portal 1 1 1 1
4 access_partner_notification_conf_system access_user_notification_conf_system partner.notification.sys user.notification.conf sys model_user_notification_conf base.group_system 1 1 1 1
5 access_mail_digest_system mail.digest sys model_mail_digest base.group_system 1 1 1 1