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:
As well I have tried these settings in imap.properties:
But the groupware component still wants to connect to localhost, as per tetherreal:
Any advice? For load reasons I want the imap server to be on a separate server/host from the application server.
Thanks
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)
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
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
Thanks
Comment