Added insecure warning to import card
This commit is contained in:
@@ -98,7 +98,7 @@ public class EmailKeyHelper {
|
||||
Set<ImportKeysListEntry> keys = new HashSet<>();
|
||||
try {
|
||||
for (ImportKeysListEntry key : keyServer.search(mail, proxy)) {
|
||||
if (key.isRevokedOrExpired()) continue;
|
||||
if (key.isRevokedOrExpiredOrInsecure()) continue;
|
||||
for (String userId : key.getUserIds()) {
|
||||
if (userId.toLowerCase().contains(mail.toLowerCase(Locale.ENGLISH))) {
|
||||
keys.add(key);
|
||||
|
||||
Reference in New Issue
Block a user