Saturday, August 13, 2011

Steps to perform the telnet SMTP test


Steps to perform the telnet SMTP test

1) Identify mailer running node ( which CM node its running )

select target_node
from fnd_concurrent_queues where concurrent_queue_name like 'WFMLRSVC%';

SELECT b.component_name,
       c.parameter_name,
       a.parameter_value
FROM fnd_svc_comp_param_vals a,
     fnd_svc_components b,
     fnd_svc_comp_params_b c
WHERE b.component_id = a.component_id
     AND b.component_type = c.component_type
     AND c.parameter_id = a.parameter_id
     AND c.encrypted_flag = 'N'
     AND b.component_name like '%Mailer%'
     AND c.parameter_name in ('OUTBOUND_SERVER', 'REPLYTO')
ORDER BY c.parameter_name;

2) From mailer node

telnet [outbound_server_name] 25

Clear steps

Ref ID : ID 753845.1


UR's Key Run ;-) 

No comments:

Post a Comment