TLS_REQCERT <level> Specifies what checks to perform on server certificates in a TLS session, if any. The <level> can be specified as one of the following keywords:
never The client will not request or check any server certificate.
allow The server certificate is requested. Ifno certificate is provided, the session proceeds normally. If a bad certificate is provided, it will be ignored and the session proceeds normally.
try The server certificate is requested. Ifno certificate is provided, the session proceeds normally. If a bad certificate is provided, the session is immediately terminated.
demand | hard These keywords are equivalent. The server certificate is requested. Ifno certificate is provided, or a bad certificate is provided, the session is immediately terminated. This is the default setting.