You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When updating mailman a few days ago starting it returned an error message, namely "OSError: [Errno 43] Protocol not supported".
This is errno.EPROTONOSUPPORT on FreeBSD in jails without IPv6 support.
There was also a similar issue #244, which was fixed in pull requests #248 and #250 by adding support for errno.EAFNOSUPPORT.
Maybe this could also be added to aiosmtpd/controller.py:43 so that the line reads NO = {errno.EADDRNOTAVAIL, errno.EAFNOSUPPORT, errno.EPROTONOSUPPORT}
The text was updated successfully, but these errors were encountered:
When updating mailman a few days ago starting it returned an error message, namely "OSError: [Errno 43] Protocol not supported".
This is errno.EPROTONOSUPPORT on FreeBSD in jails without IPv6 support.
There was also a similar issue #244, which was fixed in pull requests #248 and #250 by adding support for errno.EAFNOSUPPORT.
Maybe this could also be added to aiosmtpd/controller.py:43 so that the line reads
NO = {errno.EADDRNOTAVAIL, errno.EAFNOSUPPORT, errno.EPROTONOSUPPORT}
The text was updated successfully, but these errors were encountered: