files.com 1.1.48 → 1.1.49
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.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/as2_partner.md +1 -1
- data/lib/files.com/models/as2_partner.rb +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62ffe766397a8a89cc19a752a643c1c441a3fb701ab6b51866fdf2fb2a165ca4
|
|
4
|
+
data.tar.gz: eca84037c412e2e99723b2138cac95553311b81d52ff9dc2b3ebbc7dfea03a7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f56e2155cc61b60d2e18108b14b239436246cb7309c53d86340782597c9ad9f86f54f86d2bece6106ec6f6781b785c4c5b020c54b2fa03d2ffeefe41674a165a
|
|
7
|
+
data.tar.gz: 28595ea44b467bfc32ca25d0a4dc2d51040573da41823e1285dd819e05d26c3e9375f204556c4d5dcb4f307761d2c518ca194ce3b2c54e72a4ab828a82534d42
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.49
|
data/docs/as2_partner.md
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
* `name` (string): The partner's formal AS2 name.
|
|
27
27
|
* `uri` (string): Public URI for sending AS2 message to.
|
|
28
28
|
* `server_certificate` (string): Remote server certificate security setting
|
|
29
|
-
* `mdn_validation_level` (string): MDN Validation Level
|
|
29
|
+
* `mdn_validation_level` (string): MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
|
30
30
|
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
|
31
31
|
* `hex_public_certificate_serial` (string): Serial of public certificate used for message security in hex format.
|
|
32
32
|
* `public_certificate_md5` (string): MD5 hash of public certificate used for message security.
|
|
@@ -54,7 +54,7 @@ module Files
|
|
|
54
54
|
@attributes[:server_certificate] = value
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
-
# string - MDN Validation Level
|
|
57
|
+
# string - MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
|
58
58
|
def mdn_validation_level
|
|
59
59
|
@attributes[:mdn_validation_level]
|
|
60
60
|
end
|
data/lib/files.com/version.rb
CHANGED