mirror of
https://github.com/chatmail/core.git
synced 2026-05-08 17:36:29 +03:00
Docs
This commit is contained in:
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### API-Changes
|
||||||
|
- add `debug_logging` setting #3296
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
- Disable Autocrypt & Authres-checking for mailing lists,
|
- Disable Autocrypt & Authres-checking for mailing lists,
|
||||||
because they don't work well with mailing lists #3765
|
because they don't work well with mailing lists #3765
|
||||||
|
|||||||
@@ -407,6 +407,9 @@ char* dc_get_blobdir (const dc_context_t* context);
|
|||||||
* to not mess up with non-delivery-reports or read-receipts.
|
* to not mess up with non-delivery-reports or read-receipts.
|
||||||
* 0=no limit (default).
|
* 0=no limit (default).
|
||||||
* Changes affect future messages only.
|
* Changes affect future messages only.
|
||||||
|
* - `debug_logging` = Let the core save all events to the database. You should expose this as an advanced
|
||||||
|
* setting to the user. When they enable it, the core automatically adds a webxdc
|
||||||
|
* message to the device chat where the user can see the log messages.
|
||||||
* - `ui.*` = All keys prefixed by `ui.` can be used by the user-interfaces for system-specific purposes.
|
* - `ui.*` = All keys prefixed by `ui.` can be used by the user-interfaces for system-specific purposes.
|
||||||
* The prefix should be followed by the system and maybe subsystem,
|
* The prefix should be followed by the system and maybe subsystem,
|
||||||
* e.g. `ui.desktop.foo`, `ui.desktop.linux.bar`, `ui.android.foo`, `ui.dc40.bar`, `ui.bot.simplebot.baz`.
|
* e.g. `ui.desktop.foo`, `ui.desktop.linux.bar`, `ui.android.foo`, `ui.dc40.bar`, `ui.bot.simplebot.baz`.
|
||||||
|
|||||||
@@ -197,7 +197,11 @@ pub enum Config {
|
|||||||
///
|
///
|
||||||
/// See `crate::authres::update_authservid_candidates`.
|
/// See `crate::authres::update_authservid_candidates`.
|
||||||
AuthservIdCandidates,
|
AuthservIdCandidates,
|
||||||
|
|
||||||
// TODO docs, deltachat.h
|
// TODO docs, deltachat.h
|
||||||
|
/// Let the core save all events to the database. You should expose this as an advanced
|
||||||
|
/// setting to the user. When they enable it, the core automatically adds a webxdc
|
||||||
|
/// message to the device chat where the user can see the log messages.
|
||||||
#[strum(props(default = "0"))]
|
#[strum(props(default = "0"))]
|
||||||
DebugLogging,
|
DebugLogging,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user