@@ -21,7 +21,7 @@ def test_getinfo(self, acfactory):
21
21
d = ac1 .get_info ()
22
22
assert d ["arch" ]
23
23
assert d ["number_of_chats" ] == "0"
24
- assert d ["bcc_self" ] == "1 "
24
+ assert d ["bcc_self" ] == "0 "
25
25
26
26
def test_is_not_configured (self , acfactory ):
27
27
ac1 = acfactory .get_unconfigured_account ()
@@ -43,7 +43,7 @@ def test_has_savemime(self, acfactory):
43
43
def test_has_bccself (self , acfactory ):
44
44
ac1 = acfactory .get_unconfigured_account ()
45
45
assert "bcc_self" in ac1 .get_config ("sys.config_keys" ).split ()
46
- assert ac1 .get_config ("bcc_self" ) == "1 "
46
+ assert ac1 .get_config ("bcc_self" ) == "0 "
47
47
48
48
def test_selfcontact_if_unconfigured (self , acfactory ):
49
49
ac1 = acfactory .get_unconfigured_account ()
@@ -405,6 +405,9 @@ def test_one_account_send_bcc_setting(self, acfactory, lp):
405
405
wait_successful_IMAP_SMTP_connection (ac1 )
406
406
wait_configuration_progress (ac1 , 1000 )
407
407
408
+ lp .sec ("ac1: setting bcc_self=1" )
409
+ ac1 .set_config ("bcc_self" , "1" )
410
+
408
411
lp .sec ("send out message with bcc to ourselves" )
409
412
msg_out = chat .send_text ("message2" )
410
413
ev = ac1 ._evlogger .get_matching ("DC_EVENT_MSGS_CHANGED" )
0 commit comments