mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-05 19:42:04 +02:00
probing STARTTLS on port 25
This commit is contained in:
parent
7121bed415
commit
a2c04279f3
1 changed files with 7 additions and 1 deletions
|
@ -1001,7 +1001,13 @@ void dc_job_do_DC_JOB_CONFIGURE_IMAP(dc_context_t* context, dc_job_t* job)
|
||||||
{ char* r = dc_loginparam_get_readable(param); dc_log_info(context, 0, "Trying: %s", r); free(r); }
|
{ char* r = dc_loginparam_get_readable(param); dc_log_info(context, 0, "Trying: %s", r); free(r); }
|
||||||
|
|
||||||
if (!dc_smtp_connect(context->smtp, param)) {
|
if (!dc_smtp_connect(context->smtp, param)) {
|
||||||
goto cleanup;
|
PROGRESS(860)
|
||||||
|
|
||||||
|
param->send_port = TYPICAL_SMTP_PLAIN_PORT;
|
||||||
|
{ char* r = dc_loginparam_get_readable(param); dc_log_info(context, 0, "Trying: %s", r); free(r); }
|
||||||
|
if (!dc_smtp_connect(context->smtp, param)) {
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue