| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1/root/proc/thread-self/root/usr/include/dovecot/ |
Upload File : |
#ifndef SSL_SETTINGS_H
#define SSL_SETTINGS_H
struct ssl_iostream_settings;
struct ssl_settings {
pool_t pool;
const char *ssl_client_ca_file;
const char *ssl_client_ca_dir;
const char *ssl_client_cert_file;
const char *ssl_client_key_file;
const char *ssl_client_key_password;
const char *ssl_cipher_list;
const char *ssl_cipher_suites;
const char *ssl_curve_list;
const char *ssl_min_protocol;
const char *ssl_crypto_device;
const char *ssl_options;
const char *ssl_peer_certificate_fingerprint_hash;
bool ssl_client_require_valid_cert;
/* These are derived from ssl_options, not set directly */
struct {
bool compression;
bool tickets;
} parsed_opts;
};
struct ssl_server_settings {
pool_t pool;
const char *ssl;
const char *ssl_server_ca_file;
const char *ssl_server_cert_file;
const char *ssl_server_alt_cert_file;
const char *ssl_server_key_file;
const char *ssl_server_alt_key_file;
const char *ssl_server_key_password;
const char *ssl_server_dh_file;
const char *ssl_server_cert_username_field;
const char *ssl_server_prefer_ciphers;
const char *ssl_server_request_client_cert;
bool ssl_server_require_crl;
/* parsed: */
struct {
bool request_client_cert;
bool verify_client_cert;
} parsed_opts;
};
extern const struct setting_parser_info ssl_setting_parser_info;
extern const struct setting_parser_info ssl_server_setting_parser_info;
extern const struct ssl_settings ssl_default_settings;
int ssl_client_settings_get(struct event *event,
const struct ssl_settings **set_r,
const char **error_r);
int ssl_server_settings_get(struct event *event,
const struct ssl_settings **set_r,
const struct ssl_server_settings **server_set_r,
const char **error_r);
void ssl_client_settings_to_iostream_set(
const struct ssl_settings *ssl_set,
const struct ssl_iostream_settings **set_r);
void ssl_server_settings_to_iostream_set(
const struct ssl_settings *ssl_set,
const struct ssl_server_settings *ssl_server_set,
const struct ssl_iostream_settings **set_r);
#endif