SEARCH

Custom Search

Friday, August 6, 2010

Configuring Profile Parameters (tcode RZ10)

Configuring Profile Parameters (tcode RZ10)

You must adapt the SAP Web Application Server’s profile if the SMTP functionality is to be used. The SAPconnect send job can only be scheduled for servers on which SMTP is active, so ideally you should activate SMTP on all of the SAP system’s application servers.

You must set the profile parameters below. The placeholder <*> stands for the sequence number (starting with zero) of parameters that occur several times.

* icm/plugin_<*> = PROT=SMTP,PLG=

This loads the SMTP plug-in. It is a dynamic library that implements the SMTP protocol. specifies the file name of the SMTP plug-in. The program is located in the execution directory of the SAP Web Application Server instance, has the name smtpplugin and the extension typical for your operating system (.so, .dll, and so on).

* icm/server_port_<*> = PROT=SMTP,PORT=

This opens a TCP/IP port for the reception of mails by the SMTP plug-in. specifies the number of the port that is to be used. This port must not be occupied by any other program on this host. If no mails (including status notifications) are to be received in this SAP system, you can set to 0.

You can use TIMEOUT to define an optional maximum time (in seconds) that is to be waited for a response from the mail server.

* is/SMTP/virt_host_<*> = :,,...;

This defines a virtual mail host for the reception of mails. If all inbound mails (including status notifications) are to be received and processed in a single client of the SAP system, this parameter is not required and is/SMTP/virt_host_0 = *:*; is taken as the default. If several clients are to receive, a virtual mail host must be created for every client. specifies the name of the host to which inbound mails are addressed. You can specify * here if the mails are to be distributed independently of the host addressed. specifies the number of a port to which inbound mails are addressed.

Under UNIX, the profile parameters could be:

rdisp/start_icman = true

icm/plugin_0 = PROT=HTTP,PLG=./httpplugin.so

icm/plugin_1 = PROT=HTTPS,PLG=./httpplugin.so

icm/plugin_2 = PROT=SMTP,PLG=./smtpplugin.so

icm/server_port_0 = PROT=HTTP,PORT=1080

icm/server_port_1 = PROT=HTTPS,PORT=1443

icm/server_port_2 = PROT=SMTP,PORT=25000,TIMEOUT=180

icm/server_port_3 = PROT=SMTP,PORT=25001,TIMEOUT=180

is/SMTP/virt_host_0 = *:25000;

is/SMTP/virt_host_1 = *:25001;

No comments:

Post a Comment