├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── BSDL ├── COPYING ├── Gemfile ├── LICENSE.txt ├── NEWS.md ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib └── net │ ├── smtp.rb │ └── smtp │ ├── auth_cram_md5.rb │ ├── auth_login.rb │ ├── auth_plain.rb │ ├── auth_xoauth2.rb │ └── authenticator.rb ├── net-smtp.gemspec └── test └── net ├── fixtures ├── Makefile ├── cacert.pem ├── dhparams.pem ├── server.crt └── server.key └── smtp ├── test_response.rb ├── test_smtp.rb ├── test_sslcontext.rb └── test_starttls.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/BSDL -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/net/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/lib/net/smtp.rb -------------------------------------------------------------------------------- /lib/net/smtp/auth_cram_md5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/lib/net/smtp/auth_cram_md5.rb -------------------------------------------------------------------------------- /lib/net/smtp/auth_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/lib/net/smtp/auth_login.rb -------------------------------------------------------------------------------- /lib/net/smtp/auth_plain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/lib/net/smtp/auth_plain.rb -------------------------------------------------------------------------------- /lib/net/smtp/auth_xoauth2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/lib/net/smtp/auth_xoauth2.rb -------------------------------------------------------------------------------- /lib/net/smtp/authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/lib/net/smtp/authenticator.rb -------------------------------------------------------------------------------- /net-smtp.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/net-smtp.gemspec -------------------------------------------------------------------------------- /test/net/fixtures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/fixtures/Makefile -------------------------------------------------------------------------------- /test/net/fixtures/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/fixtures/cacert.pem -------------------------------------------------------------------------------- /test/net/fixtures/dhparams.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/fixtures/dhparams.pem -------------------------------------------------------------------------------- /test/net/fixtures/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/fixtures/server.crt -------------------------------------------------------------------------------- /test/net/fixtures/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/fixtures/server.key -------------------------------------------------------------------------------- /test/net/smtp/test_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/smtp/test_response.rb -------------------------------------------------------------------------------- /test/net/smtp/test_smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/smtp/test_smtp.rb -------------------------------------------------------------------------------- /test/net/smtp/test_sslcontext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/smtp/test_sslcontext.rb -------------------------------------------------------------------------------- /test/net/smtp/test_starttls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruby/net-smtp/HEAD/test/net/smtp/test_starttls.rb --------------------------------------------------------------------------------