mirror of
https://github.com/imapsync/imapsync.git
synced 2025-07-20 09:15:53 +02:00
7 lines
157 B
Ruby
Executable file
7 lines
157 B
Ruby
Executable file
#!/usr/bin/ruby
|
|
|
|
require 'mail'
|
|
message = Mail.read_from_string(STDIN.read)
|
|
message.from = 'emiliano.heyns@han.nl' if message.sender.nil?
|
|
puts message.to_s
|
|
|