Browse Source

Merge pull request #228 from simahawk/11.0

mail_digest fix/imp
pull/239/head
Guewen Baconnier 7 years ago
committed by GitHub
parent
commit
3430dd47b0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      mail_digest/README.rst
  2. 2
      mail_digest/__manifest__.py
  3. 7
      mail_digest/security/ir.model.access.csv

4
mail_digest/README.rst

@ -46,7 +46,7 @@ which will be sent as a standard email.
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
* 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
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
* user: digest mode is OFF for the recipient

2
mail_digest/__manifest__.py

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

7
mail_digest/security/ir.model.access.csv

@ -1,4 +1,5 @@
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_mail_digest_system,mail.digest.sys,model_mail_digest,base.group_system,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_user,user.notification.conf user,model_user_notification_conf,base.group_user,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_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
Loading…
Cancel
Save