Hi Thomas,
asaik, I don't think there is a plugin specific to postfix per se (here is the list of all rubygems-registered plugins:
http://fluentd.org/plugin/), but some users have used fluentd to parse Postfix mail logs.
For example, these blog articles (albeit written in Japanese) explains how he uses fluentd to parse postfix maillogs and store them in redis:
part 1:
http://inokara.hateblo.jp/entry/2013/07/11/071017part 2:
http://inokara.hateblo.jp/entry/2013/07/13/222120In particular, he uses the in_tail plugin to parse maillogs (I am copy-and-pasting the config file snippet from part 1 here)
<source>
type tail
format /^(?<date>[^ ]+) (?<host>[^ ]+) (?<process>[^:]+): (?<message>((?<key>[^ :]+)[ :])? ?((to|from)=<(?<address>[^>]+)>)?.*)$/
path /var/log/mail.log
tag redis.maillog
pos_file /tmp/fluent.pos
</source>
Let me know if you have further questions.
Kiyoto