From e518dc3331d54a4b5ddbc5bcbc95f5bee834c97e Mon Sep 17 00:00:00 2001 From: bjoern Date: Wed, 8 Sep 2021 16:05:38 +0200 Subject: [PATCH] clarify dc_is_configured() (#2668) --- deltachat-ffi/deltachat.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index c540ee47f..1b83c6ead 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -586,6 +586,14 @@ void dc_configure (dc_context_t* context); * Typically, for unconfigured accounts, the user is prompted * to enter some settings and dc_configure() is called in a thread then. * + * A once successfully configured context cannot become unconfigured again; + * if a subsequent call to dc_configure() fails, + * the prior configuration is used. + * + * However, of course, also a configuration may stop working, + * as eg. the password was changed on the server. + * To check that use eg. dc_get_connectivity(). + * * @memberof dc_context_t * @param context The context object. * @return 1=context is configured and can be used;