card-mod-email 0.11.4 → 0.11.5

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: 605e666fc2787217e1040e020a95d3c27a8ac1f4a05486f39378fe58afd1be4d
4
- data.tar.gz: 7a3a8773d6f9d6978ac1e497510874526465ee84721f1bc5ad9b8cddd4b91215
3
+ metadata.gz: fea6a18601a194364b44231f633dbf1b875f98181956e1e39df477d7d09fc841
4
+ data.tar.gz: cc5d78dc78c5a357bb9d48ba7382fb2fc9b4dee72fa268c793b5d2dd759fd464
5
5
  SHA512:
6
- metadata.gz: d8578bf9d91f45f557bdfa9afa32ae0ecad7dfdd5c056d3c2ef4202994d77bb8c587609e25963b85c75c5d374cfbca67ae74fa924c43525702f8a24221162ce2
7
- data.tar.gz: 3654c4fbb98f3df54e22f4dc34484d6df83447fce8241e2cd1c8001ed9f83aec541c95934c5f5fa1e25134fa12a5c0300bdec5f4d91d52d21a3a31d7a8dfd689
6
+ metadata.gz: 0b91aa4d06ad9b159938b25e520bcbed8ab6b7b98dd6c32f23e17cdaecf4d09f4facdc5349ee84233521a81f1545bf57ad47dfb4851aee4f027a553ea32ae8de
7
+ data.tar.gz: 1d72576e42fa6f143a2f77f1e6c6d556f7fde0c469fca374aefe975a21b7ac97518bf01e38586e6f97400e65ff097239a9323fe17cb2c5d94c48a3c9a8e27cab
@@ -1,4 +1,3 @@
1
-
2
1
  format do
3
2
  # turn off autodetection of uri's
4
3
  def chunk_list
@@ -27,7 +26,7 @@ format :email_text do
27
26
  end
28
27
 
29
28
  def email_address? string
30
- string =~ /.+\@.+\..+/
29
+ string =~ /.+@.+\..+/
31
30
  end
32
31
 
33
32
  def email_address_from_card name, context
@@ -1,6 +1,7 @@
1
1
  format :html do
2
2
  view :core do
3
3
  return super() if voo.hide? :test_context
4
+
4
5
  card.with_context test_context_card do
5
6
  super()
6
7
  end
@@ -1,4 +1,3 @@
1
-
2
1
  format :email_text do
3
2
  view :unknown do
4
3
  ""
@@ -8,6 +8,7 @@ format :email_html do
8
8
  def email_content context
9
9
  content = contextual_content context
10
10
  return unless content.present?
11
+
11
12
  Card::Mailer.layout content
12
13
  end
13
14
  end
@@ -1,4 +1,3 @@
1
-
2
1
  def clean_html?
3
2
  false
4
3
  end
@@ -6,8 +5,8 @@ end
6
5
  def deliver context=nil, fields={}, opts={}
7
6
  mail = format.mail context, fields, opts
8
7
  mail.deliver
9
- rescue Net::SMTPError => exception
10
- errors.add :exception, exception.message
8
+ rescue Net::SMTPError => e
9
+ errors.add :exception, e.message
11
10
  end
12
11
 
13
12
  format do
@@ -72,6 +71,7 @@ format do
72
71
 
73
72
  def add_attachments mail, list
74
73
  return unless list.present?
74
+
75
75
  each_valid_attachment list do |file, index|
76
76
  mail.add_file filename: attachment_name(file, index),
77
77
  content: File.read(file.path)
@@ -81,6 +81,7 @@ format do
81
81
  def each_valid_attachment list
82
82
  list.each_with_index do |cardname, index|
83
83
  next unless (file = Card[cardname]&.try(:attachment))
84
+
84
85
  yield file, index
85
86
  end
86
87
  end
@@ -22,6 +22,7 @@ end
22
22
 
23
23
  def email_field_from_card field, auth, format_opts
24
24
  return unless (field_card = fetch(field))
25
+
25
26
  auth ||= field_card.updater
26
27
  special_email_field_method(field, field_card, auth, format_opts) ||
27
28
  standard_email_field(field, field_card, auth, format_opts)
@@ -30,6 +31,7 @@ end
30
31
  def special_email_field_method field, field_card, auth, format_opts
31
32
  method = "email_#{field}_field"
32
33
  return unless respond_to? method
34
+
33
35
  send method, field_card, auth, format_opts
34
36
  end
35
37
 
@@ -73,7 +75,7 @@ def email_from_field_value conf_name, conf_email, actual_email
73
75
  end
74
76
 
75
77
  def configured_from_name_and_email raw_string
76
- if raw_string =~ /(.*)\<(.*)>/
78
+ if raw_string =~ /(.*)<(.*)>/
77
79
  [Regexp.last_match(1).strip, Regexp.last_match(2)]
78
80
  else
79
81
  [nil, raw_string]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: card-mod-email
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.4
4
+ version: 0.11.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan McCutchen
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-05-05 00:00:00.000000000 Z
13
+ date: 2021-05-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: card
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 1.101.4
21
+ version: 1.101.5
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 1.101.4
28
+ version: 1.101.5
29
29
  description: ''
30
30
  email:
31
31
  - info@decko.org