midi-smtp-server 2.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE.txt +21 -0
- data/README.md +1109 -0
- data/lib/midi-smtp-server/exceptions.rb +301 -0
- data/lib/midi-smtp-server/tls-transport.rb +92 -0
- data/lib/midi-smtp-server/version.rb +18 -0
- data/lib/midi-smtp-server.rb +1248 -0
- metadata +55 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0f0f8d80f7c51da13b08b7c89ffd94e57ba4e8681a59dfbf74df0fd53b8af3aa
|
4
|
+
data.tar.gz: a9b3a47cc768f6a7e161c18962ff2fc750d4757103e5fcbccd818d60a9f839d8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b4d19cbfcc71689d83a3b505b14372fcb498bf6341c8386210650d18a0296a89b380831a9f6bca46b5266d196a77b3bfd12fdc43e9d8c30c01d565c34e1131c0
|
7
|
+
data.tar.gz: c0704100f56b866ea060c181ad12e342b5dbd7f6c621b1f8f3b75c26b7c53e82facc6150725ee9901c1a9853aa2c2e88f46c2fb20ae2d86c1c0b6bd66ced7b92
|
data/MIT-LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 - 2020 Tom Freudenberg
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|