card-mod-email 0.11.3 → 0.11.7

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: 54057062aeaafdf057be72b30ee3ce641b933186d5a489f2b1769bb62236329a
4
- data.tar.gz: 8eecaa6033678aeb8d29fb23bffd1c41d28f8be17391236f4f76603df96a6c45
3
+ metadata.gz: 798103737d85c2a2323f3e5f887247f00fbd96118d67814047ab44767c670f75
4
+ data.tar.gz: a2aca6c818725d21e9c9bd274357706a782cc66324f0240a0c97a9d5f10ef025
5
5
  SHA512:
6
- metadata.gz: d960fdccf4984fedc5b0adb18e4bee9f550b3718d1527111cd1263881ef308b0b1a86b12eab1234b853d79babea8910a48caec031b14ce13f16c8b48261b91f4
7
- data.tar.gz: bdb9e79887740f64fb79db6ec011a285067483cc7b45f5c9c7c5becc8994e4b9b846e7ea0d22efaca55d6ae9409c9ee0f17dab296b8f906be8a53d085dc5a3af
6
+ metadata.gz: 3c2952b450419aa71837049a78b6309fa83886dc3f7f2d2e48cfbebb097fb9651c89c2170cac2e0293b3d899286f180406797145e317034117ae4d9074e92965
7
+ data.tar.gz: dd94bedaaffdf501dd38a9439aa7deda5b1d4e61a05a3b5281e68615d90b7a3b311781c90fb9e12ee1d129977e10607ff1b4fe076e7dbae7295e397c01d8be87
@@ -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.3
4
+ version: 0.11.7
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-04-01 00:00:00.000000000 Z
13
+ date: 2021-08-01 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.3
21
+ version: 1.101.7
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.3
28
+ version: 1.101.7
29
29
  description: ''
30
30
  email:
31
31
  - info@decko.org
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.1.4
76
+ rubygems_version: 3.1.6
77
77
  signing_key:
78
78
  specification_version: 4
79
79
  summary: Email handling