{"id":25915858,"url":"https://github.com/rykov/actionmailer-javamail","last_synced_at":"2025-03-03T12:18:01.675Z","repository":{"id":564800,"uuid":"196064","full_name":"rykov/actionmailer-javamail","owner":"rykov","description":"JavaMail delivery method for ActionMailer","archived":false,"fork":false,"pushed_at":"2009-05-15T19:48:48.000Z","size":103,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-01T05:04:33.416Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://github.com/rykov/actionmailer-javamail","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rykov.png","metadata":{"files":{"readme":"README.txt","changelog":"History.txt","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-05-08T19:18:13.000Z","updated_at":"2025-02-22T05:17:59.000Z","dependencies_parsed_at":"2022-07-07T14:17:56.504Z","dependency_job_id":null,"html_url":"https://github.com/rykov/actionmailer-javamail","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rykov%2Factionmailer-javamail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rykov%2Factionmailer-javamail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rykov%2Factionmailer-javamail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rykov%2Factionmailer-javamail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rykov","download_url":"https://codeload.github.com/rykov/actionmailer-javamail/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241317620,"owners_count":19943203,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-03T12:18:01.097Z","updated_at":"2025-03-03T12:18:01.668Z","avatar_url":"https://github.com/rykov.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"= actionmailer-javamail\n\n== DESCRIPTION:\n\nActionMailer-JavaMail allows the emails to be delivered via the JavaMail library.  This allows to \nexpand the capabilities of ActionMailer in the jRuby environment via existing JavaMail capabilities.   \n\nThe current capabilities are only implemented to send outgoing email without any support for incoming email.\n\nAction Mailer is the part of the Ruby on Rails framework that's designing email-service layers. \n\n== FEATURES/PROBLEMS:\n\n* Support for SMTP, SMTPS\n* Support for DKIM message signing\n* Support for Google App Engine \n* [Problem] No unit tests\n\n== REQUIREMENTS:\n\n* ActionMailer 2.3.2 \n* Recent JavaMail libraries in your CLASSPATH  \n\n== INSTALL:\n\n* sudo gem install actionmailer-javamail \n\n== CONFIGURATION:\n\nIn your config/environment.rb, add the following:\n\n  config.gem \"actionmailer-javamail\", :lib =\u003e 'java_mail' if defined?(JRUBY_VERSION)\n\nIn one of your config/initializers files, add the following:\n\n  ActionMailer::Base.delivery_method = :javamail\n  ActionMailer::Base.javamail_settings = {\n    :protocol  =\u003e :smtps,\n    :address   =\u003e 'smtp.gmail.com',\n    :port      =\u003e 465,\n    :domain    =\u003e 'mydomain.com',\n    :user_name =\u003e 'user@gmail.com',\n    :password  =\u003e 'password',\n    :dkim      =\u003e { :domain =\u003e 'mydomain.com', :selector =\u003e 'mysel', :key_file =\u003e KEY_FILE_PATH } \n  }\n\n  :protocol  - the possible values are :smtp, :smtps, or :gm. (:gm is the Google App Engine protocol)\n  :address   - allows you to use a remote server\n  :port      - currently a required option for SMTP port\n  :domain    - domain to be specified in HELO command\n  :user_name - user_name for server authentication\n  :password  - password for server authentication\n  :dkim      - (optional) arguments for DKIM signing. Key file needs to be in DER format \n\n== GOOGLE APP ENGINE:\n\nActionMailer-JavaMail allows to interface with the Mail API within the Google App Engine.\nBelow is the simple configuration that you should place in a config/initializers file:\n\n  ActionMailer::Base.delivery_method = :javamail\n  ActionMailer::Base.javamail_settings = { :protocol =\u003e :gm }\n\nThat's it!\n\n== REFERENCES:\n\n  * The gem includes a copy of DKIM message signing library\n    http://dkim-javamail.sourceforge.net \n\n  * The following patch was applied to the library\n    http://gist.github.com/108966\n\n== LICENSE:\n\n(The MIT License)\n\nCopyright (c) 2009  Michael Rykov \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frykov%2Factionmailer-javamail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frykov%2Factionmailer-javamail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frykov%2Factionmailer-javamail/lists"}