Skip to content

Commit

Permalink
Added skip_ssl_verify setting to OX push driver
Browse files Browse the repository at this point in the history
  • Loading branch information
TitaniumHocker committed Dec 7, 2022
1 parent 3cb91e1 commit 1f9dcc3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/plugins/push-notification/push-notification-driver-ox.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ struct push_notification_driver_ox_config {

char *cached_ox_metadata;
time_t cached_ox_metadata_timestamp;

bool skip_ssl_verify;
};

/* This is data specific to an OX driver transaction. */
Expand All @@ -75,6 +77,8 @@ push_notification_driver_ox_init_global(
http_set.event_parent = user->event;
mail_user_init_ssl_client_settings(user, &ssl_set);
http_set.ssl = &ssl_set;
if (config->skip_ssl_verify)
http_set.ssl->verify_remote_cert = FALSE;

ox_global->http_client = http_client_init(&http_set);
}
Expand Down Expand Up @@ -110,6 +114,9 @@ push_notification_driver_ox_init(struct push_notification_driver_config *config,
dconfig->use_unsafe_username =
hash_table_lookup(config->config,
(const char *)"user_from_metadata") != NULL;
dconfig->skip_ssl_verify =
hash_table_lookup(config->config,
(const char*)"skip_ssl_verify") != NULL;

e_debug(dconfig->event, "Using URL %s", tmp);

Expand Down

0 comments on commit 1f9dcc3

Please sign in to comment.