├── test ├── dummy │ ├── log │ │ └── .keep │ ├── lib │ │ └── assets │ │ │ └── .keep │ ├── public │ │ ├── favicon.ico │ │ ├── apple-touch-icon.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── 500.html │ │ ├── 422.html │ │ └── 404.html │ ├── .ruby-version │ ├── app │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── models │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── application_record.rb │ │ ├── controllers │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── application_controller.rb │ │ ├── views │ │ │ ├── tag_mailer │ │ │ │ ├── single_tag.html.erb │ │ │ │ └── multi_tag.text.erb │ │ │ ├── complex_mailer │ │ │ │ ├── complex_email.html.erb │ │ │ │ └── complex_email.text.erb │ │ │ ├── layouts │ │ │ │ ├── mailer.text.erb │ │ │ │ ├── mailer.html.erb │ │ │ │ └── application.html.erb │ │ │ ├── test_mailer │ │ │ │ ├── welcome_email.html.erb │ │ │ │ └── welcome_email.text.erb │ │ │ ├── full_name_mailer │ │ │ │ ├── full_name_email.html.erb │ │ │ │ └── full_name_email.text.erb │ │ │ ├── idempotent_mailer │ │ │ │ ├── idempotent_email.html.erb │ │ │ │ └── idempotent_email.text.erb │ │ │ ├── multipart_mailer │ │ │ │ ├── no_html_email.text.erb │ │ │ │ └── no_text_email.html.erb │ │ │ ├── html_mailer │ │ │ │ └── html_only_email.html.erb │ │ │ ├── list_unsubscribe_mailer │ │ │ │ ├── unsubscribe.html.erb │ │ │ │ └── unsubscribe.text.erb │ │ │ └── plaintext_mailer │ │ │ │ └── plain_only_email.text.erb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── mailboxes │ │ │ └── application_mailbox.rb │ │ ├── mailers │ │ │ ├── application_mailer.rb │ │ │ ├── test_mailer.rb │ │ │ ├── html_mailer.rb │ │ │ ├── plaintext_mailer.rb │ │ │ ├── full_name_mailer.rb │ │ │ ├── idempotent_mailer.rb │ │ │ ├── list_unsubscribe_mailer.rb │ │ │ ├── complex_mailer.rb │ │ │ ├── tag_mailer.rb │ │ │ └── multipart_mailer.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ └── javascript │ │ │ └── packs │ │ │ └── application.js │ ├── config │ │ ├── credentials │ │ │ ├── test.key │ │ │ └── test.yml.enc │ │ ├── spring.rb │ │ ├── environment.rb │ │ ├── routes.rb │ │ ├── initializers │ │ │ ├── mime_types.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── application_controller_renderer.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── assets.rb │ │ │ ├── wrap_parameters.rb │ │ │ ├── inflections.rb │ │ │ └── content_security_policy.rb │ │ ├── cable.yml │ │ ├── boot.rb │ │ ├── application.rb │ │ ├── database.yml │ │ ├── locales │ │ │ └── en.yml │ │ ├── storage.yml │ │ ├── puma.rb │ │ └── environments │ │ │ ├── test.rb │ │ │ ├── development.rb │ │ │ └── production.rb │ ├── bin │ │ ├── rake │ │ ├── rails │ │ └── setup │ ├── config.ru │ ├── test │ │ └── mailers │ │ │ ├── previews │ │ │ └── test_mailer_preview.rb │ │ │ └── test_mailer_test.rb │ ├── Rakefile │ └── db │ │ ├── migrate │ │ ├── 20211222122020_create_action_mailbox_tables.action_mailbox.rb │ │ └── 20211222122019_create_active_storage_tables.active_storage.rb │ │ └── schema.rb ├── logo.png ├── mailpace │ ├── ingress_test.rb │ ├── email_helper.rb │ └── mailer_test.rb └── test_helper.rb ├── lib ├── mailpace-rails │ ├── version.rb │ └── engine.rb └── mailpace-rails.rb ├── bin └── test ├── .gitignore ├── config └── routes.rb ├── Rakefile ├── Gemfile ├── MIT-LICENSE ├── mailpace-rails.gemspec ├── CHANGELOG.md ├── app └── controllers │ └── action_mailbox │ └── ingresses │ └── mailpace │ └── inbound_emails_controller.rb ├── .circleci └── config.yml ├── README.md └── Gemfile.lock /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/tag_mailer/single_tag.html.erb: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/dummy/app/views/complex_mailer/complex_email.html.erb: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/app/views/test_mailer/welcome_email.html.erb: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/dummy/app/views/full_name_mailer/full_name_email.html.erb: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/dummy/app/views/idempotent_mailer/idempotent_email.html.erb: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/dummy/app/views/multipart_mailer/no_html_email.text.erb: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /test/dummy/app/views/tag_mailer/multi_tag.text.erb: -------------------------------------------------------------------------------- 1 | test text only -------------------------------------------------------------------------------- /test/dummy/app/views/complex_mailer/complex_email.text.erb: -------------------------------------------------------------------------------- 1 | test text only -------------------------------------------------------------------------------- /test/dummy/app/views/html_mailer/html_only_email.html.erb: -------------------------------------------------------------------------------- 1 |
If you are the application owner check the logs for more information.
64 |Maybe you tried to change something you didn't have access to.
63 |If you are the application owner check the logs for more information.
65 |You may have mistyped the address or the page may have moved.
63 |If you are the application owner check the logs for more information.
65 |