From 514793c2fb540ddceb12a0cbcf190d039cbe4cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Fri, 13 Apr 2012 14:16:50 +0200 Subject: [PATCH] [IMP] mail.thread: users now receive no emails for notifications by default. Todo: find a good policy. bzr revid: tde@openerp.com-20120413121650-hu6tdmqca84sj98x --- addons/mail/res_users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/res_users.py b/addons/mail/res_users.py index 6efb218a658..5b84fad24e7 100644 --- a/addons/mail/res_users.py +++ b/addons/mail/res_users.py @@ -41,7 +41,7 @@ class res_users(osv.osv): } _defaults = { - 'notification_email_pref': 'all', + 'notification_email_pref': 'none', } def __init__(self, pool, cr):