Previous | Contents | Index |
If you are upgrading from an earlier version of PMDF and have been using one of PMDF's older single-threaded, TCP/IP-package-specific, TCP/IP channels, you must convert to using the new, higher performance multithreaded TCP/IP channel as the old single-threaded channels are no longer provided. The steps in converting to using the multithreaded SMTP server are as follows:
PMDF_TABLE:pmdf.cnf
, by converting any old xtcp_* channels to tcp_* channels. For
instance, if you previously had channel definitions of
ptcp_local smtp single_sys mx PTCP-DAEMON ptcp_internal smtp single_sys mx PTCP-INTERNAL |
tcp_local smtp single_sys mx PTCP-DAEMON tcp_internal smtp single_sys mx PTCP-INTERNAL |
$ PMDF STARTUP DISPATCHER |
PMDF_QUEUE:[xtcp_*]
directories as long as the old processes continue to run. If you see any such message files showing up, then to get such messages delivered you need to manually move the message files to the corresponding new PMDF_QUEUE:[tcp_*]
directories, making sure to change the filename slightly in the process (say from *.00
to *.01
), and issue the command:
$ PMDF CACHE/SYNCH |
Disabling a PMDF UTCP SMTP server
To disable a previous PMDF UTCP channel's SMTP server, issue the commands:
$ UCX UCX> DISABLE SERVICE SMTP UCX> SET NOSERVICE SMTP UCX> SET CONFIGURATION DISABLE SERVICE SMTP UCX> EXIT |
$ @PMDF_COM:start_ucx_smtpd.com |
Disabling a PMDF PTCP SMTP Server
To disable a previous PMDF PTCP's channel SMTP server, issue the commands:
$ RUN TCPWARE:netcu NETCU REMOVE SERVICE 25 TCP NETCU EXIT |
$ @TCPWARE:CNFNET TCP |
Do you want to use the SMTP Mail Transfer Agent? |
When you have disabled the SMTP server native to Process Software TCPware, or a previous PMDF PTCP channel, TCPware should then be shutdown and restarted with the commands:
$ @TCPWARE:shutnet.com $ @TCPWARE:startnet.com |
Disabling a PMDF MTCP SMTP Server
To disable a previous PMDF MTCP channel's SMTP server, issue the commands:
$ MULTINET CONFIGURE/SERVERS SERVER-CONFIG> DISABLE SMTP SERVER-CONFIG> RESTART SERVER-CONFIG> EXIT |
Disabling a PMDF WTCP SMTP Server
To disable a previous PMDF WTCP channel's SMTP server, edit the PathWay Access servers.dat
database and comment out the SMTP service definition. For instance,
such a commented out definition might appear as follows, if PMDF
previously had been using a single threaded PathWay TCP/IP channel:
# SMTP # service-name SMTP # program PMDF_EXE:WTCP_SLAVE.EXE # socket-type SOCK_STREAM # socket-options SO_ACCEPTCONN | SO_KEEPALIVE # socket-address AF_INET , 25 # working-set 1024 # maxservers 4 # priority 4 # INIT TCP_Init # LISTEN TCP_Listen # CONNECTED TCP_Connected # SERVICE Run_Program |
$ @TWG$TCP:[NETDIST.MISC]INETSERV.COM |
Previous | Next | Contents | Index |