   MAIL transport settings?    The Question is:    ; How do I view and ultimately modify a users mail transport?   The Answer is :   I   You can view and modify your own mail transport using the SET TRANSPORT K   and SHOW TRANSPORT commands under the MAIL utility. There is no supported J   mechanism for (directly) viewing another user's MAIL transport settings.   I   Using a supported and documented approach, viewing and changing another I   user's transport can be accomplished indirectly.  With adequate OpenVMS E   privileges enabled (minimum CMKRNL), use a technique similar to the    following:   I     o First create a command procedure SET_TRANSPORT_SMTP.COM conntaining        the following lines:          $ MAIL       SET TRANSPORT SMTP%        $ EXIT   	       or:           $ MAIL       SHOW ALL       $ EXIT   ?     o Then from your privileged account, issue the DCL command:    F       $ SUBMIT/USER=target/LOG=logname/NOPRINT/KEEP SET_TRANSPORT_SMTP   J   Using an unsupported and undocumented approach and with adequate OpenVMSK   privileges, this information can also be gleaned directly from the system L   MAIL profile database SYS$SYSTEM:VMSMAIL_PROFILE.DATA.  The SEARCH commandK   or DCL file access can be used to search for the record associated with a G   particular user, and the transport read from the record -- look for a B   string ending with "%" near the end of the record.  For example:   ; $ SEARCH/FORM=DUMP SYS$SYSTEM:VMSMAIL_PROFILE.DATA GILLINGS P GILLINGS                       <SOH><NUL><STX><NUL><STX><NUL><STX><NUL><STX><NULP ><ETX><NUL><ETX><NUL><BEL><NUL>[.MAIL]<BS><NUL><ETX><NUL>TPU<HT><NUL><BS><NUL>TSP C$LN03<ENQ><NUL>.<NUL>Quidvis recte factum quamvis humile praeclarum<BEL><NUL><E
 NQ><NUL>SMTP%    (   This user's transport is set to SMTP%.   0  Answer written or last revised on  15-DEC-1999 