İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
9302 Görünümler

Hello forum

We want to use discussion groups as group mail accounts for specific functions. Therefore the auto-add followers must be deactivated. Mails to contact@company.com should not add the costumer to the group.

How to achive that?

The solution in this thread worked for me to deactivate auto-add in mails to partners: code see below

https://www.odoo.com/forum/help-1/question/how-to-stop-openerp-from-adding-partner-as-followers-automatically-25601

This behavious is actually generating many issues. On my side, i have changed the file mail_thread.py from this :
# automatically subscribe recipients if asked to
if context.get('mail_post_autofollow') and thread_id and partner_ids:
partner_to_subscribe = partner_ids
if context.get('mail_post_autofollow_partner_ids'):
partner_to_subscribe = filter(lambda item: item in context.get('mail_post_autofollow_partner_ids'), partner_ids)
self.message_subscribe(cr, uid, [thread_id], list(partner_to_subscribe), context=context)
to this :
# automatically subscribe recipients if asked to
#if context.get('mail_post_autofollow') and thread_id and partner_ids:
# partner_to_subscribe = partner_ids
# if context.get('mail_post_autofollow_partner_ids'):
# partner_to_subscribe = filter(lambda item: item in context.get('mail_post_autofollow_partner_ids'), partner_ids)
# self.message_subscribe(cr, uid, [thread_id], list(partner_to_subscribe), context=context)
Now adding automatically follower is disabled.

Avatar
Vazgeç
En İyi Yanıt

The piece of code you mentioned is only to prevent adding message recipients from being added automatically as followers.

You have also to prevent senders from being automatically added as followers by modifying this bloc in mail/mail_thread.py:

# Create and auto subscribe the author

msg_id = mail_message.create(cr, uid, values, context=context)

message = mail_message.browse(cr, uid, msg_id, context=context)

if message.author_id and thread_id and type != 'notification' and not context.get('mail_create_nosubscribe'):

        self.message_subscribe(cr, uid, [thread_id], [message.author_id.id], context=context)

return msg_id


to this:


# Create and auto subscribe the author

msg_id = mail_message.create(cr, uid, values, context=context)

message = mail_message.browse(cr, uid, msg_id, context=context)

"""if message.author_id and thread_id and type != 'notification' and not context.get('mail_create_nosubscribe'):

self.message_subscribe(cr, uid, [thread_id], [message.author_id.id], context=context)"""

return msg_id

Avatar
Vazgeç
En İyi Yanıt

Maybe, this module https://apps.odoo.com/apps/modules/9.0/compoze_no_auto_subscribe/ would be of use to your needs

Avatar
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Tem 24
4092
0
Şub 20
2748
0
Tem 16
3280
8
Haz 24
37361
1
Nis 21
11947