- Mail encryption (when expected) - Introducer listing, adding and removing - Locals listing, adding and removing
17 lines
334 B
Bash
17 lines
334 B
Bash
#!/usr/bin/bash
|
|
|
|
# source some functions
|
|
. common.sh
|
|
|
|
test_header "Simple: Test encryption for unavailable certificate"
|
|
|
|
# There is no authenticated certificate for alice in the cert store
|
|
create_unix_user alice
|
|
send_test_mail alice@example.com
|
|
|
|
RESULT_CODE=$(expect_mail alice unencrypted)
|
|
|
|
delete_unix_user alice
|
|
|
|
exit $RESULT_CODE
|