- Mail encryption (when expected) - Introducer listing, adding and removing - Locals listing, adding and removing
18 lines
345 B
Bash
18 lines
345 B
Bash
#!/usr/bin/bash
|
|
|
|
# source some functions
|
|
. common.sh
|
|
|
|
test_header "Test encryption for certificate an a keyserver"
|
|
|
|
# There is a certificate for carol on the keyserver
|
|
# it's certified by an introducer
|
|
create_unix_user carol
|
|
send_test_mail carol@example.com
|
|
|
|
RESULT_CODE=$(expect_mail carol encrypted)
|
|
|
|
delete_unix_user carol
|
|
|
|
exit $RESULT_CODE
|