schleuder 3.5.0 → 3.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49f682bc409302cde8907906dbbbab0238d4e404748874b5c3b263806b70abbe
4
- data.tar.gz: c47b37fc7c1dede5b95bd396ceef0642cf5061af574a589b84497e01d1f7dcf8
3
+ metadata.gz: 9bfc0ef3b48d1b6b251a2e169a4edeb2efe5c5050f607e28c8115d518687cfd0
4
+ data.tar.gz: 5aee2a3e9a3c5e91a14f3c797052a732cb970efc85c28e84e9c0a66a239cc694
5
5
  SHA512:
6
- metadata.gz: 42706627c3b2ea15d6e735cc28fcaa34a4bcd4cf58bb6789edd5ce83ba8033e10259a16cd61e06d5d2a25f01aa55a25f9a03073a5a03683cab2dc093a04e1103
7
- data.tar.gz: b5b784eafd81435118bac61ce089d36e45e0932c46816aa46ae3da199fa96f9cd9c4e31c9dea58eba93d37de707d121a3ee69949388096c8b4330b7498b9a4ad
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 stretch or CentOS 7, please have a look at the [installation docs](https://schleuder.org/docs/#installation). We do provide packages for those platforms, which simplify the installation a lot.*
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 9 ("stretch"), install the dependencies via
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.0.gem) and [the OpenPGP-signature](https://schleuder.org/download/schleuder-3.5.0.gem.sig) and verify:
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.0.gem.sig
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.0.gem
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 9 ("stretch") install it via
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.0.tar.gz) and [its OpenPGP-signature](https://schleuder.org/download/schleuder-3.5.0.tar.gz.sig).
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 = 'team@schleuder.org'
6
+ @gpguid = 'B3D190D5235C74E1907EACFE898F2C91E2E6E1F3'
7
7
  @filename_gem = "#{@tagname}.gem"
8
8
  @filename_tarball = "#{@tagname}.tar.gz"
9
9
 
@@ -1,4 +1,4 @@
1
- class AddDeliverSelfsentToList < ActiveRecord::Migration
1
+ class AddDeliverSelfsentToList < ActiveRecord::Migration
2
2
  def up
3
3
  if ! column_exists?(:lists, :deliver_selfsent)
4
4
  add_column :lists, :deliver_selfsent, :boolean, default: true
@@ -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-----$/ =~ material
109
- return false unless /^-----END PGP PUBLIC KEY BLOCK-----$/ =~ material
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("\n").reject(&:empty?)
111
+ lines = material.split(/\r?\n/).reject(&:empty?)
112
112
  # remove header
113
113
  lines.shift
114
114
  # remove tail
@@ -1,3 +1,3 @@
1
1
  module Schleuder
2
- VERSION = '3.5.0'
2
+ VERSION = '3.5.1'
3
3
  end
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.0
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-03-30 00:00:00.000000000 Z
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/#installation> for details.)
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