SFTP Delivery
Variables
For the SFTP delivery method, use the following variables from w_config_custom.inc:Â
SFTP_URL – the SFTP host name or IP.
SFTP_USER – the user name.
SFTP_PWD – the password. Can be encrypted (use SFTP_PWD_ISENCRYPTED flag with correct value)
SFTP_PWD_ISENCRYPTED - encrypted flag. Possible values are Y/N. The Default is N.
SFTP_INSECURE  - flag for insecure connection. IF YES the public/private keys verification is skipped, and only user/password is used. The Default is YES.
SFTP_PRIVATEKEY – private key file path. Can be absolute path and relative to tpe/dynamic/msgcenter/certdir folder.
SFTP_PUBLICKEYÂ - public key file path. Can be absolute path and relative to tpe/dynamic/msgcenter/certdir folder.
SFTP_PRIVATEKEYPASSWORD – private key password. Can be encrypted (use SFTP_PWD_ISENCRYPTED flag with correct value).
SFTP_EXTRACT_LOCATIONÂ - location for extract files.
SFTP_ACK_LOCATION – location for ack files.
SFTP_REPLY_LOCATION – location for tsr files.
On this page
Minimal Working Configuration Examples
Insecure connection:
<COL TAG="SFTP_URL" EXPRESSION="'inno-mlperfapp01.eagleinvsys.com'" USERDESCRIPTION="EA SFTP URL"/>
<COL TAG="SFTP_USER" EXPRESSION="'eagle'" USERDESCRIPTION="EA SFTP USER"/>
<COL TAG="SFTP_PWD" EXPRESSION="'*****'" USERDESCRIPTION="EA PASSWORD"/>
Secure connection:
<COL TAG="SFTP_URL" EXPRESSION="'inno-mlperfapp01.eagleinvsys.com'" USERDESCRIPTION="EA SFTP URL"/>
<COL TAG="SFTP_USER" EXPRESSION="'eagle'" USERDESCRIPTION="EA SFTP USER"/>
<COL TAG="SFTP_PRIVATEKEY" EXPRESSION="'private_key.ppk'" USERDESCRIPTION="EA PRIVATE KEY"/>
<COL TAG="SFTP_INSECURE" EXPRESSION="'NO'" />