diff --git a/README.md b/README.md index c100cead1..4f0ec28ec 100644 --- a/README.md +++ b/README.md @@ -102,9 +102,6 @@ $ cargo build -p deltachat_ffi --release ## Debugging environment variables -- `DCC_IMAP_DEBUG`: if set IMAP protocol commands and responses will be - printed - - `DCC_MIME_DEBUG`: if set outgoing and incoming message will be printed - `RUST_LOG=repl=info,async_imap=trace,async_smtp=trace`: enable IMAP and diff --git a/src/lib.rs b/src/lib.rs index 5d36c6e7a..9427323a9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -104,8 +104,5 @@ pub mod accounts; /// if set imap/incoming and smtp/outgoing MIME messages will be printed pub const DCC_MIME_DEBUG: &str = "DCC_MIME_DEBUG"; -/// if set IMAP protocol commands and responses will be printed -pub const DCC_IMAP_DEBUG: &str = "DCC_IMAP_DEBUG"; - #[cfg(test)] mod test_utils;