configuring  OCS  Mail SMTP port ,  POP port

 

You may install Oracle Collaboration suite successfully, but when you try to send an email, you end up with error.

On of the reason is that the SMTP port is not configured.  Oracle Collaboration Suite uses oracle Listener to manage the SMTP, POP,etc Ports

 

What you need to do is that make sure that you start the listener that is defined in the Oracle Collaboration suite mid-tier installation.

The following is the listener.ora file found

$ORACLE_OCS_MID/network/admin

LISTENER_ES =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = mid.dbserver.realsoft.com))
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbserver.realsoft.com)(PORT = 25))
(PRESENTATION = ESSMI)
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbserver.realsoft.com)(PORT = 143))
(PRESENTATION = IMAP)
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbserver.realsoft.com)(PORT = 110))
(PRESENTATION = POP)
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = dbserver.realsoft.com)(PORT = 119))
(PRESENTATION = ESNNI)
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCPS)(HOST = dbserver.realsoft.com)(PORT = 993))
(PRESENTATION = IMAPSSL)
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCPS)(HOST = dbserver.realsoft.com)(PORT = 995))
(PRESENTATION = POPSSL)
)
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCPS)(HOST = dbserver.realsoft.com)(PORT = 563))
(PRESENTATION = ESNNISSL)
)
)

Refer to documents on how to start the listener, for example

# tnslsnr listener_es   (after setting the ORACLE_HOME correctly to the OCS mid tier)

~
~
~
~