Ftps with self signed certificate

Hi,
i am using nodered-contrib-ftp-client to send files to ftps server.
This server use selfsigned certificate.
This is returning an 'Error: self-signed certificate".
how to solve that ?
Here is a test exemple:

[
    {
        "id": "e2299cfa34e269e6",
        "type": "debug",
        "z": "c6ca1cc93c0319f7",
        "name": "debug 8",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "true",
        "targetType": "full",
        "statusVal": "",
        "statusType": "auto",
        "x": 460,
        "y": 320,
        "wires": []
    },
    {
        "id": "ca893cd7bfc18d6c",
        "type": "inject",
        "z": "c6ca1cc93c0319f7",
        "name": "",
        "props": [
            {
                "p": "operation",
                "v": "LIST",
                "vt": "str"
            },
            {
                "p": "host",
                "v": "docker",
                "vt": "str"
            },
            {
                "p": "port",
                "v": "21",
                "vt": "num"
            },
            {
                "p": "secure",
                "v": "explicit",
                "vt": "str"
            },
            {
                "p": "user",
                "v": "user",
                "vt": "str"
            },
            {
                "p": "password",
                "v": "123456",
                "vt": "str"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "x": 130,
        "y": 320,
        "wires": [
            [
                "b4875d4a96269eb0"
            ]
        ]
    },
    {
        "id": "b4875d4a96269eb0",
        "type": "ftp",
        "z": "c6ca1cc93c0319f7",
        "name": "",
        "x": 290,
        "y": 320,
        "wires": [
            [
                "e2299cfa34e269e6"
            ]
        ]
    }
]

You can try using the msg.secureOptions and set the ca to the cert present by the ftp server.
I dont't now how this work, but here it is mentioned that it can be a string

msg.secureOptions = {
   ca: <<PEM String>>)
};

node-red:

Here is the init of the tls connection of the node-ftp package: