Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How to not show incoming emails in crm chatter

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
V16
1 Beantwoorden
1945 Weergaven
Avatar
Martin

How can i prevent emails from incoming email server being created in the crm chatter?

0
Avatar
Annuleer
Avatar
Ahmed Abdu
Beste antwoord

To prevent emails fetched from the incoming mail server from being automatically logged in the CRM chatter in Odoo, you can control this behavior at several levels, depending on your setup.


Here are the key options to prevent it


Option 1: Disable Auto-Followers or Auto-Threading

Odoo links incoming emails to existing records by matching the email's headers (Message-ID, References, etc.) or aliases. If you don’t want them to be added to the CRM chatter:


A. Remove aliases from CRM


Go to CRM > Configuration > Pipelines > Stages


Check if any alias is set up (like leads@yourdomain.com)


Remove or change the alias



B. Disable "Create a new record" in the alias settings


Go to Settings > Technical > Email > Aliases


Find the alias related to CRM


Set Action to Do nothing or Unlink it from CRM objects




---


Option 2: Modify Fetchmail or Mail Thread Behavior via Code


If you need finer control (e.g., allow emails in Helpdesk but not in CRM), override the mail handling logic:


Example: Override message_route or message_new to exclude CRM


from odoo.addons.mail.models.mail_thread import MailThread

from odoo import models


class CustomMailThread(MailThread):

    def message_route(self, message, message_dict, model=None, thread_id=None, custom_values=None):

        # Skip processing if it's for crm.lead

        if model == 'crm.lead':

            return []

        return super().message_route(message, message_dict, model, thread_id, custom_values)


This prevents emails from being routed to crm.lead.



---


Option 3: Use Domain Filtering in Incoming Mail Server


You can add filters to avoid processing certain messages altogether.


Go to Settings > Technical > Email > Incoming Mail Servers


Open your mail server


Add custom Python code in the Actions to Perform on Incoming Mails (e.g., skip based on subject or sender)




---


Option 4: Unsubscribe System from Threads


Sometimes, Odoo posts email replies to CRM because the system user is a follower. You can:


Disable automatic followers in CRM settings


Or programmatically unsubscribe users from records



lead.message_unsubscribe([user_id])



---


If you tell me how your mail server is configured or how you receive CRM messages (e.g., via alias, manually, automated integration), I can tailor the solution more precisely.



1
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
How to pass value from employee to contact on odoo 16 using code Opgelost
V16
Avatar
Avatar
Avatar
Avatar
Avatar
4
jul. 25
2597
Automatic taxes
V16
Avatar
Avatar
1
apr. 25
1591
how to get quotation builder section into quotation
V16
Avatar
0
mrt. 25
1601
Context not passed correctly when creating a new contact
V16
Avatar
Avatar
1
sep. 24
2780
Unable to see number of tickets when buying an Event on mobile (only in landscape mode)
V16
Avatar
0
aug. 24
2027
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now