Skip to content
Outlook 📅 2026-02-05

Outlook Error 0x80042109: Send Receive Failed - Fix

When Outlook fails to connect to your outgoing mail server, presenting the elusive error 0x80042109, it signifies a critical blockage in your ability to send emails. This guide provides a direct, actionable path to diagnose and resolve this common MAPI Send/Receive issue.

🚨 Symptoms & Diagnosis

Users encountering this error will typically observe one of the following messages:

Task 'SMTP server name - Sending and Receiving' reported error (0x80042109): 'Outlook is unable to connect to your outgoing (SMTP) e-mail server. If you continue to receive this message, contact the server administrator or Internet service provider (ISP).'
Error 0x80042109
Outlook Send/Receive failed: Cannot connect to outgoing (SMTP) server

Root Cause: This error frequently stems from your Internet Service Provider (ISP) or local firewall blocking the default SMTP port (25), incorrect SMTP server settings or authentication, or interference from security software. Less commonly, a corrupted Outlook mail profile or data file (PST/OST) can also trigger the issue.


🛠️ Solutions

Immediate Mitigation: Change SMTP Port & Toggle Offline Mode

This solution addresses common port blockages and ensures your account settings are correctly configured for secure outgoing mail.

Immediate Mitigation: Change SMTP Port & Toggle Offline Mode

This step often resolves connectivity issues related to ISP-level port blocking or incorrect server authentication settings.

  1. Access Account Settings:

    • In Outlook, navigate to the File tab in the top-left corner.
    • Select Account Settings, then click Account Settings... from the dropdown.
  2. Modify Email Account Settings:

    • From the Email tab, select the affected email account.
    • Click Change....
  3. Update Outgoing Server Details:

    • In the Change Account dialog, click More Settings....
    • Go to the Advanced tab.
    • Locate Outgoing server (SMTP) and change the port number to 587.
    • For Use the following type of encrypted connection, select TLS.
  4. Configure Outgoing Server Authentication:

    • Switch to the Outgoing Server tab.
    • Ensure the checkbox My outgoing server (SMTP) requires authentication is checked.
    • Verify Use same settings as my incoming mail server is selected.
  5. Toggle Work Offline Mode:

    • Go to the Send/Receive tab in Outlook's main ribbon.
    • Ensure Work Offline is not active. If it is, click it to toggle it off.
    • Attempt a Send/Receive operation.

To quickly verify network connectivity to the new SMTP port:

# First, install the Telnet Client if it's not already installed
# Requires Administrator privileges
dism /online /Enable-Feature /FeatureName:TelnetClient

# Test connection to your SMTP server (replace smtp.server.com with your actual SMTP server)
# A '220' response indicates a successful connection to the SMTP server on port 587.
telnet smtp.server.com 587

Best Practice Fix: Repair Profile & Disable Interfering Software

If the port change doesn't resolve the error, deeper issues like a corrupt Outlook profile or interference from security software are likely culprits.

Best Practice Fix: Repair Profile & Disable Interfering Software

This approach addresses more persistent issues by isolating Outlook from potential software conflicts and repairing core application data.

  1. Create a New Outlook Profile:

    • Close Outlook completely.
    • Open Control Panel. Search for Mail (Microsoft Outlook [Version]) and open it.
    • In the Mail Setup - Outlook dialog, click Show Profiles....
    • Click Add... to create a new profile. Give it a distinct name (e.g., "NewOutlookProfile").
    • Follow the prompts to add your email account(s) to the new profile, ensuring correct SMTP settings (port 587, TLS, authentication).
    • Set the new profile as the Always use this profile default or manually select it when launching Outlook.

    Alternatively, to launch with a specific profile:

    # Replace "NewProfile" with the name of your newly created profile.
    outlook.exe /profile "NewProfile"
    

  2. Temporarily Disable Interfering Software:

    • Antivirus/Firewall: Temporarily disable your third-party antivirus suite or Windows Defender Firewall.
      • Windows Defender Firewall: Navigate to Control Panel > System and Security > Windows Defender Firewall. Click Allow an app or feature through Windows Defender Firewall and ensure Outlook.exe is allowed for both Private and Public networks. You may also temporarily Turn Windows Defender Firewall on or off for testing (not recommended for extended periods).
    • Test Outlook after disabling to see if the error persists. If it resolves, re-enable the software and configure exceptions for Outlook.
  3. Launch Outlook in Safe Mode:

    • Press Win + R, type outlook /safe, and press Enter.
    • This starts Outlook without add-ins, which can help determine if a problematic add-in is causing the conflict. If the error is absent in safe mode, disable add-ins one by one until the culprit is found.
  4. Repair Corrupt PST/OST File:

    • If your Outlook data file (.pst or .ost) is suspected of corruption, use the Inbox Repair Tool (SCANPST.EXE).
    • Close Outlook.
    • Locate SCANPST.EXE in your Office installation directory (e.g., "C:\Program Files\Microsoft Office\root\Office16" for Outlook 2016/2019/365).
    • Run the tool and browse to your PST or OST file.

    Data Loss Warning

    Always back up your PST/OST file before attempting repairs with SCANPST.EXE. While designed for repair, unforeseen issues could lead to data loss.

    # Path might vary based on your Office version and installation.
    # Replace "path_to_pst_file.pst" with the actual path to your Outlook data file.
    & "C:\Program Files\Microsoft Office\root\Office16\SCANPST.EXE" /p "C:\Users\%USERNAME%\Documents\Outlook Files\your_outlook_data_file.pst"
    

🧩 Technical Context (Visualized)

Error 0x80042109 occurs within Outlook's MAPI Send/Receive subsystem, specifically when attempting to negotiate a connection with the SMTP (outgoing mail) server. This process involves the Outlook client initiating a connection, authenticating, and sending data over a specified port. Blockages can occur at multiple points: locally by your firewall or antivirus, or externally by your Internet Service Provider (ISP) if they're blocking standard ports like 25.

graph TD
    A[Outlook Client] -->|1. Initiate SMTP Connection| B{Local Network Interface};
    B -->|2. Outgoing Port (e.g., 587 TLS)| C{Local Firewall/Antivirus};
    C -- Blocked Port 25 --> A;
    C -->|3. Egress Traffic| D{ISP Network/Router};
    D -- ISP Blocked Port 25 --> A;
    D -->|4. Internet Routing| E[Remote SMTP Server];
    E -- 5. Authentication/Data Transfer --> B;
    B -- Incorrect Settings/Timeout --> A;
    A -- Error 0x80042109 --> A;

✅ Verification

After implementing the solutions, confirm that the error is resolved by performing the following checks:

  1. Initiate a Send/Receive: In Outlook, navigate to Send/Receive and click Send All. Verify that no error pop-up appears and outgoing messages are delivered.
  2. Telnet Connection Test: Re-run the telnet smtp.yourserver.com 587 command in powershell. A 220 response from the server indicates a successful network-level connection.
  3. Account Repair Test: In File > Account Settings > Account Settings, select your email account and click Repair. Outlook will attempt to test the account settings.
  4. Event Viewer Check: Open Event Viewer (eventvwr.msc), navigate to Windows Logs > Application, and filter for MAPI or SMTP errors. Confirm no new errors related to sending mail are logged.

📦 Prerequisites

To effectively troubleshoot and resolve this error, ensure you meet the following prerequisites:

  • Outlook Version: Outlook 2016, 2019, or Microsoft 365 (with the latest patches applied).
  • Administrative Rights: Administrator privileges are required for modifying firewall settings, installing Telnet, and running SCANPST.EXE.
  • SCANPST.EXE: The Inbox Repair Tool (SCANPST.EXE) must be available in your Office installation directory.
  • Internet Connectivity: A stable internet connection is essential for testing outgoing mail server connections.