├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.0.12 ├── LICENSE ├── README.md ├── Rakefile ├── example ├── example.conf └── to_cc_bcc_key.conf ├── fluent-plugin-mail.gemspec ├── lib └── fluent │ └── plugin │ └── out_mail.rb └── test ├── helper.rb └── plugin └── test_out_mail.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.0.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/Gemfile.0.12 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/Rakefile -------------------------------------------------------------------------------- /example/example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/example/example.conf -------------------------------------------------------------------------------- /example/to_cc_bcc_key.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/example/to_cc_bcc_key.conf -------------------------------------------------------------------------------- /fluent-plugin-mail.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/fluent-plugin-mail.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/out_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/lib/fluent/plugin/out_mail.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_out_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u-ichi/fluent-plugin-mail/HEAD/test/plugin/test_out_mail.rb --------------------------------------------------------------------------------