Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
enigmail
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Labels
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
enigmail
enigmail
Commits
7fedc69a
Commit
7fedc69a
authored
Dec 04, 2018
by
Patrick Brunschwig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug with not found keys
parent
cbddf125
Pipeline
#38935455
passed with stage
in 3 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
package/rules.jsm
package/rules.jsm
+2
-3
No files found.
package/rules.jsm
View file @
7fedc69a
...
...
@@ -329,7 +329,6 @@ var EnigmailRules = {
}
//this.DEBUG_EmailList("openList", openList);
let addrKeysList = []; // NEW: list of found email addresses and their associated keys
let addrTempNotFound = []; // NEW: temporary list of email addresses
let addrNoKeyList = []; // NEW: final list of email addresses that have no key according to rules
// process recipient rules
...
...
@@ -363,7 +362,7 @@ var EnigmailRules = {
rule.encrypt = node.getAttribute("encrypt");
rule.pgpMime = node.getAttribute("pgpMime");
this.mapRuleToKeys(rule,
openList, flags, addrKeysList, addr
TempNotFound
, false);
openList, flags, addrKeysList, addr
NoKeyList
, false);
}
// no negate rule handling (turned off in dialog)
} catch (ex) {
...
...
@@ -391,7 +390,7 @@ var EnigmailRules = {
rule.encrypt = node.getAttribute("encrypt");
rule.pgpMime = node.getAttribute("pgpMime");
this.mapRuleToKeys(rule,
openList, flags, addr
TempNotFound
, addrNoKeyList, true);
openList, flags, addr
KeysList
, addrNoKeyList, true);
}
// no negate rule handling (turned off in dialog)
} catch (ex) {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment