Option to force ipv4?

Created on 5 March 2025, about 1 month ago

Problem/Motivation

Hi Guys. First of all thanks for this module.

I'm using mailer version 1.5 - Is there any way I can force SMTP connections to use IPv4 - currently it's connecting via IPv6 and only a specific IPv4 address has been given access.

📌 Task
Status

Active

Version

1.5

Component

Documentation

Created by

🇬🇧United Kingdom mistergroove

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @mistergroove
  • 🇬🇧United Kingdom mistergroove

    I added these lines in my site settings.php:

    // Force PHP to use IPv4 for all outgoing requests
    stream_context_set_default([
        'socket' => [
            'bindto' => '0.0.0.0:0',  // Bind to any available IPv4 address
        ],
    ]);

    Not sure if there's any other implications of that but it seems to fix my issue.

  • 🇬🇧United Kingdom adamps

    You are welcome to add it to the documentation. I'd rather not have it filling up the issue queue.

Production build 0.71.5 2024