mirror of https://github.com/OCA/social.git
commit
3430dd47b0
|
@ -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
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
Loading…
Reference in New Issue