diff options
| -rw-r--r-- | mail/changes/feature-7471_disable-local-bind-for-docker | 1 | ||||
| -rw-r--r-- | mail/src/leap/mail/imap/service/imap.py | 8 | ||||
| -rw-r--r-- | mail/src/leap/mail/smtp/__init__.py | 9 | 
3 files changed, 16 insertions, 2 deletions
| diff --git a/mail/changes/feature-7471_disable-local-bind-for-docker b/mail/changes/feature-7471_disable-local-bind-for-docker new file mode 100644 index 0000000..a1ccb67 --- /dev/null +++ b/mail/changes/feature-7471_disable-local-bind-for-docker @@ -0,0 +1 @@ +- disable local only tcp bind on docker containers to allow access to IMAP and SMTP. Related to #7471. diff --git a/mail/src/leap/mail/imap/service/imap.py b/mail/src/leap/mail/imap/service/imap.py index cd31edf..a50611b 100644 --- a/mail/src/leap/mail/imap/service/imap.py +++ b/mail/src/leap/mail/imap/service/imap.py @@ -158,8 +158,14 @@ def run_service(store, **kwargs):      factory = LeapIMAPFactory(uuid, userid, store)      try: +        interface = "localhost" +        # don't bind just to localhost if we are running on docker since we +        # won't be able to access imap from the host +        if os.environ.get("LEAP_DOCKERIZED"): +            interface = '' +          tport = reactor.listenTCP(port, factory, -                                  interface="localhost") +                                  interface=interface)      except CannotListenError:          logger.error("IMAP Service failed to start: "                       "cannot listen in port %s" % (port,)) diff --git a/mail/src/leap/mail/smtp/__init__.py b/mail/src/leap/mail/smtp/__init__.py index a77a414..7b62808 100644 --- a/mail/src/leap/mail/smtp/__init__.py +++ b/mail/src/leap/mail/smtp/__init__.py @@ -19,6 +19,7 @@  SMTP gateway helper function.  """  import logging +import os  from twisted.internet import reactor  from twisted.internet.error import CannotListenError @@ -64,7 +65,13 @@ def setup_smtp_gateway(port, userid, keymanager, smtp_host, smtp_port,          userid, keymanager, smtp_cert, smtp_key, smtp_host, smtp_port)      factory = SMTPFactory(userid, keymanager, encrypted_only, outgoing_mail)      try: -        tport = reactor.listenTCP(port, factory, interface="localhost") +        interface = "localhost" +        # don't bind just to localhost if we are running on docker since we +        # won't be able to access smtp from the host +        if os.environ.get("LEAP_DOCKERIZED"): +            interface = '' + +        tport = reactor.listenTCP(port, factory, interface=interface)          emit_async(catalog.SMTP_SERVICE_STARTED, str(port))          return factory, tport      except CannotListenError: | 
