u-ichi / fluent-plugin-mail

Fluentd output plugin to send mail
https://rubygems.org/gems/fluent-plugin-mail
Other
48 stars 20 forks source link

Add a secret parameter #26

Closed cosmo0920 closed 9 years ago

cosmo0920 commented 9 years ago

Fluentd 0.12.13 or later supports secret parameter feature. https://github.com/fluent/fluentd/blob/4e3a4ecb/ChangeLog#L34

This feature works as below:

  <match **>
    type mail
    host smtp.gmail.com
    port 587
    domain gmail.com
    from SOURCE
    to DEST1,DEST2,DEST3
    subject SUBJECT
    user USERNAME( ex. hoge@gmail.com)
    password xxxxxx
    enable_starttls_auto true
    enable_tls false
    out_keys tag,foo,message
    time_locale UTC
  </match>
</ROOT>
repeatedly commented 9 years ago

@sonots @u-ichi ping?

sonots commented 9 years ago

What happens if fluentd version is v0.10?

cosmo0920 commented 9 years ago

There is no effect.

sonots commented 9 years ago

Thanks, I will merge and release new version

sonots commented 9 years ago

v0.2.2 is released!

cosmo0920 commented 9 years ago

:tada: