haraka-plugin-karma 2.1.3 → 2.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{Changes.md → CHANGELOG.md} +35 -29
- package/README.md +13 -24
- package/index.js +217 -188
- package/package.json +20 -13
- package/test/karma.js +228 -124
- package/.codeclimate.yml +0 -25
- package/.eslintrc.yaml +0 -24
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -29
- package/.github/ISSUE_TEMPLATE/custom.md +0 -10
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- package/.github/workflows/ci.yml +0 -19
- package/.github/workflows/codeql.yml +0 -14
- package/.github/workflows/publish.yml +0 -16
- package/.gitmodules +0 -3
package/.eslintrc.yaml
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
env:
|
|
2
|
-
node: true
|
|
3
|
-
es6: true
|
|
4
|
-
mocha: true
|
|
5
|
-
es2020: true
|
|
6
|
-
|
|
7
|
-
plugins: [ haraka ]
|
|
8
|
-
|
|
9
|
-
extends: [ eslint:recommended, plugin:haraka/recommended ]
|
|
10
|
-
|
|
11
|
-
root: true
|
|
12
|
-
|
|
13
|
-
rules:
|
|
14
|
-
indent: [2, 2, { SwitchCase: 1 } ]
|
|
15
|
-
semi: [ error, never ]
|
|
16
|
-
semi-style: [ error, last ]
|
|
17
|
-
|
|
18
|
-
globals:
|
|
19
|
-
OK: true
|
|
20
|
-
CONT: true
|
|
21
|
-
DENY: true
|
|
22
|
-
DENYSOFT: true
|
|
23
|
-
DENYDISCONNECT: true
|
|
24
|
-
DENYSOFTDISCONNECT: true
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Create a report to help us improve
|
|
4
|
-
title: ''
|
|
5
|
-
labels: ''
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**System Info:**
|
|
11
|
-
|
|
12
|
-
Please report your OS, Node version, and Haraka version by running this shell script on your Haraka server and replacing this section with the output.
|
|
13
|
-
|
|
14
|
-
echo "Haraka | $(haraka -v)"; echo " --- | :--- "; echo "Node | $(node -v)"; echo "OS | $(uname -a)"; echo "openssl | $(openssl version)"
|
|
15
|
-
|
|
16
|
-
**Describe the bug**
|
|
17
|
-
A clear and concise description of what the bug is.
|
|
18
|
-
|
|
19
|
-
**Expected behavior**
|
|
20
|
-
A clear and concise description of what you expected to happen.
|
|
21
|
-
|
|
22
|
-
**Observed behavior**
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
**Steps To Reproduce**
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
**Additional context**
|
|
29
|
-
Add any other context about the problem here.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Feature request
|
|
3
|
-
about: Suggest an idea for this project
|
|
4
|
-
title: ''
|
|
5
|
-
labels: ''
|
|
6
|
-
assignees: ''
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Is your feature request related to a problem? Please describe.**
|
|
11
|
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
-
|
|
13
|
-
**Describe the solution you'd like**
|
|
14
|
-
A clear and concise description of what you want to happen.
|
|
15
|
-
|
|
16
|
-
**Describe alternatives you've considered**
|
|
17
|
-
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
-
|
|
19
|
-
**Additional context**
|
|
20
|
-
Add any other context or screenshots about the feature request here.
|
package/.github/workflows/ci.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
name: CI
|
|
2
|
-
|
|
3
|
-
on: [ push, pull_request ]
|
|
4
|
-
|
|
5
|
-
env:
|
|
6
|
-
CI: true
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
|
|
10
|
-
lint:
|
|
11
|
-
uses: haraka/.github/.github/workflows/lint.yml@master
|
|
12
|
-
|
|
13
|
-
ubuntu:
|
|
14
|
-
needs: [ lint ]
|
|
15
|
-
uses: haraka/.github/.github/workflows/ubuntu.yml@master
|
|
16
|
-
|
|
17
|
-
windows:
|
|
18
|
-
needs: [ lint ]
|
|
19
|
-
uses: haraka/.github/.github/workflows/windows.yml@master
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
name: CodeQL
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ master ]
|
|
6
|
-
pull_request:
|
|
7
|
-
# The branches below must be a subset of the branches above
|
|
8
|
-
branches: [ master ]
|
|
9
|
-
schedule:
|
|
10
|
-
- cron: '18 7 * * 4'
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
codeql:
|
|
14
|
-
uses: haraka/.github/.github/workflows/codeql.yml@master
|
package/.gitmodules
DELETED