---
title: "SPF-mechanismen begrijpen: a, mx, ip4 en include | AutoSPF"
description: "SPF definieert 8 mechanismen in RFC 7208: all, include, a, mx, ptr, ip4, ip6 en exists. De vier meest voorkomende zijn ip4 (autoriseert een specifiek IP), a (autoriseert het A-record van het domein), mx (autoriseert de MX-records van het domein) en include (delegeert naar een ander SPF-record). Leer de exacte semantiek en de lookup-kosten van elk mechanisme."
image: "https://autospf.com/og/blog/understanding-spf-mechanisms-a-mx-ip4-and-include.png"
canonical: "https://autospf.com/nl/blog/understanding-spf-mechanisms-a-mx-ip4-and-include/"
---

Quick Answer

SPF definieert 8 mechanismen in RFC 7208 §5: all, include, a, mx, ptr, ip4, ip6 en exists. De vier die het meest worden gebruikt zijn: ip4 (autoriseert een specifiek IPv4-adres of -bereik, 0 lookups), a (autoriseert de A/AAAA-records van het domein, 1 lookup), mx (autoriseert de MX-records van het domein en hun A-records, in het slechtste geval tot 10 lookups) en include (delegeert de evaluatie naar het SPF-record van een ander domein, 1 lookup plus geneste lookups).

SPF-mechanismen begrijpen: a, mx, ip4 en include

Your browser does not support the audio element.

[ Download episode](/audio/understanding-spf-mechanisms-a-mx-ip4-and-include.mp3) 

Share 

[ ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F "Share on LinkedIn") [ ](https://twitter.com/intent/tweet?text=SPF-mechanismen%20begrijpen%3A%20a%2C%20mx%2C%20ip4%20en%20include&url=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F "Share on X/Twitter") [ ](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F "Share on Facebook") [ ](https://reddit.com/submit?url=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F&title=SPF-mechanismen%20begrijpen%3A%20a%2C%20mx%2C%20ip4%20en%20include "Share on Reddit") [ ](mailto:?subject=SPF-mechanismen%20begrijpen%3A%20a%2C%20mx%2C%20ip4%20en%20include&body=Check out this article: https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F "Share via Email") 

![SPF-mechanismen](https://media.mailhop.org/autospf/images/2025/06/spf-record-generator-6637.jpg) 

**SPF definieert 8 mechanismen in [RFC 7208 §5](https://datatracker.ietf.org/doc/html/rfc7208#section-5): `all`, `include`, `a`, `mx`, `ptr`, `ip4`, `ip6` en `exists`.** De vier die u in 95% van de gevallen zult gebruiken, zijn `ip4` (autoriseert een specifiek IPv4-adres of CIDR-bereik), `a` (autoriseert de A/AAAA-records van het domein), `mx` (autoriseert de MX-records van het domein) en `include` (delegeert de evaluatie naar het SPF-record van een ander domein).

> “De SPF-syntaxis is bedrieglijk eenvoudig”, zegt Adam Lundrigan, CTO van DuoCircle. “v=spf1 gevolgd door mechanismen en een qualifier lijkt eenvoudig, maar de evaluatiesemantiek is verrassend complex: de volgorde van de mechanismen is bepalend, de eerste overeenkomst wint, en het verschil tussen \~all en -all heeft echte gevolgen voor de bezorging. Elke week zien we records waarbij een verkeerd geplaatst mechanisme het bedoelde beleid stilzwijgend overschrijft.”

Voor een diepgaande bespreking van elk SPF-mechanisme, elke qualifier en elke modifier raadpleegt u onze [volledige gids voor de SPF-recordsyntaxis](/blog/spf-record-syntax-complete-guide/).

Elk mechanisme heeft specifieke DNS-lookupkosten die meetellen voor de limiet van 10 lookups uit RFC 7208:

- `ip4` / `ip6` – **0 lookups** (letterlijk IP, geen DNS nodig)
- `a` – **1 lookup**
- `mx` – **1 lookup** plus 1 per teruggegeven MX-host (kan het budget stilzwijgend overschrijden bij domeinen met veel MX-records)
- `include` – **1 lookup** plus alles wat het opgenomen SPF-record recursief verbruikt
- `exists` – **1 lookup**
- `ptr` – **1 of meer lookups** (en RFC 7208 §5.5 raadt het gebruik ervan expliciet AF)

Deze gids behandelt elk van de vier veelgebruikte mechanismen met de exacte syntaxis, de randgevallen (A-records met meerdere IP’s, MX-hosts met veel A-records, recursieve includes) en hoe u kiest tussen `a`/`mx`/`ip4`/`include` wanneer u meerdere opties hebt voor dezelfde set verzendende IP’s. Als handmatig onderhoud u omslachtig lijkt, bekijk dan [hoe AutoSPF werkt](/nl/hoe-het-werkt/) om het te automatiseren.

## Het mechanisme ‘a’

Het mechanisme ‘a’ in SPF vertelt de ontvangende [mailservers](https://www.activecampaign.com/glossary/mail-server) dat als het A- of AAAA-record van een bepaald domein verwijst naar het IP-adres dat de e-mail verzendt, deze als legitiem moet worden beschouwd.

Kortom, als een e-mail afkomstig is van een IP dat in de A- (ip4) of AAAA- (ip6) records van het domein staat, en u het mechanisme ‘a’ hebt opgenomen, dan slaagt SPF.

Bijvoorbeeld: v=spf1 a -all

### Wanneer moet u het mechanisme ‘a’ gebruiken?

Gebruik het wanneer:

- Uw e-mailserver hetzelfde IP-adres deelt als uw domein (bijvoorbeeld website en mailserver gehost op dezelfde server).
- U een kleine, eenvoudige opzet hebt en uw verzendende IP rechtstreeks gekoppeld is aan het [A/AAAA-record](https://simple.wikipedia.org/wiki/AAAA%5Frecord) van uw domein.
- U er zeker van bent dat het A-record van het domein altijd het IP van uw mailserver weergeeft (dit is essentieel).

![A-record van het domein
](https://media.mailhop.org/autospf/images/2025/06/spf-record-tester-3004.jpg)

### Wanneer moet u het mechanisme ‘a’ vermijden?

Zie af van het mechanisme ‘a’ wanneer:

- U niet weet of niet bepaalt waarnaar het A-record verwijst (bijvoorbeeld als u [hosting van derden](https://www.lawinsider.com/dictionary/third-party-host) of CDN’s gebruikt).
- Uw website en mailserver afzonderlijk op verschillende IP-adressen worden gehost.
- _U wilt dat uw SPF-record expliciet en onderhoudbaar is, door voor de duidelijkheid ‘ip4’ of ‘include’ te gebruiken_.

Bovendien kunt u, als het A-record van uw domein ooit verandert (zoals tijdens een servermigratie), onbedoeld [SPF](/nl/blog/what-is-spf-email-a-guide-to-sender-validation-technology/) voor uw uitgaande e-mails breken zonder het te merken.

## Het mechanisme ‘mx’

In SPF vertelt het mechanisme ‘mx’ de ontvangende servers dat het elke server die in het [MX-record](https://dnsmadeeasy.com/resources/what-is-an-mx-rec) van het verzendende domein staat, toestaat om e-mails te verzenden namens de domeineigenaar. Het lost in feite het MX-record van het domein op om de hostnamen te verkrijgen. Vervolgens lost het de hostnamen op naar IP-adressen. Als het IP-adres van de afzender van uw e-mail overeenkomt met een van de vermelde IP-adressen, slaagt de [SPF-controle](/spf-record-tester/mimecast-spf-check/).

![SPF-controle
](https://media.mailhop.org/autospf/images/2025/06/spf-validator-5608.jpg)

### Wanneer moet u het mechanisme ‘mx’ gebruiken?

Gebruik het mechanisme ‘mx’ als uw e-mail wordt verzonden via dezelfde mailservers die e-mails voor uw domein ontvangen, dat wil zeggen als uw inkomende en uitgaande mailservers dezelfde zijn.

Veelvoorkomende gevallen:

- U gebruikt de e-maildienst van uw [webhost](https://www.ibm.com/think/topics/web-hosting) of domeinprovider (zoals de e-mail van GoDaddy of Bluehost).
- U hebt een on-premise mailserver (zoals Microsoft Exchange) die zowel inkomende als uitgaande e-mail verwerkt.
- _Uw bedrijf gebruikt een opzet waarbij dezelfde provider zowel de inkomende als de uitgaande e-mailstroom verwerkt_.

![ webhost
](https://media.mailhop.org/autospf/images/2025/06/spf-flattening-2099.jpg)

### Wanneer moet u het mechanisme ‘mx’ vermijden?

Het is niet ideaal om het mechanisme ‘mx’ te gebruiken als uw uitgaande e-mails niet via uw MX-servers gaan. Dit zijn de gevallen waarin dit vaak voorkomt:

- U gebruikt een e-mailverzenddienst van derden (zoals Mailchimp, [Google Workspace](https://workspaceupdates.googleblog.com/), Zoho, Salesforce, enz.).
- Uw domein ontvangt e-mails via de ene server (MX) maar verzendt via een andere (SMTP-relay of API-gebaseerde afzender).
- U bent niet zeker waar uw MX-records daadwerkelijk naar verwijzen.

_Houd er rekening mee dat als u het mechanisme ‘mx’ gebruikt, uw MX-records goed bijgewerkt moeten zijn._ Controleer ook regelmatig de IP’s waarnaar ze oplossen, aangezien sommige diensten deze vaak roteren of [CDN’s](https://www.techtarget.com/searchnetworking/definition/CDN-content-delivery-network) of load balancers gebruiken. Er bestaat dus een kans op een kapot MX-record.

## Het mechanisme ‘ip4’

Het mechanisme ‘ip4’ wordt gebruikt om expliciet een IPv4-adres (of -bereik) te autoriseren om e-mails te verzenden namens uw domein.

_Voorbeeld:_

```
v=spf1 ip4:192.0.2.0/24 -all
```

_Dit vertelt mailservers: ‘Hé, als een e-mail afkomstig is van een IP in het bereik 192.0.2.0/24, is deze legitiem voor dit domein.’_

![CRM-tool
](https://media.mailhop.org/autospf/images/2025/06/spf-permerror-23070.jpg)

### Wanneer moet u het mechanisme ‘ip4’ gebruiken?

Het mechanisme ‘ip4’ kunt u het beste gebruiken wanneer:

- U uw eigen mailserver beheert en het IP ervan kent.
- U een dienst gebruikt (zoals een webhost of een [CRM-tool](https://www.pipedrive.com/en/blog/crm-tool)) die u een vast verzendend IP verstrekt.
- U handmatig bekende, statische IP’s op de toegestane lijst wilt zetten in plaats van het include-mechanisme te gebruiken.
- U een externe afzender op maat moet autoriseren die niet wordt gedekt door een bekende SPF-‘include’.

Als extra voordeel helpt het ook om extra [DNS-lookups](https://www.digicert.com/faq/dns/how-does-dns-lookup-work) te vermijden.

### Wanneer moet u het mechanisme ‘ip4’ vermijden?

Het is beter om voorzichtig te zijn:

- Als het IP-adres dynamisch is of vaak verandert, kunt u de e-mailbezorging breken, omdat SPF niet automatisch wordt bijgewerkt.
- _Wanneer u grote externe platforms zoals Google Workspace of Mailchimp gebruikt, leveren die al ‘include’-records_.

Houd er ook rekening mee dat het toevoegen van meerdere ‘ip4’-vermeldingen in één record uw SPF-record te lang en moeilijker te beheren kan maken.

![SPF-record
](https://media.mailhop.org/autospf/images/2025/06/spf-lookup-2001.jpg)

## Het mechanisme ‘include’

Met het mechanisme ‘include’ kunt u andere domeinen autoriseren om namens u e-mail te verzenden.

### Wanneer moet u het mechanisme ‘include’ gebruiken?

Gebruik het wanneer een externe dienst e-mail verzendt met uw domein. Dit omvat:

- E-mailmarketingplatforms (Mailchimp, SendGrid, Klaviyo, enz.)
- Transactionele e-maildiensten (Amazon SES, Postmark, enz.)
- CRM-tools of helpdesks (HubSpot, Intercom, Freshdesk)
- Beveiligingsdiensten (zoals Proofpoint of Mimecast, als ze [uitgaande e-mail](https://www.indeed.com/career-advice/career-development/what-is-email-outbound) verwerken)
![CRM-tools](https://media.mailhop.org/autospf/images/2025/06/spf-checker-2304.jpg) 

### Wanneer moet u het mechanisme ‘include’ vermijden?

U hoeft het mechanisme ‘include’ niet te vermijden; houd echter rekening met deze punten zodat u het niet overmatig gebruikt:

- Elke ‘include’ telt mee voor uw limiet van 10 DNS-lookups, en die overschrijden veroorzaakt een fout wegens [te veel DNS-lookups](/nl/spf-te-veel-dns-lookups/).
- Geneste ‘include’-instructies van andere domeinen kunnen de limiet stilzwijgend overschrijden.
- Neem nooit domeinen op die u niet volledig beheert of vertrouwt.

Als u te veel ‘include’-instructies hebt gebruikt en uw SPF-record de DNS-lookuplimiet al heeft overschreden, gebruik dan [onze automatische SPF-flatteningtool](/nl/home/). _Deze vervangt ze door de IP-adressen, waardoor de behoefte aan lookups tot een minimum wordt beperkt_. Benieuwd welke aanpak bij uw domein past? Lees onze visie op [macro’s versus flattening](/nl/spf-macros-vs-flattening/). Neem contact met ons op voor meer informatie over de tool of voor hulp bij andere SPF-gerelateerde problemen.

## Topics

[ SPF ](/tags/spf/)[ SPF Flattening ](/tags/spf-flattening/)[ SPF Flattening tool ](/tags/spf-flattening-tool/)[ SPF record ](/tags/spf-record/) 

![Adam Lundrigan](https://media.mailhop.org/autospf/images/authors/adam-lundrigan.jpg) 

[ Adam Lundrigan ](/authors/adam-lundrigan/) 

CTO

CTO of DuoCircle. Architect of AutoSPF's SPF flattening engine and DNS monitoring infrastructure.

[LinkedIn Profile →](https://www.linkedin.com/in/adamlundrigan/) 

## Ready to get started?

Try AutoSPF free — no credit card required.

[ Book a Demo ](/book-a-demo/) 

Scan Your Domain Now

Instantly scan your domain for DKIM, SPF, and DMARC issues

Check My Domain 

Share this article

[ ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F) [ ](https://twitter.com/intent/tweet?text=SPF-mechanismen%20begrijpen%3A%20a%2C%20mx%2C%20ip4%20en%20include&url=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F) [ ](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fautospf.com%2Fblog%2Funderstanding-spf-mechanisms-a-mx-ip4-and-include%2F) Copy 

Related Articles

- [ ![SPF record](https://media.mailhop.org/autospf/images/2025/07/spf-record-example-1377.jpg)  What does the ‘null’ value mean in an SPF record? Foundational ](/blog/what-does-the-null-value-mean-in-an-spf-record/)
- [ ![email security](https://media.mailhop.org/autospf/images/2024/05/sender-policy-framework-office-365.jpg)  7 Myths and Misconceptions about Sender Policy Framework Foundational ](/blog/7-myths-and-misconceptions-about-sender-policy-framework/)
- [ ![SPF flattening](https://media.mailhop.org/autospf/images/2025/12/spf-permerror-4998.jpg)  Was ist SPF-Flattening und warum ist es wichtig? Foundational ](/blog/what-is-spf-flattening-and-why-is-it-important/)
- [ ![SPF flattening](https://media.mailhop.org/autospf/images/2025/12/spf-permerror-4998.jpg)  ¿Qué es el aplanamiento SPF y por qué es importante? Foundational ](/blog/what-is-spf-flattening-and-why-is-it-important/)

## Related Articles

[  Foundational 5m  What does the ‘null’ value mean in an SPF record?  Jul 11, 2025 ](/blog/what-does-the-null-value-mean-in-an-spf-record/)[  Foundational 4m  7 Myths and Misconceptions about Sender Policy Framework  May 31, 2024 ](/blog/7-myths-and-misconceptions-about-sender-policy-framework/)[  Foundational 6m  Was ist SPF-Flattening und warum ist es wichtig?  Dec 12, 2025 ](/blog/what-is-spf-flattening-and-why-is-it-important/)[  Foundational 6m  ¿Qué es el aplanamiento SPF y por qué es importante?  Dec 12, 2025 ](/blog/what-is-spf-flattening-and-why-is-it-important/)

```json
{"@context":"https://schema.org","@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]},"sameAs":["https://www.wikidata.org/wiki/Q138897474","https://www.linkedin.com/company/autospf","https://x.com/autospf01","https://www.g2.com/products/autospf/reviews"],"contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://autospf.com/contact-us/"},"knowsAbout":["SPF Record Flattening","Sender Policy Framework","Email Authentication","DNS Management","DMARC","DKIM"]}
```

```json
{"@context":"https://schema.org","@type":"WebSite","name":"AutoSPF","url":"https://autospf.com","description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","publisher":{"@type":"Organization","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]}}}
```

```json
[{"@context":"https://schema.org","@type":"BlogPosting","headline":"SPF-mechanismen begrijpen: a, mx, ip4 en include","description":"SPF definieert 8 mechanismen in RFC 7208: all, include, a, mx, ptr, ip4, ip6 en exists. De vier meest voorkomende zijn ip4 (autoriseert een specifiek IP), a (autoriseert het A-record van het domein), mx (autoriseert de MX-records van het domein) en include (delegeert naar een ander SPF-record). Leer de exacte semantiek en de lookup-kosten van elk mechanisme.","url":"https://autospf.com/blog/understanding-spf-mechanisms-a-mx-ip4-and-include/","datePublished":"2025-06-27T17:04:02.000Z","dateModified":"2026-04-18T02:36:41.000Z","dateCreated":"2025-06-27T17:04:02.000Z","author":{"@type":"Person","@id":"https://autospf.com/authors/adam-lundrigan/#person","name":"Adam Lundrigan","url":"https://autospf.com/authors/adam-lundrigan/","jobTitle":"CTO","description":"Adam Lundrigan is the Chief Technology Officer of DuoCircle, where he leads engineering and is responsible for the architecture of AutoSPF's SPF flattening engine and DNS monitoring infrastructure. His technical focus is the DNS-level behavior of SPF evaluation, the recursive include resolution logic that underpins flattening, and the monitoring systems that keep customer SPF records healthy as their upstream vendors change IP ranges.","image":"https://media.mailhop.org/autospf/images/authors/adam-lundrigan.jpg","knowsAbout":["SPF Flattening","DNS Architecture","Recursive Include Resolution","SaaS Engineering","DNS Monitoring","Infrastructure Automation"],"worksFor":{"@type":"Organization","name":"AutoSPF","url":"https://autospf.com"},"sameAs":["https://www.linkedin.com/in/adamlundrigan/"]},"publisher":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]},"sameAs":["https://www.wikidata.org/wiki/Q138897474","https://www.linkedin.com/company/autospf","https://x.com/autospf01","https://www.g2.com/products/autospf/reviews"],"contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://autospf.com/contact-us/"},"knowsAbout":["SPF Record Flattening","Sender Policy Framework","Email Authentication","DNS Management","DMARC","DKIM"]},"mainEntityOfPage":{"@type":"WebPage","@id":"https://autospf.com/blog/understanding-spf-mechanisms-a-mx-ip4-and-include/"},"articleSection":"foundational","keywords":"SPF, SPF Flattening, SPF Flattening tool, SPF record","wordCount":1126,"image":{"@type":"ImageObject","url":"https://media.mailhop.org/autospf/images/2025/06/spf-record-generator-6637.jpg","caption":"SPF-mechanismen","width":900,"height":600},"speakable":{"@type":"SpeakableSpecification","cssSelector":[".answer-block","h1"]}},{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"Wanneer moet u het mechanisme 'a' gebruiken?","acceptedAnswer":{"@type":"Answer","text":"Gebruik het wanneer:"}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'a' vermijden?","acceptedAnswer":{"@type":"Answer","text":"Zie af van het mechanisme 'a' wanneer:"}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'mx' gebruiken?","acceptedAnswer":{"@type":"Answer","text":"Gebruik het mechanisme 'mx' als uw e-mail wordt verzonden via dezelfde mailservers die e-mails voor uw domein ontvangen, dat wil zeggen als uw inkomende en uitgaande mailservers dezelfde zijn."}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'mx' vermijden?","acceptedAnswer":{"@type":"Answer","text":"Het is niet ideaal om het mechanisme 'mx' te gebruiken als uw uitgaande e-mails niet via uw MX-servers gaan. Dit zijn de gevallen waarin dit vaak voorkomt:"}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'ip4' gebruiken?","acceptedAnswer":{"@type":"Answer","text":"Het mechanisme 'ip4' kunt u het beste gebruiken wanneer:"}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'ip4' vermijden?","acceptedAnswer":{"@type":"Answer","text":"Het is beter om voorzichtig te zijn:"}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'include' gebruiken?","acceptedAnswer":{"@type":"Answer","text":"Gebruik het wanneer een externe dienst e-mail verzendt met uw domein. Dit omvat:"}},{"@type":"Question","name":"Wanneer moet u het mechanisme 'include' vermijden?","acceptedAnswer":{"@type":"Answer","text":"U hoeft het mechanisme 'include' niet te vermijden; houd echter rekening met deze punten zodat u het niet overmatig gebruikt:"}}]}]
```

```json
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://autospf.com/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https://autospf.com/blog/"},{"@type":"ListItem","position":3,"name":"SPF-mechanismen begrijpen: a, mx, ip4 en include","item":"https://autospf.com/nl/blog/understanding-spf-mechanisms-a-mx-ip4-and-include/"}]}
```
