Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. LAMP
  3. Haraka - View Closed Connections

Haraka - View Closed Connections

Scheduled Pinned Locked Moved Solved LAMP
7 Posts 2 Posters 1.2k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    JLX89
    wrote on last edited by
    #1

    Hello All,
    We are using a LAMP App that uses email piping and access via IMAP and or POP3 and getting errors "Error: cannot read - connection closed".

    Is there a way to research this in the Haraka logs to view why the connection might be closed?

    Thank you

    girishG 1 Reply Last reply
    0
    • J JLX89

      Hello All,
      We are using a LAMP App that uses email piping and access via IMAP and or POP3 and getting errors "Error: cannot read - connection closed".

      Is there a way to research this in the Haraka logs to view why the connection might be closed?

      Thank you

      girishG Offline
      girishG Offline
      girish
      Staff
      wrote on last edited by
      #2

      @JLX89 So the LAMP app is using IMAP and POP3 to access some mailboxes which are hosted in Cloudron ? Both these protocols are implemented by dovecot and not by Haraka. Dovecot logs are in /run/dovecot/dovecot.log of the mail container. You can docker exec -ti mail /bin/bash and then inspect the file.

      Have you just tried simple openssl s_client -connect mailserver.domain.com 993 from LAMP app's web terminal ? Does it connect?

      J 1 Reply Last reply
      0
      • girishG girish moved this topic from Support on
      • girishG girish

        @JLX89 So the LAMP app is using IMAP and POP3 to access some mailboxes which are hosted in Cloudron ? Both these protocols are implemented by dovecot and not by Haraka. Dovecot logs are in /run/dovecot/dovecot.log of the mail container. You can docker exec -ti mail /bin/bash and then inspect the file.

        Have you just tried simple openssl s_client -connect mailserver.domain.com 993 from LAMP app's web terminal ? Does it connect?

        J Offline
        J Offline
        JLX89
        wrote on last edited by
        #3

        @girish I've found the following, looks like it just drops for around a minute and then works again.

        Mar 02 19:16:21 auth: Error: LDAP: Connection lost to LDAP server, reconnecting
        Mar 02 19:16:21 auth: Error: LDAP: Can't connect to server: 172.18.X.X:3002
        Mar 02 19:16:23 auth: Info: ldap(user@domain.com,149.28.X.X,<T6POp+/1YuCVHCuj>): Aborting (timeout), we're not connected to LDAP server
        Mar 02 19:16:24 auth: Error: LDAP: Can't connect to server: 172.18.X.X:3002
        Mar 02 19:16:25 imap-login: Info: Aborted login (auth service reported temporary failure): user=<user@domain.com>, method=PLAIN, rip=149.28.X.X, lip=172.18.X.X, >
        
        girishG 1 Reply Last reply
        0
        • J JLX89

          @girish I've found the following, looks like it just drops for around a minute and then works again.

          Mar 02 19:16:21 auth: Error: LDAP: Connection lost to LDAP server, reconnecting
          Mar 02 19:16:21 auth: Error: LDAP: Can't connect to server: 172.18.X.X:3002
          Mar 02 19:16:23 auth: Info: ldap(user@domain.com,149.28.X.X,<T6POp+/1YuCVHCuj>): Aborting (timeout), we're not connected to LDAP server
          Mar 02 19:16:24 auth: Error: LDAP: Can't connect to server: 172.18.X.X:3002
          Mar 02 19:16:25 imap-login: Info: Aborted login (auth service reported temporary failure): user=<user@domain.com>, method=PLAIN, rip=149.28.X.X, lip=172.18.X.X, >
          
          girishG Offline
          girishG Offline
          girish
          Staff
          wrote on last edited by girish
          #4

          @JLX89 In the mail container does telnet 172.18.0.1 3002 work ? (that is the LDAP server) . It should look like this:

          # telnet 172.18.0.1 3002
          Trying 172.18.0.1...
          Connected to 172.18.0.1.
          Escape character is '^]'.
          
          
          J 1 Reply Last reply
          0
          • girishG girish

            @JLX89 In the mail container does telnet 172.18.0.1 3002 work ? (that is the LDAP server) . It should look like this:

            # telnet 172.18.0.1 3002
            Trying 172.18.0.1...
            Connected to 172.18.0.1.
            Escape character is '^]'.
            
            
            J Offline
            J Offline
            JLX89
            wrote on last edited by
            #5

            @girish Yeah, that seems to be working.

            telnet 172.18.0.1 3002
            Trying 172.18.0.1...
            Connected to 172.18.0.1.
            Escape character is '^]'.
            
            girishG 1 Reply Last reply
            0
            • J JLX89

              @girish Yeah, that seems to be working.

              telnet 172.18.0.1 3002
              Trying 172.18.0.1...
              Connected to 172.18.0.1.
              Escape character is '^]'.
              
              girishG Offline
              girishG Offline
              girish
              Staff
              wrote on last edited by
              #6

              @JLX89 can you check if supervisorctl restart dovecot inside mail container helps? Otherwise, if you write to us at support@cloudron.io , I can take a look. It's not clear why it cannot connect to the LDAP server. It's really just connecting internally ...

              J 1 Reply Last reply
              0
              • girishG girish

                @JLX89 can you check if supervisorctl restart dovecot inside mail container helps? Otherwise, if you write to us at support@cloudron.io , I can take a look. It's not clear why it cannot connect to the LDAP server. It's really just connecting internally ...

                J Offline
                J Offline
                JLX89
                wrote on last edited by
                #7

                @girish Thank you -- that actually seems to have solved the issue for now!

                1 Reply Last reply
                0
                • J JLX89 has marked this topic as solved on
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • Bookmarks
                • Search