schleuder 3.5.0 → 3.5.1
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/README.md +7 -7
- data/Rakefile +1 -1
- data/db/migrate/20180723173900_add_deliver_selfsent_to_list.rb +1 -1
- data/lib/schleuder/plugins/key_management.rb +3 -3
- data/lib/schleuder/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bfc0ef3b48d1b6b251a2e169a4edeb2efe5c5050f607e28c8115d518687cfd0
|
|
4
|
+
data.tar.gz: 5aee2a3e9a3c5e91a14f3c797052a732cb970efc85c28e84e9c0a66a239cc694
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51e3e13d15f94c216d63590d2e3083aca69fc49e69e8a1e5d0c27e9c24f2ba138126723be707799bbce681d2e3ae99d6d47a7f3a30d736dc23fdceadfa594ad2
|
|
7
|
+
data.tar.gz: 4467545c1bce338f68cb375d4f923f4a4d5f1128333c66328071a87afeb3b557c753dce6f237979a3016ddb0db98d60eb96cf524d4c0880879805100c3478504
|
data/README.md
CHANGED
|
@@ -16,11 +16,11 @@ Requirements
|
|
|
16
16
|
* sqlite3
|
|
17
17
|
* openssl
|
|
18
18
|
|
|
19
|
-
*If you use Debian
|
|
19
|
+
*If you use Debian buster or CentOS 7, please have a look at the [installation docs](https://schleuder.org/schleuder/docs/server-admins.html#installation). We do provide packages for those platforms, which simplify the installation a lot.*
|
|
20
20
|
|
|
21
21
|
*🛈 A note regarding Ubuntu: All Ubuntu versions up to and including 17.10 don't meet the requirements with their packaged versions of gnupg! To run Schleuder on Ubuntu you currently have to install a more recent version of gnupg manually. Only Ubuntu 18.04 ("bionic") provides modern enough versions of Schleuder's requirements.*
|
|
22
22
|
|
|
23
|
-
On systems that base on Debian
|
|
23
|
+
On systems that base on Debian 10 ("buster"), install the dependencies via
|
|
24
24
|
|
|
25
25
|
apt-get install ruby-dev gnupg2 libgpgme-dev libsqlite3-dev libssl-dev build-essential
|
|
26
26
|
|
|
@@ -47,15 +47,15 @@ Additionally these **rubygems** are required (will be installed automatically un
|
|
|
47
47
|
Installing Schleuder
|
|
48
48
|
------------
|
|
49
49
|
|
|
50
|
-
1. Download [the gem](https://schleuder.org/download/schleuder-3.5.
|
|
50
|
+
1. Download [the gem](https://schleuder.org/download/schleuder-3.5.1.gem) and [the OpenPGP-signature](https://schleuder.org/download/schleuder-3.5.1.gem.sig) and verify:
|
|
51
51
|
```
|
|
52
52
|
gpg --recv-key 0xB3D190D5235C74E1907EACFE898F2C91E2E6E1F3
|
|
53
|
-
gpg --verify schleuder-3.5.
|
|
53
|
+
gpg --verify schleuder-3.5.1.gem.sig
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
2. If all went well install the gem:
|
|
57
57
|
```
|
|
58
|
-
gem install schleuder-3.5.
|
|
58
|
+
gem install schleuder-3.5.1.gem
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
3. Set up schleuder:
|
|
@@ -112,7 +112,7 @@ To execute the test suite run:
|
|
|
112
112
|
|
|
113
113
|
bundle exec rspec
|
|
114
114
|
|
|
115
|
-
Please note: Some of the specs use 'pgrep'. On systems that base on Debian
|
|
115
|
+
Please note: Some of the specs use 'pgrep'. On systems that base on Debian 10 ("buster") install it via
|
|
116
116
|
|
|
117
117
|
apt-get install procps
|
|
118
118
|
|
|
@@ -145,4 +145,4 @@ GNU GPL 3.0. Please see [LICENSE.txt](LICENSE.txt).
|
|
|
145
145
|
Alternative Download
|
|
146
146
|
--------------------
|
|
147
147
|
|
|
148
|
-
Alternatively to the gem-files you can download the latest release as [a tarball](https://schleuder.org/download/schleuder-3.5.
|
|
148
|
+
Alternatively to the gem-files you can download the latest release as [a tarball](https://schleuder.org/download/schleuder-3.5.1.tar.gz) and [its OpenPGP-signature](https://schleuder.org/download/schleuder-3.5.1.tar.gz.sig).
|
data/Rakefile
CHANGED
|
@@ -3,7 +3,7 @@ require_relative "lib/#{project}.rb"
|
|
|
3
3
|
|
|
4
4
|
@version = Schleuder::VERSION
|
|
5
5
|
@tagname = "#{project}-#{@version}"
|
|
6
|
-
@gpguid = '
|
|
6
|
+
@gpguid = 'B3D190D5235C74E1907EACFE898F2C91E2E6E1F3'
|
|
7
7
|
@filename_gem = "#{@tagname}.gem"
|
|
8
8
|
@filename_tarball = "#{@tagname}.tar.gz"
|
|
9
9
|
|
|
@@ -105,10 +105,10 @@ module Schleuder
|
|
|
105
105
|
private
|
|
106
106
|
|
|
107
107
|
def self.is_armored_key?(material)
|
|
108
|
-
return false unless /^-----BEGIN PGP PUBLIC KEY BLOCK
|
|
109
|
-
return false unless /^-----END PGP PUBLIC KEY BLOCK
|
|
108
|
+
return false unless /^-----BEGIN PGP PUBLIC KEY BLOCK-----\r?$/ =~ material
|
|
109
|
+
return false unless /^-----END PGP PUBLIC KEY BLOCK-----\r?$/ =~ material
|
|
110
110
|
|
|
111
|
-
lines = material.split(
|
|
111
|
+
lines = material.split(/\r?\n/).reject(&:empty?)
|
|
112
112
|
# remove header
|
|
113
113
|
lines.shift
|
|
114
114
|
# remove tail
|
data/lib/schleuder/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: schleuder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- schleuder dev team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gpgme
|
|
@@ -263,7 +263,7 @@ dependencies:
|
|
|
263
263
|
description: |-
|
|
264
264
|
Schleuder is a group's email-gateway: subscribers can exchange encrypted emails among themselves, receive emails from non-subscribers and send emails to non-subscribers via the list.
|
|
265
265
|
|
|
266
|
-
(Please note: For some platforms there's a better way of installing Schleuder than `gem install`. See <https://schleuder.org/docs
|
|
266
|
+
(Please note: For some platforms there's a better way of installing Schleuder than `gem install`. See <https://schleuder.org/schleuder/docs/server-admins.html#installation> for details.)
|
|
267
267
|
email: team@schleuder.org
|
|
268
268
|
executables:
|
|
269
269
|
- schleuder
|