From a77a0797f66897f9e130c7561aa6bf4ee263d328 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 8 Feb 2018 11:29:37 +0100 Subject: [PATCH 1/3] mail_digest: fix README markup --- mail_digest/README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail_digest/README.rst b/mail_digest/README.rst index e71da9d5e..9a163d31f 100644 --- a/mail_digest/README.rst +++ b/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 From ad7aec655a12667b8f71efad7f59dc1aeb1ddad4 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 8 Feb 2018 11:29:58 +0100 Subject: [PATCH 2/3] mail_digest: update ACL --- mail_digest/security/ir.model.access.csv | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mail_digest/security/ir.model.access.csv b/mail_digest/security/ir.model.access.csv index f422b6655..038c79a84 100644 --- a/mail_digest/security/ir.model.access.csv +++ b/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 From 263b9f950c2a8132b990947cc55fa02c646ab00d Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Thu, 8 Feb 2018 11:45:56 +0100 Subject: [PATCH 3/3] mail_digest: bump 11.0.1.0.1 --- mail_digest/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mail_digest/__manifest__.py b/mail_digest/__manifest__.py index f2cb0bf94..07682265a 100644 --- a/mail_digest/__manifest__.py +++ b/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',