[{"data":1,"prerenderedAt":593},["ShallowReactive",2],{"blog-en-delivrabilite-smtp-ovh-infomaniak":3,"blog-related-en-delivrabilite-smtp-ovh-infomaniak":580},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"updated":10,"body":11,"_type":574,"_id":575,"_source":576,"_file":577,"_stem":578,"_extension":579},"/en/blog/delivrabilite-smtp-ovh-infomaniak","blog",false,"","OVH and Infomaniak SMTP: Email Deliverability Step by Step","Running your business email through OVH or Infomaniak? Learn how to configure SPF, DKIM, work around shared hosting limits, and avoid deliverability pitfalls.","2026-08-21",{"type":12,"children":13,"toc":557},"root",[14,22,29,34,39,45,50,57,71,84,93,98,104,117,125,146,159,165,170,175,180,185,190,203,224,230,235,249,254,273,279,296,322,371,389,406,412,417,457,462,467,487,493],{"type":15,"tag":16,"props":17,"children":18},"element","p",{},[19],{"type":20,"value":21},"text","Most email deliverability guides are written for Google Workspace or Microsoft 365 users. If your domain is hosted with OVH or Infomaniak, the setup is different, the sending limits are tighter, and the pitfalls are specific to how French shared hosting works.",{"type":15,"tag":23,"props":24,"children":26},"h2",{"id":25},"what-makes-ovh-and-infomaniak-smtp-different",[27],{"type":20,"value":28},"What Makes OVH and Infomaniak SMTP Different",{"type":15,"tag":16,"props":30,"children":31},{},[32],{"type":20,"value":33},"Both providers are widely used by French freelancers and small businesses. Their shared hosting plans bundle email at no extra cost, which makes them attractive. The downside: shared infrastructure means shared sending limits, and getting authentication records right requires navigating each provider's control panel rather than a single standard interface.",{"type":15,"tag":16,"props":35,"children":36},{},[37],{"type":20,"value":38},"When you connect your OVH or Infomaniak address to a cold email tool, the SMTP connection routes through their relay servers. The emails you send inherit the reputation of that relay, which makes proper SPF and DKIM configuration non-negotiable before you send a single prospecting sequence.",{"type":15,"tag":23,"props":40,"children":42},{"id":41},"configuring-spf",[43],{"type":20,"value":44},"Configuring SPF",{"type":15,"tag":16,"props":46,"children":47},{},[48],{"type":20,"value":49},"SPF (Sender Policy Framework) tells receiving mail servers which hosts are authorized to send email on behalf of your domain. Without a valid SPF record, your emails are likely to land in spam or be rejected outright.",{"type":15,"tag":51,"props":52,"children":54},"h3",{"id":53},"on-ovh",[55],{"type":20,"value":56},"On OVH",{"type":15,"tag":16,"props":58,"children":59},{},[60,62,69],{"type":20,"value":61},"Log in to your OVH Manager, go to the DNS zone of your domain, and look for an existing TXT record starting with ",{"type":15,"tag":63,"props":64,"children":66},"code",{"className":65},[],[67],{"type":20,"value":68},"v=spf1",{"type":20,"value":70},". OVH often adds a default SPF record when you activate email. If one exists, edit it rather than create a second one. Two SPF records on the same domain cancel each other out and break authentication entirely.",{"type":15,"tag":16,"props":72,"children":73},{},[74,76,82],{"type":20,"value":75},"The OVH include mechanism for shared hosting is ",{"type":15,"tag":63,"props":77,"children":79},{"className":78},[],[80],{"type":20,"value":81},"include:mx.ovh.com",{"type":20,"value":83},". A minimal valid record for a domain that only sends through OVH looks like this:",{"type":15,"tag":85,"props":86,"children":88},"pre",{"code":87},"v=spf1 include:mx.ovh.com ~all\n",[89],{"type":15,"tag":63,"props":90,"children":91},{"__ignoreMap":7},[92],{"type":20,"value":87},{"type":15,"tag":16,"props":94,"children":95},{},[96],{"type":20,"value":97},"If you also send from another tool (a CRM, an invoicing platform), add its include on the same line. One line, one TXT entry.",{"type":15,"tag":51,"props":99,"children":101},{"id":100},"on-infomaniak",[102],{"type":20,"value":103},"On Infomaniak",{"type":15,"tag":16,"props":105,"children":106},{},[107,109,115],{"type":20,"value":108},"In the Infomaniak Manager, navigate to your domain's DNS settings. The SPF include for Infomaniak is ",{"type":15,"tag":63,"props":110,"children":112},{"className":111},[],[113],{"type":20,"value":114},"include:mails.infomaniak.com",{"type":20,"value":116},". A basic record:",{"type":15,"tag":85,"props":118,"children":120},{"code":119},"v=spf1 include:mails.infomaniak.com ~all\n",[121],{"type":15,"tag":63,"props":122,"children":123},{"__ignoreMap":7},[124],{"type":20,"value":119},{"type":15,"tag":16,"props":126,"children":127},{},[128,130,136,138,144],{"type":20,"value":129},"The ",{"type":15,"tag":63,"props":131,"children":133},{"className":132},[],[134],{"type":20,"value":135},"~all",{"type":20,"value":137}," qualifier (softfail) is standard practice. Using ",{"type":15,"tag":63,"props":139,"children":141},{"className":140},[],[142],{"type":20,"value":143},"-all",{"type":20,"value":145}," (hardfail) is stricter but can cause problems if you ever send from an unlisted server, for example when testing a third-party integration.",{"type":15,"tag":16,"props":147,"children":148},{},[149,151,157],{"type":20,"value":150},"DNS changes can take up to 48 hours to propagate. Verify with ",{"type":15,"tag":63,"props":152,"children":154},{"className":153},[],[155],{"type":20,"value":156},"dig TXT yourdomain.com",{"type":20,"value":158}," from your terminal once the delay has passed, or use any public DNS checker that shows raw TXT records.",{"type":15,"tag":23,"props":160,"children":162},{"id":161},"configuring-dkim",[163],{"type":20,"value":164},"Configuring DKIM",{"type":15,"tag":16,"props":166,"children":167},{},[168],{"type":20,"value":169},"DKIM (DomainKeys Identified Mail) adds a cryptographic signature to each outgoing email, allowing the receiving server to verify the message has not been tampered with. It also ties your emails to your domain's reputation rather than the IP address of the relay.",{"type":15,"tag":51,"props":171,"children":173},{"id":172},"on-ovh-1",[174],{"type":20,"value":56},{"type":15,"tag":16,"props":176,"children":177},{},[178],{"type":20,"value":179},"OVH supports DKIM for its email plans. In the OVH Manager, under Emails > your domain, you will find a DKIM configuration option. OVH generates the key pair and displays the exact TXT record to add to your DNS zone. Copy the record name and value precisely.",{"type":15,"tag":16,"props":181,"children":182},{},[183],{"type":20,"value":184},"One common pitfall: if you have both a shared hosting plan and an Exchange plan on OVH, each has its own DKIM configuration. Confirm you are configuring the one that matches the SMTP server you will actually use for sending.",{"type":15,"tag":51,"props":186,"children":188},{"id":187},"on-infomaniak-1",[189],{"type":20,"value":103},{"type":15,"tag":16,"props":191,"children":192},{},[193,195,201],{"type":20,"value":194},"Infomaniak supports DKIM and provides DNS records through their Manager. Navigate to your email hosting settings, find the DKIM section, and generate the key. The record name follows the format ",{"type":15,"tag":63,"props":196,"children":198},{"className":197},[],[199],{"type":20,"value":200},"selector._domainkey.yourdomain.com",{"type":20,"value":202},".",{"type":15,"tag":16,"props":204,"children":205},{},[206,208,214,216,222],{"type":20,"value":207},"After adding the record and waiting for propagation, verify by sending a test email to a Gmail or Outlook address and inspecting the raw message headers. A successful result shows ",{"type":15,"tag":63,"props":209,"children":211},{"className":210},[],[212],{"type":20,"value":213},"dkim=pass",{"type":20,"value":215}," in the ",{"type":15,"tag":63,"props":217,"children":219},{"className":218},[],[220],{"type":20,"value":221},"Authentication-Results",{"type":20,"value":223}," header.",{"type":15,"tag":23,"props":225,"children":227},{"id":226},"sending-limits-on-shared-hosting",[228],{"type":20,"value":229},"Sending Limits on Shared Hosting",{"type":15,"tag":16,"props":231,"children":232},{},[233],{"type":20,"value":234},"This is where many freelancers hit a wall. Shared hosting plans at both OVH and Infomaniak are designed for transactional email (invoices, order confirmations, contact form notifications), not outbound prospecting. They enforce per-hour and per-day limits on the number of messages sent through their relay.",{"type":15,"tag":16,"props":236,"children":237},{},[238,240,247],{"type":20,"value":239},"These limits are not prominently documented. If you exceed them, emails queue up or are silently rejected, often without a clear bounce notification back to your sending tool. This matters especially for ",{"type":15,"tag":241,"props":242,"children":244},"a",{"href":243},"/en/blog/email-sequence-length-best-practices",[245],{"type":20,"value":246},"cold email sequences",{"type":20,"value":248},", where a missing bounce can leave an unresponsive contact in an active drip for days.",{"type":15,"tag":16,"props":250,"children":251},{},[252],{"type":20,"value":253},"Infomaniak's business email plans (Mail+) offer higher thresholds than basic shared hosting, but they are still not designed for bulk outreach. OVH Pro and Exchange plans similarly raise the ceiling compared to mutualized hosting, but the same principle applies.",{"type":15,"tag":16,"props":255,"children":256},{},[257,263,265,271],{"type":15,"tag":258,"props":259,"children":260},"strong",{},[261],{"type":20,"value":262},"What this means in practice:",{"type":20,"value":264}," set a conservative daily cap per account in your sending tool. In Fluenzr's ",{"type":15,"tag":241,"props":266,"children":268},{"href":267},"/en/pricing/",[269],{"type":20,"value":270},"Pro plan",{"type":20,"value":272},", you can configure per-account daily limits and use inbox rotation across multiple addresses to distribute volume while keeping each account within its host's acceptable range.",{"type":15,"tag":23,"props":274,"children":276},{"id":275},"the-most-common-pitfalls",[277],{"type":20,"value":278},"The Most Common Pitfalls",{"type":15,"tag":16,"props":280,"children":281},{},[282,287,289,294],{"type":15,"tag":258,"props":283,"children":284},{},[285],{"type":20,"value":286},"Duplicate SPF records.",{"type":20,"value":288}," As covered above, two ",{"type":15,"tag":63,"props":290,"children":292},{"className":291},[],[293],{"type":20,"value":68},{"type":20,"value":295}," entries on the same domain break SPF. Always audit existing DNS records before adding a new one.",{"type":15,"tag":16,"props":297,"children":298},{},[299,304,306,312,314,320],{"type":15,"tag":258,"props":300,"children":301},{},[302],{"type":20,"value":303},"DMARC without DKIM.",{"type":20,"value":305}," If you add a DMARC policy with ",{"type":15,"tag":63,"props":307,"children":309},{"className":308},[],[310],{"type":20,"value":311},"p=reject",{"type":20,"value":313}," or ",{"type":15,"tag":63,"props":315,"children":317},{"className":316},[],[318],{"type":20,"value":319},"p=quarantine",{"type":20,"value":321}," but DKIM is not configured or not verified, legitimate emails will fail DMARC checks. Set DMARC only after both SPF and DKIM are confirmed to pass.",{"type":15,"tag":16,"props":323,"children":324},{},[325,330,332,338,340,346,348,354,356,362,363,369],{"type":15,"tag":258,"props":326,"children":327},{},[328],{"type":20,"value":329},"Using a role address for outreach.",{"type":20,"value":331}," Addresses like ",{"type":15,"tag":63,"props":333,"children":335},{"className":334},[],[336],{"type":20,"value":337},"contact@",{"type":20,"value":339},", ",{"type":15,"tag":63,"props":341,"children":343},{"className":342},[],[344],{"type":20,"value":345},"info@",{"type":20,"value":347},", or ",{"type":15,"tag":63,"props":349,"children":351},{"className":350},[],[352],{"type":20,"value":353},"support@",{"type":20,"value":355}," are frequently targeted by spam filters and start with lower trust. Use a personal or professional format (",{"type":15,"tag":63,"props":357,"children":359},{"className":358},[],[360],{"type":20,"value":361},"firstname@",{"type":20,"value":313},{"type":15,"tag":63,"props":364,"children":366},{"className":365},[],[367],{"type":20,"value":368},"firstname.lastname@",{"type":20,"value":370},") for prospecting.",{"type":15,"tag":16,"props":372,"children":373},{},[374,379,381,387],{"type":15,"tag":258,"props":375,"children":376},{},[377],{"type":20,"value":378},"Launching sequences without a warm-up period.",{"type":20,"value":380}," A freshly configured SMTP account has no sending history. Inbox providers treat it as an unknown, which hurts placement from the start. Fluenzr includes built-in ",{"type":15,"tag":241,"props":382,"children":384},{"href":383},"/en/blog/email-warm-up-strategies-2026",[385],{"type":20,"value":386},"email warm-up",{"type":20,"value":388}," designed to build reputation gradually before you run your first sequence.",{"type":15,"tag":16,"props":390,"children":391},{},[392,397,399,405],{"type":15,"tag":258,"props":393,"children":394},{},[395],{"type":20,"value":396},"Ignoring bounce management.",{"type":20,"value":398}," OVH and Infomaniak relays do return bounce notifications, but not all tools parse them consistently. Fluenzr processes bounces at the sequence level and suppresses contacts automatically to protect your ",{"type":15,"tag":241,"props":400,"children":402},{"href":401},"/en/blog/how-to-avoid-email-blacklist-2",[403],{"type":20,"value":404},"sender reputation",{"type":20,"value":202},{"type":15,"tag":23,"props":407,"children":409},{"id":408},"connecting-your-ovh-or-infomaniak-smtp-to-fluenzr",[410],{"type":20,"value":411},"Connecting Your OVH or Infomaniak SMTP to Fluenzr",{"type":15,"tag":16,"props":413,"children":414},{},[415],{"type":20,"value":416},"Fluenzr natively supports SMTP, which is the primary way OVH and Infomaniak users connect. No need to switch to Gmail or Microsoft. In your Fluenzr account settings, add an email account, choose SMTP, and enter:",{"type":15,"tag":418,"props":419,"children":420},"ul",{},[421,440],{"type":15,"tag":422,"props":423,"children":424},"li",{},[425,430,432,438],{"type":15,"tag":258,"props":426,"children":427},{},[428],{"type":20,"value":429},"OVH:",{"type":20,"value":431}," server ",{"type":15,"tag":63,"props":433,"children":435},{"className":434},[],[436],{"type":20,"value":437},"ssl0.ovh.net",{"type":20,"value":439},", port 465 (SSL/TLS) or port 587 (STARTTLS), with your full email address and account password.",{"type":15,"tag":422,"props":441,"children":442},{},[443,448,449,455],{"type":15,"tag":258,"props":444,"children":445},{},[446],{"type":20,"value":447},"Infomaniak:",{"type":20,"value":431},{"type":15,"tag":63,"props":450,"children":452},{"className":451},[],[453],{"type":20,"value":454},"mail.infomaniak.com",{"type":20,"value":456},", port 465 or port 587, same credential format.",{"type":15,"tag":16,"props":458,"children":459},{},[460],{"type":20,"value":461},"If your OVH plan is a Pro or MX Plan, the server address may differ; check the \"Email\" section of your OVH Manager for the exact outgoing SMTP hostname shown for your plan.",{"type":15,"tag":16,"props":463,"children":464},{},[465],{"type":20,"value":466},"Once connected, Fluenzr's sequence automation, reply detection, and deliverability monitoring work the same way as with any other provider. You keep your existing domain and address, and you gain the sending controls that shared hosting alone does not offer.",{"type":15,"tag":16,"props":468,"children":469},{},[470,478,480,485],{"type":15,"tag":241,"props":471,"children":475},{"href":472,"rel":473},"https://app.fluenzr.co/signup",[474],"nofollow",[476],{"type":20,"value":477},"Create a free Fluenzr account",{"type":20,"value":479}," to connect your first SMTP account. Use code ",{"type":15,"tag":258,"props":481,"children":482},{},[483],{"type":20,"value":484},"FOUNDING50",{"type":20,"value":486}," for 50% off any paid plan for life, available to the first 50 paying users.",{"type":15,"tag":23,"props":488,"children":490},{"id":489},"key-takeaways",[491],{"type":20,"value":492},"Key Takeaways",{"type":15,"tag":418,"props":494,"children":495},{},[496,501,519,524,529,534,552],{"type":15,"tag":422,"props":497,"children":498},{},[499],{"type":20,"value":500},"Always check for an existing SPF record before adding one. Two records break authentication.",{"type":15,"tag":422,"props":502,"children":503},{},[504,506,511,513,518],{"type":20,"value":505},"OVH shared hosting uses ",{"type":15,"tag":63,"props":507,"children":509},{"className":508},[],[510],{"type":20,"value":81},{"type":20,"value":512},"; Infomaniak uses ",{"type":15,"tag":63,"props":514,"children":516},{"className":515},[],[517],{"type":20,"value":114},{"type":20,"value":202},{"type":15,"tag":422,"props":520,"children":521},{},[522],{"type":20,"value":523},"Enable DKIM through each provider's control panel and verify headers before sending sequences.",{"type":15,"tag":422,"props":525,"children":526},{},[527],{"type":20,"value":528},"Shared hosting plans impose per-hour and per-day sending limits that are not designed for prospecting. Set daily caps per account and use rotation if you manage multiple addresses.",{"type":15,"tag":422,"props":530,"children":531},{},[532],{"type":20,"value":533},"Warm up a new SMTP account before starting cold email campaigns.",{"type":15,"tag":422,"props":535,"children":536},{},[537,539,544,545,550],{"type":20,"value":538},"Role addresses (",{"type":15,"tag":63,"props":540,"children":542},{"className":541},[],[543],{"type":20,"value":337},{"type":20,"value":339},{"type":15,"tag":63,"props":546,"children":548},{"className":547},[],[549],{"type":20,"value":345},{"type":20,"value":551},") underperform personal addresses in outreach contexts.",{"type":15,"tag":422,"props":553,"children":554},{},[555],{"type":20,"value":556},"Fluenzr connects via SMTP natively. No provider switch required.",{"title":7,"searchDepth":558,"depth":558,"links":559},3,[560,562,566,570,571,572,573],{"id":25,"depth":561,"text":28},2,{"id":41,"depth":561,"text":44,"children":563},[564,565],{"id":53,"depth":558,"text":56},{"id":100,"depth":558,"text":103},{"id":161,"depth":561,"text":164,"children":567},[568,569],{"id":172,"depth":558,"text":56},{"id":187,"depth":558,"text":103},{"id":226,"depth":561,"text":229},{"id":275,"depth":561,"text":278},{"id":408,"depth":561,"text":411},{"id":489,"depth":561,"text":492},"markdown","content:en:blog:delivrabilite-smtp-ovh-infomaniak.md","content","en/blog/delivrabilite-smtp-ovh-infomaniak.md","en/blog/delivrabilite-smtp-ovh-infomaniak","md",[581,585,589],{"_path":582,"title":583,"date":10,"score":584},"/en/blog/cold-email-rgpd-france","Cold Email in France: GDPR and CNIL Rules Explained",0,{"_path":586,"title":587,"date":588,"score":584},"/en/blog/cold-email-deliverability-best-practices-2026","Cold Email Deliverability Best Practices in 2026","2026-05-22",{"_path":590,"title":591,"date":592,"score":584},"/en/blog/cold-email-best-practices","Cold Email Best Practices That Actually Get Replies","2026-05-17",1787316938137]