diff --git a/python/install_py_bindings.sh b/python/install_py_bindings.sh index c145036fe..1b5c71cf6 100755 --- a/python/install_py_bindings.sh +++ b/python/install_py_bindings.sh @@ -3,4 +3,5 @@ set -ex cargo build -p deltachat_ffi --release +rm -rf build/ DCC_RS_DEV=`pwd`/.. pip install -e . diff --git a/python/tests/conftest.py b/python/tests/conftest.py index 4189b02a5..ff1d4425c 100644 --- a/python/tests/conftest.py +++ b/python/tests/conftest.py @@ -142,8 +142,10 @@ def wait_successful_IMAP_SMTP_connection(account): account._evlogger.get_matching("DC_EVENT_(IMAP|SMTP)_CONNECTED") if evt_name == "DC_EVENT_IMAP_CONNECTED": imap_ok = True + print("** IMAP OK", account) if evt_name == "DC_EVENT_SMTP_CONNECTED": smtp_ok = True + print("** SMTP OK", account) print("** IMAP and SMTP logins successful", account) diff --git a/src/dc_configure.rs b/src/dc_configure.rs index 1ec517cde..e93a33b3c 100644 --- a/src/dc_configure.rs +++ b/src/dc_configure.rs @@ -10,7 +10,6 @@ use crate::dc_strencode::*; use crate::dc_tools::*; use crate::imap::*; use crate::oauth2::*; -use crate::types::*; use crate::x::*; /* ****************************************************************************** diff --git a/src/smtp.rs b/src/smtp.rs index fb15da8b8..cc34fd34e 100644 --- a/src/smtp.rs +++ b/src/smtp.rs @@ -49,8 +49,6 @@ impl Smtp { /// Connect using the provided login params pub fn connect(&mut self, context: &Context, lp: *const dc_loginparam_t) -> usize { - info!(context, 0, "SMTP ***************** CONNECT"); - if lp.is_null() { return 0; }