wco_email 0.1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.txt +129 -0
- data/Rakefile +5 -0
- data/app/assets/config/wco_email_manifest.js +7 -0
- data/app/assets/javascript/vendor-trash/jquery-ui.min.js +13 -0
- data/app/assets/javascript/vendor-trash/jquery.fileupload.js +1482 -0
- data/app/assets/javascript/vendor-trash/jquery.iframe-transport.js +224 -0
- data/app/assets/javascript/vendor-trash/jquery.ui.widget.js +572 -0
- data/app/assets/javascript/vendor-trash/summernote-bs4.min.js +3 -0
- data/app/assets/javascript/wco_email/application.js +11 -0
- data/app/assets/javascript/wco_email/contexts.js +19 -0
- data/app/assets/javascript/wco_email/conversations.js +177 -0
- data/app/assets/javascript/wco_email/file_upload.js-trash +32 -0
- data/app/assets/javascript/wco_email/shared.js +22 -0
- data/app/assets/stylesheets/wco_email/application.scss +29 -0
- data/app/assets/stylesheets/wco_email/contexts.scss +63 -0
- data/app/assets/stylesheets/wco_email/conversations.scss +16 -0
- data/app/assets/stylesheets/wco_email/tags.scss +6 -0
- data/app/controllers/wco_email/application_controller.rb +16 -0
- data/app/controllers/wco_email/contexts_controller.rb +156 -0
- data/app/controllers/wco_email/conversations_controller.rb +129 -0
- data/app/controllers/wco_email/email_action_templates_controller.rb +77 -0
- data/app/controllers/wco_email/email_actions_controller.rb +55 -0
- data/app/controllers/wco_email/email_campaigns_controller.rb +73 -0
- data/app/controllers/wco_email/email_filters_controller.rb +72 -0
- data/app/controllers/wco_email/email_layouts_controller.rb +13 -0
- data/app/controllers/wco_email/email_templates_controller.rb +124 -0
- data/app/controllers/wco_email/message_stubs_controller.rb +14 -0
- data/app/controllers/wco_email/messages_controller.rb +28 -0
- data/app/controllers/wco_email/obfuscated_redirects_controller.rb +20 -0
- data/app/controllers/wco_email/sessions_controller.rb +19 -0
- data/app/controllers/wco_email/unsubscribes_controller.rb +40 -0
- data/app/helpers/wco_email/application_helper.rb +20 -0
- data/app/jobs/wco_email/message_intake_job.rb +54 -0
- data/app/mailers/wco_email/application_mailer.rb +98 -0
- data/app/views/202212 Mailchimp Templates/202212 1col fixed-width.html +863 -0
- data/app/views/202212 Mailchimp Templates/202212 1col full-width.html +906 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width 2.html +1003 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width.html +1082 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width 2.html +1053 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width.html +1147 -0
- data/app/views/202212 Mailchimp Templates/202212 3col fixed-width.html +1087 -0
- data/app/views/202212 Mailchimp Templates/202212 3col full-width.html +1136 -0
- data/app/views/202212 Mailchimp Templates/202212 catalog various-colors-1.html +1223 -0
- data/app/views/202212 Mailchimp Templates/202212 educate.html +1080 -0
- data/app/views/202212 Mailchimp Templates/202212 follow up.html +1001 -0
- data/app/views/202212 Mailchimp Templates/202212 make an announcement.html +1048 -0
- data/app/views/202212 Mailchimp Templates/202212 sell-a-product.html +977 -0
- data/app/views/202212 Mailchimp Templates/202212 tell a story.html +1168 -0
- data/app/views/202212 Mailchimp Templates/202212 theme art-newsletter.html +1612 -0
- data/app/views/202212 Mailchimp Templates/202212 theme caribou-xmas.html +856 -0
- data/app/views/202212 Mailchimp Templates/202212 theme colorbox.html +1027 -0
- data/app/views/202212 Mailchimp Templates/202212 theme competition-invitation.html +918 -0
- data/app/views/202212 Mailchimp Templates/202212 theme event-veerle.html +1132 -0
- data/app/views/202212 Mailchimp Templates/202212 theme fall-colors.html +1407 -0
- data/app/views/202212 Mailchimp Templates/202212 theme gift-giving.html +787 -0
- data/app/views/202212 Mailchimp Templates/202212 theme giftgiving-snowmen.html +731 -0
- data/app/views/202212 Mailchimp Templates/202212 theme heart-of-flowers.html +795 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-card.html +915 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-image.html +1148 -0
- data/app/views/202212 Mailchimp Templates/202212 theme monthly-contest.html +967 -0
- data/app/views/202212 Mailchimp Templates/202212 theme multiple-event.html +1189 -0
- data/app/views/202212 Mailchimp Templates/202212 theme postcard.html +914 -0
- data/app/views/202212 Mailchimp Templates/202212 theme snowy-fields.html +733 -0
- data/app/views/202212 Mailchimp Templates/202212 theme soft.html +849 -0
- data/app/views/202212 Mailchimp Templates/202212 theme sophisticated.html +1079 -0
- data/app/views/202212 Mailchimp Templates/202212 theme subtle.html +1218 -0
- data/app/views/202212 Mailchimp Templates/202212 theme ticket.html +1015 -0
- data/app/views/202212 Mailchimp Templates/202212 theme whale.html +888 -0
- data/app/views/202310 Email Templates/_acknowledgement_of_document_receipt.html.erb +23 -0
- data/app/views/202310 Email Templates/_support_ticket_created.html.erb +26 -0
- data/app/views/layouts/wco_email/application.haml +64 -0
- data/app/views/layouts/wco_email/mailbox.haml-trash +62 -0
- data/app/views/wco_email/_analytics.erb +16 -0
- data/app/views/wco_email/_main_header.haml +31 -0
- data/app/views/wco_email/_sidebar.haml +10 -0
- data/app/views/wco_email/application_mailer/_footer_unsubscribe.html.erb +24 -0
- data/app/views/wco_email/application_mailer/_header_logo.html.erb +12 -0
- data/app/views/wco_email/application_mailer/forwarder_notify.html.erb +17 -0
- data/app/views/wco_email/contexts/_form.haml +59 -0
- data/app/views/wco_email/contexts/_form_reply.haml +27 -0
- data/app/views/wco_email/contexts/_header.haml +22 -0
- data/app/views/wco_email/contexts/_index.haml +8 -0
- data/app/views/wco_email/contexts/edit.haml +8 -0
- data/app/views/wco_email/contexts/iframe_src.haml +3 -0
- data/app/views/wco_email/contexts/index.haml +51 -0
- data/app/views/wco_email/contexts/new.haml +5 -0
- data/app/views/wco_email/contexts/show.haml +34 -0
- data/app/views/wco_email/contexts/summary.csv.erb +4 -0
- data/app/views/wco_email/contexts/summary.haml +16 -0
- data/app/views/wco_email/conversations/_actions.haml +21 -0
- data/app/views/wco_email/conversations/_search.haml +14 -0
- data/app/views/wco_email/conversations/index.haml +43 -0
- data/app/views/wco_email/conversations/show.haml +27 -0
- data/app/views/wco_email/email_action_templates/_form.haml +45 -0
- data/app/views/wco_email/email_action_templates/_header.haml +8 -0
- data/app/views/wco_email/email_action_templates/edit.haml +7 -0
- data/app/views/wco_email/email_action_templates/index.haml +36 -0
- data/app/views/wco_email/email_action_templates/new.haml +9 -0
- data/app/views/wco_email/email_action_templates/show.haml +11 -0
- data/app/views/wco_email/email_actions/_form.haml +24 -0
- data/app/views/wco_email/email_actions/_form_mini.haml-trash +28 -0
- data/app/views/wco_email/email_actions/_header.haml +8 -0
- data/app/views/wco_email/email_actions/edit.haml +4 -0
- data/app/views/wco_email/email_actions/index.haml +31 -0
- data/app/views/wco_email/email_actions/new.haml +4 -0
- data/app/views/wco_email/email_actions/show.haml +0 -0
- data/app/views/wco_email/email_campaigns/_form.haml +33 -0
- data/app/views/wco_email/email_campaigns/_header.haml +5 -0
- data/app/views/wco_email/email_campaigns/edit.haml +5 -0
- data/app/views/wco_email/email_campaigns/index.haml +14 -0
- data/app/views/wco_email/email_campaigns/new.haml +5 -0
- data/app/views/wco_email/email_campaigns/show.haml +17 -0
- data/app/views/wco_email/email_filters/_form.haml +40 -0
- data/app/views/wco_email/email_filters/_header.haml +5 -0
- data/app/views/wco_email/email_filters/edit.haml +5 -0
- data/app/views/wco_email/email_filters/index.haml +48 -0
- data/app/views/wco_email/email_filters/new.haml +5 -0
- data/app/views/wco_email/email_templates/_form.haml +48 -0
- data/app/views/wco_email/email_templates/_form_mini.haml +9 -0
- data/app/views/wco_email/email_templates/_form_reply_mini.haml +8 -0
- data/app/views/wco_email/email_templates/_form_schedule_mini.haml +11 -0
- data/app/views/wco_email/email_templates/_header.haml +6 -0
- data/app/views/wco_email/email_templates/_index.haml +26 -0
- data/app/views/wco_email/email_templates/_index_expanded.haml +13 -0
- data/app/views/wco_email/email_templates/_m20221201react.html.erb +1202 -0
- data/app/views/wco_email/email_templates/_m20221222merryxmas.html.erb +766 -0
- data/app/views/wco_email/email_templates/_m202309_feedback.html.erb +1161 -0
- data/app/views/wco_email/email_templates/_m202309_ror4.html.erb +1068 -0
- data/app/views/wco_email/email_templates/_marketing_node_1.html.erb +984 -0
- data/app/views/wco_email/email_templates/_marketing_react_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_react_2.html.erb +749 -0
- data/app/views/wco_email/email_templates/_marketing_react_3.html.erb +628 -0
- data/app/views/wco_email/email_templates/_marketing_ror_1.html +751 -0
- data/app/views/wco_email/email_templates/_marketing_ror_2.html.erb +755 -0
- data/app/views/wco_email/email_templates/_marketing_ror_3.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_4.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_5.html.erb +17 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_2.html +0 -0
- data/app/views/wco_email/email_templates/_meta.haml +6 -0
- data/app/views/wco_email/email_templates/_piousbox_roundborders.html.erb +1007 -0
- data/app/views/wco_email/email_templates/_piousbox_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/_plain.haml +15 -0
- data/app/views/wco_email/email_templates/_rec_resume_shared_with_you.html.erb +39 -0
- data/app/views/wco_email/email_templates/_slug-1.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-2.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-3.html.erb +0 -0
- data/app/views/wco_email/email_templates/_tracking_footer.html.erb +13 -0
- data/app/views/wco_email/email_templates/_wasyaco_roundborders.html.erb +686 -0
- data/app/views/wco_email/email_templates/_wasyaco_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/edit.haml +6 -0
- data/app/views/wco_email/email_templates/new.haml +6 -0
- data/app/views/wco_email/email_templates/show.haml +11 -0
- data/app/views/wco_email/email_templates/show_iframe.haml +2 -0
- data/app/views/wco_email/lead_action_templates/_header.haml +7 -0
- data/app/views/wco_email/lead_actions/_header.haml +8 -0
- data/app/views/wco_email/message_stubs/_index.haml +10 -0
- data/app/views/wco_email/messages/_form_reply.haml-trash +17 -0
- data/app/views/wco_email/messages/_meta.haml +30 -0
- data/app/views/wco_email/messages/show.haml +13 -0
- data/app/views/wco_email/messages/show_iframe.haml +5 -0
- data/app/views/wco_email/sessions/new.html.erb +4 -0
- data/app/views/wco_email/unsubscribes/_header.haml +4 -0
- data/app/views/wco_email/unsubscribes/_table.haml +22 -0
- data/config/initializers/assets.rb +10 -0
- data/config/routes.rb +49 -0
- data/lib/tasks/bjjcollective/sitemap.rb +50 -0
- data/lib/tasks/db_tasks.rake +12 -0
- data/lib/tasks/direct_mail_tasks.rake +35 -0
- data/lib/tasks/infinite_shelter/sitemap.rb +25 -0
- data/lib/tasks/piousbox/sitemap.rb +80 -0
- data/lib/tasks/publish2_wordpress_tasks.rake +54 -0
- data/lib/tasks/scrape_reddit_tasks.rake-bk +23 -0
- data/lib/tasks/trash/email_tasks.rake-trash +126 -0
- data/lib/tasks/trash/sitemap_tasks.rake-trash +146 -0
- data/lib/tasks/wasya_co/sitemap.rb +281 -0
- data/lib/tasks/wco_email_tasks.rake +117 -0
- data/lib/wco_email/README_email_actions.rb +7 -0
- data/lib/wco_email/README_email_contexts.rb +7 -0
- data/lib/wco_email/engine.rb +8 -0
- data/lib/wco_email.rb +19 -0
- metadata +493 -0
@@ -0,0 +1,117 @@
|
|
1
|
+
|
2
|
+
namespace :wco_email do
|
3
|
+
|
4
|
+
##
|
5
|
+
## @stub = WcoEmail::MessageStub.find_by object_key: '2021-10-18T18_41_17Fanand_phoenixwebgroup_co'
|
6
|
+
##
|
7
|
+
desc 'churn_n_stubs n=<num> [tagname=<some-new-slug>] [process_images=<false|true>]'
|
8
|
+
task churn_n_stubs: :environment do
|
9
|
+
|
10
|
+
## Usage
|
11
|
+
if !ENV['n']
|
12
|
+
puts ""
|
13
|
+
puts "Usage: churn_n_stubs n=<num> [tagname=<some-new-slug>] [process_images=<false|true>] "
|
14
|
+
puts "DOES NOT PROCESS IMAGES BY DEFAULT"
|
15
|
+
puts ""
|
16
|
+
exit 22
|
17
|
+
end
|
18
|
+
|
19
|
+
if ENV['tagname']
|
20
|
+
tag = Wco::Tag.find_or_create_by({ slug: ENV['tagname'] })
|
21
|
+
end
|
22
|
+
|
23
|
+
process_images = ENV['process_images'] == 'true'
|
24
|
+
|
25
|
+
n = ENV['n'].to_i
|
26
|
+
stubs = WcoEmail::MessageStub.pending.limit n
|
27
|
+
stubs.each_with_index do |stub, idx|
|
28
|
+
puts "+++ +++ churning ##{idx+1} object_key: #{stub.object_key}"
|
29
|
+
|
30
|
+
stub.tags.push( tag ) if tag
|
31
|
+
stub.config = JSON.parse( stub.config ).merge({ process_images: process_images, skip_notification: true }).to_json
|
32
|
+
stub.save!
|
33
|
+
|
34
|
+
WcoEmail::MessageIntakeJob.perform_sync( stub.id.to_s )
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
desc "Usage: wco_email:mbox_info mbox_path=<filepath> "
|
39
|
+
task mbox_info: :environment do
|
40
|
+
|
41
|
+
## Usage
|
42
|
+
if !ENV['mbox_path']
|
43
|
+
puts ""
|
44
|
+
puts "Usage: wco_email:mbox_info mbox_path=<filepath> "
|
45
|
+
puts ""
|
46
|
+
exit 22
|
47
|
+
end
|
48
|
+
|
49
|
+
mbox_path = ENV['mbox_path']
|
50
|
+
|
51
|
+
out = File.read(mbox_path, encoding: "ISO8859-1" )
|
52
|
+
count = out.scan(/^From /).size
|
53
|
+
|
54
|
+
puts! count, 'count'
|
55
|
+
end
|
56
|
+
|
57
|
+
## Not used until I revisit it. _vp_ 2023-04-02
|
58
|
+
desc 'wco_email:mbox2stubs mbox_path=<filepath> tagname=<some-new-slug> skip=0'
|
59
|
+
task mbox2stubs: :environment do
|
60
|
+
|
61
|
+
## Usage
|
62
|
+
if !ENV['mbox_path'] || !ENV['tagname']
|
63
|
+
puts ""
|
64
|
+
puts "Usage: wco_email:mbox2stubs mbox_path=<filepath> tagname=<some-new-slug> "
|
65
|
+
puts ""
|
66
|
+
exit 22
|
67
|
+
end
|
68
|
+
|
69
|
+
WcoEmail::MessageStub.mbox2stubs ENV['mbox_path'], tagname: ENV['tagname'], skip: ENV['skip'].to_i
|
70
|
+
|
71
|
+
puts "ok"
|
72
|
+
end
|
73
|
+
|
74
|
+
desc 'remove duplicates of stubs'
|
75
|
+
task remove_stub_duplicates: :environment do
|
76
|
+
outs = WcoEmail::MessageStub.collection.aggregate([
|
77
|
+
{"$group" => { "_id" => "$object_key", "count" => { "$sum" => 1 } } },
|
78
|
+
{"$match": {"_id" => { "$ne" => nil } , "count" => {"$gt" => 1} } },
|
79
|
+
{"$project" => {"object_key" => "$_id", "_id" => 0} }
|
80
|
+
])
|
81
|
+
outs = outs.to_a
|
82
|
+
outs.each do |out|
|
83
|
+
WcoEmail::MessageStub.where( object_key: out['object_key'] )[1].destroy!
|
84
|
+
print '.'
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
##
|
89
|
+
## 2024-01-10
|
90
|
+
## WcoEmail::MessageStub.all.update_all({ bucket: 'ish-ses-2024' })
|
91
|
+
## WcoEmail::MessageIntakeJob.perform_sync( stub.id.to_s )
|
92
|
+
##
|
93
|
+
desc 'import objectkey list'
|
94
|
+
task import_objectkey_list: :environment do
|
95
|
+
|
96
|
+
bucket = 'ish-ses'
|
97
|
+
client ||= Aws::S3::Client.new({
|
98
|
+
region: ::S3_CREDENTIALS[:region_ses],
|
99
|
+
access_key_id: ::S3_CREDENTIALS[:access_key_id_ses],
|
100
|
+
secret_access_key: ::S3_CREDENTIALS[:secret_access_key_ses],
|
101
|
+
})
|
102
|
+
|
103
|
+
lines = File.read( './data/20240110_ish-ses_objectkeys' )
|
104
|
+
lines.split("\n").each_with_index do |line, idx|
|
105
|
+
|
106
|
+
object_key = line.split.last
|
107
|
+
stub = WcoEmail::MessageStub.create( object_key: object_key, bucket: bucket )
|
108
|
+
if stub.persisted?
|
109
|
+
print "#{idx}."
|
110
|
+
else
|
111
|
+
outs! stub.errors.full_messages.join(", ")
|
112
|
+
end
|
113
|
+
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
end
|
data/lib/wco_email.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
require 'business_time'
|
3
|
+
|
4
|
+
require 'cancancan'
|
5
|
+
|
6
|
+
require 'haml'
|
7
|
+
require 'httparty'
|
8
|
+
|
9
|
+
require "wco_email/engine"
|
10
|
+
|
11
|
+
## From: https://github.com/rails/rails/issues/30701
|
12
|
+
def logger; Rails.logger; end
|
13
|
+
|
14
|
+
def puts! a, b=''
|
15
|
+
puts "+++ +++ #{b}:"
|
16
|
+
puts a.inspect
|
17
|
+
end
|
18
|
+
|
19
|
+
ActiveSupport.escape_html_entities_in_json = true
|
metadata
ADDED
@@ -0,0 +1,493 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wco_email
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Victor Pudeyev
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-s3
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: business_time
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: cancancan
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.5.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.5.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: devise
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 4.9.3
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 4.9.3
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: exception_notification
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 4.5.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 4.5.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: haml
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 6.3.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 6.3.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: httparty
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: kaminari-mongoid
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.0.1
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 1.0.1
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: kaminari-actionview
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: mail
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 2.8.1
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 2.8.1
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: mongoid
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 7.3.0
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 7.3.0
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: mongoid_paranoia
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 0.6.0
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: 0.6.0
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: mongoid-autoinc
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: 6.0.3
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: 6.0.3
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: mongoid-paperclip
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: 0.1.0
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: 0.1.0
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: prawn
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :runtime
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: prawn-table
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - ">="
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '0'
|
230
|
+
type: :runtime
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '0'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: rails
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - "~>"
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: 6.1.7
|
244
|
+
type: :runtime
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - "~>"
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: 6.1.7
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: sidekiq
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - ">="
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '0'
|
258
|
+
type: :runtime
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - ">="
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '0'
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: wco_models
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - "~>"
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: 3.1.0
|
272
|
+
type: :runtime
|
273
|
+
prerelease: false
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - "~>"
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: 3.1.0
|
279
|
+
description: The Wco Email client.
|
280
|
+
email:
|
281
|
+
- victor@wasya.co
|
282
|
+
executables: []
|
283
|
+
extensions: []
|
284
|
+
extra_rdoc_files: []
|
285
|
+
files:
|
286
|
+
- README.txt
|
287
|
+
- Rakefile
|
288
|
+
- app/assets/config/wco_email_manifest.js
|
289
|
+
- app/assets/javascript/vendor-trash/jquery-ui.min.js
|
290
|
+
- app/assets/javascript/vendor-trash/jquery.fileupload.js
|
291
|
+
- app/assets/javascript/vendor-trash/jquery.iframe-transport.js
|
292
|
+
- app/assets/javascript/vendor-trash/jquery.ui.widget.js
|
293
|
+
- app/assets/javascript/vendor-trash/summernote-bs4.min.js
|
294
|
+
- app/assets/javascript/wco_email/application.js
|
295
|
+
- app/assets/javascript/wco_email/contexts.js
|
296
|
+
- app/assets/javascript/wco_email/conversations.js
|
297
|
+
- app/assets/javascript/wco_email/file_upload.js-trash
|
298
|
+
- app/assets/javascript/wco_email/shared.js
|
299
|
+
- app/assets/stylesheets/wco_email/application.scss
|
300
|
+
- app/assets/stylesheets/wco_email/contexts.scss
|
301
|
+
- app/assets/stylesheets/wco_email/conversations.scss
|
302
|
+
- app/assets/stylesheets/wco_email/tags.scss
|
303
|
+
- app/controllers/wco_email/application_controller.rb
|
304
|
+
- app/controllers/wco_email/contexts_controller.rb
|
305
|
+
- app/controllers/wco_email/conversations_controller.rb
|
306
|
+
- app/controllers/wco_email/email_action_templates_controller.rb
|
307
|
+
- app/controllers/wco_email/email_actions_controller.rb
|
308
|
+
- app/controllers/wco_email/email_campaigns_controller.rb
|
309
|
+
- app/controllers/wco_email/email_filters_controller.rb
|
310
|
+
- app/controllers/wco_email/email_layouts_controller.rb
|
311
|
+
- app/controllers/wco_email/email_templates_controller.rb
|
312
|
+
- app/controllers/wco_email/message_stubs_controller.rb
|
313
|
+
- app/controllers/wco_email/messages_controller.rb
|
314
|
+
- app/controllers/wco_email/obfuscated_redirects_controller.rb
|
315
|
+
- app/controllers/wco_email/sessions_controller.rb
|
316
|
+
- app/controllers/wco_email/unsubscribes_controller.rb
|
317
|
+
- app/helpers/wco_email/application_helper.rb
|
318
|
+
- app/jobs/wco_email/message_intake_job.rb
|
319
|
+
- app/mailers/wco_email/application_mailer.rb
|
320
|
+
- app/views/202212 Mailchimp Templates/202212 1col fixed-width.html
|
321
|
+
- app/views/202212 Mailchimp Templates/202212 1col full-width.html
|
322
|
+
- app/views/202212 Mailchimp Templates/202212 2col fixed-width 2.html
|
323
|
+
- app/views/202212 Mailchimp Templates/202212 2col fixed-width.html
|
324
|
+
- app/views/202212 Mailchimp Templates/202212 2col full-width 2.html
|
325
|
+
- app/views/202212 Mailchimp Templates/202212 2col full-width.html
|
326
|
+
- app/views/202212 Mailchimp Templates/202212 3col fixed-width.html
|
327
|
+
- app/views/202212 Mailchimp Templates/202212 3col full-width.html
|
328
|
+
- app/views/202212 Mailchimp Templates/202212 catalog various-colors-1.html
|
329
|
+
- app/views/202212 Mailchimp Templates/202212 educate.html
|
330
|
+
- app/views/202212 Mailchimp Templates/202212 follow up.html
|
331
|
+
- app/views/202212 Mailchimp Templates/202212 make an announcement.html
|
332
|
+
- app/views/202212 Mailchimp Templates/202212 sell-a-product.html
|
333
|
+
- app/views/202212 Mailchimp Templates/202212 tell a story.html
|
334
|
+
- app/views/202212 Mailchimp Templates/202212 theme art-newsletter.html
|
335
|
+
- app/views/202212 Mailchimp Templates/202212 theme caribou-xmas.html
|
336
|
+
- app/views/202212 Mailchimp Templates/202212 theme colorbox.html
|
337
|
+
- app/views/202212 Mailchimp Templates/202212 theme competition-invitation.html
|
338
|
+
- app/views/202212 Mailchimp Templates/202212 theme event-veerle.html
|
339
|
+
- app/views/202212 Mailchimp Templates/202212 theme fall-colors.html
|
340
|
+
- app/views/202212 Mailchimp Templates/202212 theme gift-giving.html
|
341
|
+
- app/views/202212 Mailchimp Templates/202212 theme giftgiving-snowmen.html
|
342
|
+
- app/views/202212 Mailchimp Templates/202212 theme heart-of-flowers.html
|
343
|
+
- app/views/202212 Mailchimp Templates/202212 theme hero-card.html
|
344
|
+
- app/views/202212 Mailchimp Templates/202212 theme hero-image.html
|
345
|
+
- app/views/202212 Mailchimp Templates/202212 theme monthly-contest.html
|
346
|
+
- app/views/202212 Mailchimp Templates/202212 theme multiple-event.html
|
347
|
+
- app/views/202212 Mailchimp Templates/202212 theme postcard.html
|
348
|
+
- app/views/202212 Mailchimp Templates/202212 theme snowy-fields.html
|
349
|
+
- app/views/202212 Mailchimp Templates/202212 theme soft.html
|
350
|
+
- app/views/202212 Mailchimp Templates/202212 theme sophisticated.html
|
351
|
+
- app/views/202212 Mailchimp Templates/202212 theme subtle.html
|
352
|
+
- app/views/202212 Mailchimp Templates/202212 theme ticket.html
|
353
|
+
- app/views/202212 Mailchimp Templates/202212 theme whale.html
|
354
|
+
- app/views/202310 Email Templates/_acknowledgement_of_document_receipt.html.erb
|
355
|
+
- app/views/202310 Email Templates/_support_ticket_created.html.erb
|
356
|
+
- app/views/layouts/wco_email/application.haml
|
357
|
+
- app/views/layouts/wco_email/mailbox.haml-trash
|
358
|
+
- app/views/wco_email/_analytics.erb
|
359
|
+
- app/views/wco_email/_main_header.haml
|
360
|
+
- app/views/wco_email/_sidebar.haml
|
361
|
+
- app/views/wco_email/application_mailer/_footer_unsubscribe.html.erb
|
362
|
+
- app/views/wco_email/application_mailer/_header_logo.html.erb
|
363
|
+
- app/views/wco_email/application_mailer/forwarder_notify.html.erb
|
364
|
+
- app/views/wco_email/contexts/_form.haml
|
365
|
+
- app/views/wco_email/contexts/_form_reply.haml
|
366
|
+
- app/views/wco_email/contexts/_header.haml
|
367
|
+
- app/views/wco_email/contexts/_index.haml
|
368
|
+
- app/views/wco_email/contexts/edit.haml
|
369
|
+
- app/views/wco_email/contexts/iframe_src.haml
|
370
|
+
- app/views/wco_email/contexts/index.haml
|
371
|
+
- app/views/wco_email/contexts/new.haml
|
372
|
+
- app/views/wco_email/contexts/show.haml
|
373
|
+
- app/views/wco_email/contexts/summary.csv.erb
|
374
|
+
- app/views/wco_email/contexts/summary.haml
|
375
|
+
- app/views/wco_email/conversations/_actions.haml
|
376
|
+
- app/views/wco_email/conversations/_search.haml
|
377
|
+
- app/views/wco_email/conversations/index.haml
|
378
|
+
- app/views/wco_email/conversations/show.haml
|
379
|
+
- app/views/wco_email/email_action_templates/_form.haml
|
380
|
+
- app/views/wco_email/email_action_templates/_header.haml
|
381
|
+
- app/views/wco_email/email_action_templates/edit.haml
|
382
|
+
- app/views/wco_email/email_action_templates/index.haml
|
383
|
+
- app/views/wco_email/email_action_templates/new.haml
|
384
|
+
- app/views/wco_email/email_action_templates/show.haml
|
385
|
+
- app/views/wco_email/email_actions/_form.haml
|
386
|
+
- app/views/wco_email/email_actions/_form_mini.haml-trash
|
387
|
+
- app/views/wco_email/email_actions/_header.haml
|
388
|
+
- app/views/wco_email/email_actions/edit.haml
|
389
|
+
- app/views/wco_email/email_actions/index.haml
|
390
|
+
- app/views/wco_email/email_actions/new.haml
|
391
|
+
- app/views/wco_email/email_actions/show.haml
|
392
|
+
- app/views/wco_email/email_campaigns/_form.haml
|
393
|
+
- app/views/wco_email/email_campaigns/_header.haml
|
394
|
+
- app/views/wco_email/email_campaigns/edit.haml
|
395
|
+
- app/views/wco_email/email_campaigns/index.haml
|
396
|
+
- app/views/wco_email/email_campaigns/new.haml
|
397
|
+
- app/views/wco_email/email_campaigns/show.haml
|
398
|
+
- app/views/wco_email/email_filters/_form.haml
|
399
|
+
- app/views/wco_email/email_filters/_header.haml
|
400
|
+
- app/views/wco_email/email_filters/edit.haml
|
401
|
+
- app/views/wco_email/email_filters/index.haml
|
402
|
+
- app/views/wco_email/email_filters/new.haml
|
403
|
+
- app/views/wco_email/email_templates/_form.haml
|
404
|
+
- app/views/wco_email/email_templates/_form_mini.haml
|
405
|
+
- app/views/wco_email/email_templates/_form_reply_mini.haml
|
406
|
+
- app/views/wco_email/email_templates/_form_schedule_mini.haml
|
407
|
+
- app/views/wco_email/email_templates/_header.haml
|
408
|
+
- app/views/wco_email/email_templates/_index.haml
|
409
|
+
- app/views/wco_email/email_templates/_index_expanded.haml
|
410
|
+
- app/views/wco_email/email_templates/_m20221201react.html.erb
|
411
|
+
- app/views/wco_email/email_templates/_m20221222merryxmas.html.erb
|
412
|
+
- app/views/wco_email/email_templates/_m202309_feedback.html.erb
|
413
|
+
- app/views/wco_email/email_templates/_m202309_ror4.html.erb
|
414
|
+
- app/views/wco_email/email_templates/_marketing_node_1.html.erb
|
415
|
+
- app/views/wco_email/email_templates/_marketing_react_1.html
|
416
|
+
- app/views/wco_email/email_templates/_marketing_react_2.html.erb
|
417
|
+
- app/views/wco_email/email_templates/_marketing_react_3.html.erb
|
418
|
+
- app/views/wco_email/email_templates/_marketing_ror_1.html
|
419
|
+
- app/views/wco_email/email_templates/_marketing_ror_2.html.erb
|
420
|
+
- app/views/wco_email/email_templates/_marketing_ror_3.html.erb
|
421
|
+
- app/views/wco_email/email_templates/_marketing_ror_4.html.erb
|
422
|
+
- app/views/wco_email/email_templates/_marketing_ror_5.html.erb
|
423
|
+
- app/views/wco_email/email_templates/_marketing_wordpress_1.html
|
424
|
+
- app/views/wco_email/email_templates/_marketing_wordpress_2.html
|
425
|
+
- app/views/wco_email/email_templates/_meta.haml
|
426
|
+
- app/views/wco_email/email_templates/_piousbox_roundborders.html.erb
|
427
|
+
- app/views/wco_email/email_templates/_piousbox_social.html.erb
|
428
|
+
- app/views/wco_email/email_templates/_plain.haml
|
429
|
+
- app/views/wco_email/email_templates/_rec_resume_shared_with_you.html.erb
|
430
|
+
- app/views/wco_email/email_templates/_slug-1.html.erb
|
431
|
+
- app/views/wco_email/email_templates/_slug-2.html.erb
|
432
|
+
- app/views/wco_email/email_templates/_slug-3.html.erb
|
433
|
+
- app/views/wco_email/email_templates/_tracking_footer.html.erb
|
434
|
+
- app/views/wco_email/email_templates/_wasyaco_roundborders.html.erb
|
435
|
+
- app/views/wco_email/email_templates/_wasyaco_social.html.erb
|
436
|
+
- app/views/wco_email/email_templates/edit.haml
|
437
|
+
- app/views/wco_email/email_templates/new.haml
|
438
|
+
- app/views/wco_email/email_templates/show.haml
|
439
|
+
- app/views/wco_email/email_templates/show_iframe.haml
|
440
|
+
- app/views/wco_email/lead_action_templates/_header.haml
|
441
|
+
- app/views/wco_email/lead_actions/_header.haml
|
442
|
+
- app/views/wco_email/message_stubs/_index.haml
|
443
|
+
- app/views/wco_email/messages/_form_reply.haml-trash
|
444
|
+
- app/views/wco_email/messages/_meta.haml
|
445
|
+
- app/views/wco_email/messages/show.haml
|
446
|
+
- app/views/wco_email/messages/show_iframe.haml
|
447
|
+
- app/views/wco_email/sessions/new.html.erb
|
448
|
+
- app/views/wco_email/unsubscribes/_header.haml
|
449
|
+
- app/views/wco_email/unsubscribes/_table.haml
|
450
|
+
- config/initializers/assets.rb
|
451
|
+
- config/routes.rb
|
452
|
+
- lib/tasks/bjjcollective/sitemap.rb
|
453
|
+
- lib/tasks/db_tasks.rake
|
454
|
+
- lib/tasks/direct_mail_tasks.rake
|
455
|
+
- lib/tasks/infinite_shelter/sitemap.rb
|
456
|
+
- lib/tasks/piousbox/sitemap.rb
|
457
|
+
- lib/tasks/publish2_wordpress_tasks.rake
|
458
|
+
- lib/tasks/scrape_reddit_tasks.rake-bk
|
459
|
+
- lib/tasks/trash/email_tasks.rake-trash
|
460
|
+
- lib/tasks/trash/sitemap_tasks.rake-trash
|
461
|
+
- lib/tasks/wasya_co/sitemap.rb
|
462
|
+
- lib/tasks/wco_email_tasks.rake
|
463
|
+
- lib/wco_email.rb
|
464
|
+
- lib/wco_email/README_email_actions.rb
|
465
|
+
- lib/wco_email/README_email_contexts.rb
|
466
|
+
- lib/wco_email/engine.rb
|
467
|
+
homepage: https://wasya.co
|
468
|
+
licenses:
|
469
|
+
- Proprietary
|
470
|
+
metadata:
|
471
|
+
homepage_uri: https://wasya.co
|
472
|
+
source_code_uri: https://wasya.co
|
473
|
+
changelog_uri: https://wasya.co
|
474
|
+
post_install_message:
|
475
|
+
rdoc_options: []
|
476
|
+
require_paths:
|
477
|
+
- lib
|
478
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
479
|
+
requirements:
|
480
|
+
- - ">="
|
481
|
+
- !ruby/object:Gem::Version
|
482
|
+
version: '0'
|
483
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
484
|
+
requirements:
|
485
|
+
- - ">="
|
486
|
+
- !ruby/object:Gem::Version
|
487
|
+
version: '0'
|
488
|
+
requirements: []
|
489
|
+
rubygems_version: 3.1.6
|
490
|
+
signing_key:
|
491
|
+
specification_version: 4
|
492
|
+
summary: Wco Email
|
493
|
+
test_files: []
|