2011-05-29 00:39:45 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
begin
|
|
|
|
require 'mail'
|
|
|
|
rescue LoadError
|
|
|
|
require 'rubygems'
|
|
|
|
require 'mail'
|
|
|
|
end
|
|
|
|
|
|
|
|
require 'optparse'
|
|
|
|
|
|
|
|
options = {:smtp_ip => '127.0.0.1', :smtp_port => 1025}
|
|
|
|
|
|
|
|
OptionParser.new do |parser|
|
|
|
|
parser.banner = <<-BANNER.gsub /^ +/, ""
|
|
|
|
Usage: catchmail [options]
|
|
|
|
sendmail-like interface to forward mail to MailCatcher.
|
|
|
|
BANNER
|
|
|
|
|
|
|
|
parser.on('--ip IP') do |ip|
|
|
|
|
options[:smtp_ip] = ip
|
|
|
|
end
|
|
|
|
|
|
|
|
parser.on('--smtp-ip IP', 'Set the ip address of the smtp server') do |ip|
|
|
|
|
options[:smtp_ip] = ip
|
|
|
|
end
|
|
|
|
|
|
|
|
parser.on('--smtp-port PORT', Integer, 'Set the port of the smtp server') do |port|
|
|
|
|
options[:smtp_port] = port
|
|
|
|
end
|
|
|
|
|
2012-01-23 02:29:10 -05:00
|
|
|
parser.on('-f FROM', 'Set the sending address') do |from|
|
|
|
|
options[:from] = from
|
|
|
|
end
|
2014-03-17 01:31:05 -04:00
|
|
|
|
2013-09-05 11:05:08 -04:00
|
|
|
parser.on('-oi', 'Ignored option -oi') do |ignored|
|
|
|
|
end
|
|
|
|
parser.on('-t', 'Ignored option -t') do |ignored|
|
|
|
|
end
|
|
|
|
parser.on('-q', 'Ignored option -q') do |ignored|
|
|
|
|
end
|
2012-01-23 02:29:10 -05:00
|
|
|
|
2013-05-13 07:27:06 -04:00
|
|
|
parser.on('-x', '--no-exit', 'Can\'t exit from the application') do
|
|
|
|
options[:no_exit] = true
|
|
|
|
end
|
|
|
|
|
2011-05-29 00:39:45 -04:00
|
|
|
parser.on('-h', '--help', 'Display this help information') do
|
|
|
|
puts parser
|
|
|
|
exit!
|
|
|
|
end
|
|
|
|
end.parse!
|
|
|
|
|
|
|
|
Mail.defaults do
|
|
|
|
delivery_method :smtp,
|
|
|
|
:address => options[:smtp_ip],
|
|
|
|
:port => options[:smtp_port]
|
|
|
|
end
|
|
|
|
|
2012-01-23 02:29:10 -05:00
|
|
|
message = Mail.new ARGF.read
|
|
|
|
message.return_path = options[:from] if options[:from]
|
|
|
|
message.deliver
|