trabajo-afectivo/app/models/channel/mail_stdin.rb

12 lines
228 B
Ruby
Raw Normal View History

2014-02-03 19:23:00 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
class Channel::MailStdin < Channel::EmailParser
def initialize
puts 'read main from STDIN'
msg = ARGF.read
process( {}, msg )
end
end