wco_models 3.1.0.196 → 3.1.0.198

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: 6edaaf0b56607ebe8b92217e54dd6cb2b89b0a3e70c94c8c1b7cab85f6c46850
4
- data.tar.gz: 7a1d6d52dfa41bef70e127c66e0ebab10b61dca8bb147bbe2ececc007f16ff14
3
+ metadata.gz: 833420f8f14a04997a7947c6d7f8090ad7d94d9ab8aa5c5d6db340163a706ea8
4
+ data.tar.gz: 644f992ba2e95e8f05efa3fb51f978f44182c402b0bc13f7449f0b02fd8bef64
5
5
  SHA512:
6
- metadata.gz: e559030c342a708f47f83235222d929132d8869fcfd852da2a55b3b22c1084b262c07db916e95bea481c6947de3f42ee4a3d47683cee243f3996b372528757a0
7
- data.tar.gz: 5decaf5fce553e94f19bbeac146e6b3cfef6a7d77472636bdbd0ddce74b1c1aa191ee5fbe91b2bf076736c70453b96e7cc3cb4bb2875c8fff61de1e0e38a4659
6
+ metadata.gz: 92fc1f474bbfe312097c6f66adb9ba6d65add8c14890180920bcffb380ccde129bfb898bd0c4fc76daa35d01c1caf2e5c1ec5191df02434fe07c319675648ba2
7
+ data.tar.gz: 1605dfb6dc8e716af6b2446d8fc50f82f7ec2d718de1a9a934608b2f9bc074d82840d629b1ce371ce5a8c44ade0bb5cf8b6024a8ed4331f5dbeff5c9d42110e0
@@ -23,7 +23,7 @@ class WcoEmail::EmailFilter
23
23
 
24
24
  has_many :actions, class_name: '::WcoEmail::EmailFilterAction', inverse_of: :email_filter
25
25
  accepts_nested_attributes_for :actions, allow_destroy: true
26
- validate :validate_actions
26
+ # validate :validate_actions
27
27
  def validate_actions
28
28
  if actions.length == 0
29
29
  errors.add(:actions, 'must be present')
@@ -38,7 +38,7 @@ class WcoEmail::EmailFilter
38
38
  has_many :skip_conditions, class_name: '::WcoEmail::EmailFilterCondition', inverse_of: :email_skip_filter
39
39
  accepts_nested_attributes_for :skip_conditions, allow_destroy: true
40
40
 
41
- validate :validate_conditions
41
+ # validate :validate_conditions
42
42
  def validate_conditions
43
43
  if conditions.length + skip_conditions.length == 0
44
44
  errors.add(:conditions, 'Either conditions or skip conditions must be present.')
@@ -239,10 +239,11 @@ class WcoEmail::MessageStub
239
239
  else
240
240
  ## 2024-07-30 I'm no longer sending these to google.
241
241
  ## 2024-11-03 restarted sending.
242
+ ## 2025-01-23 no longer sending to google.
242
243
  conv = WcoEmail::Conversation.find( conv.id )
243
244
  if conv.tags.include? Wco::Tag.inbox
244
- out = WcoEmail::ApplicationMailer.forwarder_notify( @message.id.to_s )
245
- Rails.env.production? ? out.deliver_later : out.deliver_now
245
+ # out = WcoEmail::ApplicationMailer.forwarder_notify( @message.id.to_s )
246
+ # Rails.env.production? ? out.deliver_later : out.deliver_now
246
247
  end
247
248
  end
248
249
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wco_models
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0.196
4
+ version: 3.1.0.198
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Pudeyev