Announcement

Collapse
No announcement yet.

IMAP server address

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • IMAP server address

    All,

    I've been able to install Hyperion Build: 6.4.2-0 and all seems well. I am able to log into the admin gui, etc., etc.

    One problem I am having though (I'm evaluating OX), is how to get OX to use an Imap server other than localhost?

    I have set this in the database:

    Code:
    mysql> select cid,id,imapServer,ImapLogin from user;
    +-----+----+-------------+-----------+
    | cid | id | imapServer  | ImapLogin |
    +-----+----+-------------+-----------+
    |   1 |  2 | 10.20.3.200 | oxadmin   | 
    +-----+----+-------------+-----------+
    1 row in set (0.00 sec)
    As well I have tried these settings in imap.properties:

    Code:
    # Sets the implementing class to Global (global login) or User (user-specific login)
    imapLoginType=user
    
    # The master password for IMAP Server. Only takes effect when property "imapLoginType" is set to "global"
    imapMasterPassword=secret
    
    # IMAP Server with or without IMAP Port: e.g. 192.168.32.133:8143
    imapServer=10.20.3.200
    But the groupware component still wants to connect to localhost, as per tetherreal:

    Code:
      0.000000    127.0.0.1 -> 127.0.0.1    TCP 1575 > 143 [SYN] Seq=0 Win=32792 Len=0 MSS=16396 TSV=4075806332 TSER=0 WS=8
      0.000011    127.0.0.1 -> 127.0.0.1    TCP 143 > 1575 [RST, ACK] Seq=1 Ack=1 Win=0 Len=0
      4.530137    127.0.0.1 -> 127.0.0.1    TCP 1576 > 143 [SYN] Seq=0 Win=32792 Len=0 MSS=16396 TSV=4075810864 TSER=0 WS=8
      4.530149    127.0.0.1 -> 127.0.0.1    TCP 143 > 1576 [RST, ACK] Seq=1 Ack=1 Win=0 Len=0
    Any advice? For load reasons I want the imap server to be on a separate server/host from the application server.

    Thanks

  • #2
    K, looks like you have to include the port number:

    imapServer = 10.20.3.200:143

    vs

    imapServer = 10.20.3.200

    Comment

    Working...
    X