scambra-ar_mailer 2.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +135 -0
- data/LICENSE.txt +28 -0
- data/README.rdoc +139 -0
- data/Rakefile +54 -0
- data/bin/ar_sendmail +6 -0
- data/generators/ar_mailer/ar_mailer_generator.rb +25 -0
- data/generators/ar_mailer/templates/migration.rb +15 -0
- data/generators/ar_mailer/templates/model.rb +2 -0
- data/lib/action_mailer/ar_mailer.rb +31 -0
- data/lib/action_mailer/ar_sendmail.rb +488 -0
- data/lib/smtp_tls.rb +105 -0
- data/share/bsd/ar_sendmail +30 -0
- data/share/linux/ar_sendmail +78 -0
- data/share/linux/ar_sendmail.conf +30 -0
- data/test/resources/action_mailer.rb +197 -0
- data/test/test_armailer.rb +46 -0
- data/test/test_arsendmail.rb +553 -0
- data/test/test_helper.rb +9 -0
- metadata +78 -0
@@ -0,0 +1,488 @@
|
|
1
|
+
require 'optparse'
|
2
|
+
require 'net/smtp'
|
3
|
+
require 'smtp_tls' unless Net::SMTP.instance_methods.include?("enable_starttls_auto")
|
4
|
+
|
5
|
+
##
|
6
|
+
# Hack in RSET
|
7
|
+
|
8
|
+
module Net # :nodoc:
|
9
|
+
class SMTP # :nodoc:
|
10
|
+
|
11
|
+
unless instance_methods.include? 'reset' then
|
12
|
+
##
|
13
|
+
# Resets the SMTP connection.
|
14
|
+
|
15
|
+
def reset
|
16
|
+
getok 'RSET'
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
##
|
24
|
+
# ActionMailer::ARSendmail delivers email from the email table to the
|
25
|
+
# SMTP server configured in your application's config/environment.rb.
|
26
|
+
# ar_sendmail does not work with sendmail delivery.
|
27
|
+
#
|
28
|
+
# ar_mailer can deliver to SMTP with TLS using smtp_tls.rb borrowed from Kyle
|
29
|
+
# Maxwell's action_mailer_optional_tls plugin. Simply set the :tls option in
|
30
|
+
# ActionMailer::Base's smtp_settings to true to enable TLS.
|
31
|
+
#
|
32
|
+
# See ar_sendmail -h for the full list of supported options.
|
33
|
+
#
|
34
|
+
# The interesting options are:
|
35
|
+
# * --daemon
|
36
|
+
# * --mailq
|
37
|
+
|
38
|
+
module ActionMailer; end
|
39
|
+
|
40
|
+
class ActionMailer::ARSendmail
|
41
|
+
|
42
|
+
##
|
43
|
+
# The version of ActionMailer::ARSendmail you are running.
|
44
|
+
|
45
|
+
VERSION = '2.1.5'
|
46
|
+
|
47
|
+
##
|
48
|
+
# Maximum number of times authentication will be consecutively retried
|
49
|
+
|
50
|
+
MAX_AUTH_FAILURES = 2
|
51
|
+
|
52
|
+
##
|
53
|
+
# Email delivery attempts per run
|
54
|
+
|
55
|
+
attr_accessor :batch_size
|
56
|
+
|
57
|
+
##
|
58
|
+
# Seconds to delay between runs
|
59
|
+
|
60
|
+
attr_accessor :delay
|
61
|
+
|
62
|
+
##
|
63
|
+
# Maximum age of emails in seconds before they are removed from the queue.
|
64
|
+
|
65
|
+
attr_accessor :max_age
|
66
|
+
|
67
|
+
##
|
68
|
+
# Be verbose
|
69
|
+
|
70
|
+
attr_accessor :verbose
|
71
|
+
|
72
|
+
|
73
|
+
##
|
74
|
+
# True if only one delivery attempt will be made per call to run
|
75
|
+
|
76
|
+
attr_reader :once
|
77
|
+
|
78
|
+
##
|
79
|
+
# Times authentication has failed
|
80
|
+
|
81
|
+
attr_accessor :failed_auth_count
|
82
|
+
|
83
|
+
@@pid_file = nil
|
84
|
+
|
85
|
+
def self.remove_pid_file
|
86
|
+
if @@pid_file
|
87
|
+
require 'shell'
|
88
|
+
sh = Shell.new
|
89
|
+
sh.rm @@pid_file
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
##
|
94
|
+
# Prints a list of unsent emails and the last delivery attempt, if any.
|
95
|
+
#
|
96
|
+
# If ActiveRecord::Timestamp is not being used the arrival time will not be
|
97
|
+
# known. See http://api.rubyonrails.org/classes/ActiveRecord/Timestamp.html
|
98
|
+
# to learn how to enable ActiveRecord::Timestamp.
|
99
|
+
|
100
|
+
def self.mailq
|
101
|
+
emails = ActionMailer::Base.email_class.find :all
|
102
|
+
|
103
|
+
if emails.empty? then
|
104
|
+
puts "Mail queue is empty"
|
105
|
+
return
|
106
|
+
end
|
107
|
+
|
108
|
+
total_size = 0
|
109
|
+
|
110
|
+
puts "-Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient-------"
|
111
|
+
emails.each do |email|
|
112
|
+
size = email.mail.length
|
113
|
+
total_size += size
|
114
|
+
|
115
|
+
create_timestamp = email.created_on rescue
|
116
|
+
email.created_at rescue
|
117
|
+
Time.at(email.created_date) rescue # for Robot Co-op
|
118
|
+
nil
|
119
|
+
|
120
|
+
created = if create_timestamp.nil? then
|
121
|
+
' Unknown'
|
122
|
+
else
|
123
|
+
create_timestamp.strftime '%a %b %d %H:%M:%S'
|
124
|
+
end
|
125
|
+
|
126
|
+
puts "%10d %8d %s %s" % [email.id, size, created, email.from]
|
127
|
+
if email.last_send_attempt > 0 then
|
128
|
+
puts "Last send attempt: #{Time.at email.last_send_attempt}"
|
129
|
+
end
|
130
|
+
puts " #{email.to}"
|
131
|
+
puts
|
132
|
+
end
|
133
|
+
|
134
|
+
puts "-- #{total_size/1024} Kbytes in #{emails.length} Requests."
|
135
|
+
end
|
136
|
+
|
137
|
+
##
|
138
|
+
# Processes command line options in +args+
|
139
|
+
|
140
|
+
def self.process_args(args)
|
141
|
+
name = File.basename $0
|
142
|
+
|
143
|
+
options = {}
|
144
|
+
options[:Chdir] = '.'
|
145
|
+
options[:Daemon] = false
|
146
|
+
options[:Delay] = 60
|
147
|
+
options[:MaxAge] = 86400 * 7
|
148
|
+
options[:Once] = false
|
149
|
+
options[:RailsEnv] = ENV['RAILS_ENV']
|
150
|
+
options[:Pidfile] = options[:Chdir] + '/log/ar_sendmail.pid'
|
151
|
+
|
152
|
+
opts = OptionParser.new do |opts|
|
153
|
+
opts.banner = "Usage: #{name} [options]"
|
154
|
+
opts.separator ''
|
155
|
+
|
156
|
+
opts.separator "#{name} scans the email table for new messages and sends them to the"
|
157
|
+
opts.separator "website's configured SMTP host."
|
158
|
+
opts.separator ''
|
159
|
+
opts.separator "#{name} must be run from a Rails application's root."
|
160
|
+
|
161
|
+
opts.separator ''
|
162
|
+
opts.separator 'Sendmail options:'
|
163
|
+
|
164
|
+
opts.on("-b", "--batch-size BATCH_SIZE",
|
165
|
+
"Maximum number of emails to send per delay",
|
166
|
+
"Default: Deliver all available emails", Integer) do |batch_size|
|
167
|
+
options[:BatchSize] = batch_size
|
168
|
+
end
|
169
|
+
|
170
|
+
opts.on( "--delay DELAY",
|
171
|
+
"Delay between checks for new mail",
|
172
|
+
"in the database",
|
173
|
+
"Default: #{options[:Delay]}", Integer) do |delay|
|
174
|
+
options[:Delay] = delay
|
175
|
+
end
|
176
|
+
|
177
|
+
opts.on( "--max-age MAX_AGE",
|
178
|
+
"Maxmimum age for an email. After this",
|
179
|
+
"it will be removed from the queue.",
|
180
|
+
"Set to 0 to disable queue cleanup.",
|
181
|
+
"Default: #{options[:MaxAge]} seconds", Integer) do |max_age|
|
182
|
+
options[:MaxAge] = max_age
|
183
|
+
end
|
184
|
+
|
185
|
+
opts.on("-o", "--once",
|
186
|
+
"Only check for new mail and deliver once",
|
187
|
+
"Default: #{options[:Once]}") do |once|
|
188
|
+
options[:Once] = once
|
189
|
+
end
|
190
|
+
|
191
|
+
opts.on("-d", "--daemonize",
|
192
|
+
"Run as a daemon process",
|
193
|
+
"Default: #{options[:Daemon]}") do |daemon|
|
194
|
+
options[:Daemon] = true
|
195
|
+
end
|
196
|
+
|
197
|
+
opts.on("-p", "--pidfile PIDFILE",
|
198
|
+
"Set the pidfile location",
|
199
|
+
"Default: #{options[:Chdir]}#{options[:Pidfile]}", String) do |pidfile|
|
200
|
+
options[:Pidfile] = pidfile
|
201
|
+
end
|
202
|
+
|
203
|
+
opts.on( "--mailq",
|
204
|
+
"Display a list of emails waiting to be sent") do |mailq|
|
205
|
+
options[:MailQ] = true
|
206
|
+
end
|
207
|
+
|
208
|
+
opts.separator ''
|
209
|
+
opts.separator 'Setup Options:'
|
210
|
+
|
211
|
+
opts.separator ''
|
212
|
+
opts.separator 'Generic Options:'
|
213
|
+
|
214
|
+
opts.on("-c", "--chdir PATH",
|
215
|
+
"Use PATH for the application path",
|
216
|
+
"Default: #{options[:Chdir]}") do |path|
|
217
|
+
usage opts, "#{path} is not a directory" unless File.directory? path
|
218
|
+
usage opts, "#{path} is not readable" unless File.readable? path
|
219
|
+
options[:Chdir] = path
|
220
|
+
end
|
221
|
+
|
222
|
+
opts.on("-e", "--environment RAILS_ENV",
|
223
|
+
"Set the RAILS_ENV constant",
|
224
|
+
"Default: #{options[:RailsEnv]}") do |env|
|
225
|
+
options[:RailsEnv] = env
|
226
|
+
end
|
227
|
+
|
228
|
+
opts.on("-v", "--[no-]verbose",
|
229
|
+
"Be verbose",
|
230
|
+
"Default: #{options[:Verbose]}") do |verbose|
|
231
|
+
options[:Verbose] = verbose
|
232
|
+
end
|
233
|
+
|
234
|
+
opts.on("-h", "--help",
|
235
|
+
"You're looking at it") do
|
236
|
+
usage opts
|
237
|
+
end
|
238
|
+
|
239
|
+
opts.on("--version", "Version of ARMailer") do
|
240
|
+
usage "ar_mailer #{VERSION} (adzap fork)"
|
241
|
+
end
|
242
|
+
|
243
|
+
opts.separator ''
|
244
|
+
end
|
245
|
+
|
246
|
+
opts.parse! args
|
247
|
+
|
248
|
+
ENV['RAILS_ENV'] = options[:RailsEnv]
|
249
|
+
|
250
|
+
Dir.chdir options[:Chdir] do
|
251
|
+
begin
|
252
|
+
require 'config/environment'
|
253
|
+
require 'action_mailer/ar_mailer'
|
254
|
+
rescue LoadError
|
255
|
+
usage opts, <<-EOF
|
256
|
+
#{name} must be run from a Rails application's root to deliver email.
|
257
|
+
#{Dir.pwd} does not appear to be a Rails application root.
|
258
|
+
EOF
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
return options
|
263
|
+
end
|
264
|
+
|
265
|
+
##
|
266
|
+
# Processes +args+ and runs as appropriate
|
267
|
+
|
268
|
+
def self.run(args = ARGV)
|
269
|
+
options = process_args args
|
270
|
+
|
271
|
+
if options.include? :MailQ then
|
272
|
+
mailq
|
273
|
+
exit
|
274
|
+
end
|
275
|
+
|
276
|
+
if options[:Daemon] then
|
277
|
+
require 'webrick/server'
|
278
|
+
@@pid_file = File.expand_path(options[:Pidfile], options[:Chdir])
|
279
|
+
if File.exists? @@pid_file
|
280
|
+
# check to see if process is actually running
|
281
|
+
pid = ''
|
282
|
+
File.open(@@pid_file, 'r') {|f| pid = f.read.chomp }
|
283
|
+
if system("ps -p #{pid} | grep #{pid}") # returns true if process is running, o.w. false
|
284
|
+
$stderr.puts "Warning: The pid file #{@@pid_file} exists and ar_sendmail is running. Shutting down."
|
285
|
+
exit
|
286
|
+
else
|
287
|
+
# not running, so remove existing pid file and continue
|
288
|
+
self.remove_pid_file
|
289
|
+
$stderr.puts "ar_sendmail is not running. Removing existing pid file and starting up..."
|
290
|
+
end
|
291
|
+
end
|
292
|
+
WEBrick::Daemon.start
|
293
|
+
Dir.chdir options[:Chdir]
|
294
|
+
File.open(@@pid_file, 'w') {|f| f.write("#{Process.pid}\n")}
|
295
|
+
end
|
296
|
+
|
297
|
+
new(options).run
|
298
|
+
|
299
|
+
rescue SystemExit
|
300
|
+
raise
|
301
|
+
rescue SignalException
|
302
|
+
exit
|
303
|
+
rescue Exception => e
|
304
|
+
$stderr.puts "Unhandled exception #{e.message}(#{e.class}):"
|
305
|
+
$stderr.puts "\t#{e.backtrace.join "\n\t"}"
|
306
|
+
exit 1
|
307
|
+
end
|
308
|
+
|
309
|
+
##
|
310
|
+
# Prints a usage message to $stderr using +opts+ and exits
|
311
|
+
|
312
|
+
def self.usage(opts, message = nil)
|
313
|
+
if message then
|
314
|
+
$stderr.puts message
|
315
|
+
$stderr.puts
|
316
|
+
end
|
317
|
+
|
318
|
+
$stderr.puts opts
|
319
|
+
exit 1
|
320
|
+
end
|
321
|
+
|
322
|
+
##
|
323
|
+
# Creates a new ARSendmail.
|
324
|
+
#
|
325
|
+
# Valid options are:
|
326
|
+
# <tt>:BatchSize</tt>:: Maximum number of emails to send per delay
|
327
|
+
# <tt>:Delay</tt>:: Delay between deliver attempts
|
328
|
+
# <tt>:Once</tt>:: Only attempt to deliver emails once when run is called
|
329
|
+
# <tt>:Verbose</tt>:: Be verbose.
|
330
|
+
|
331
|
+
def initialize(options = {})
|
332
|
+
options[:Delay] ||= 60
|
333
|
+
options[:MaxAge] ||= 86400 * 7
|
334
|
+
|
335
|
+
@batch_size = options[:BatchSize]
|
336
|
+
@delay = options[:Delay]
|
337
|
+
@once = options[:Once]
|
338
|
+
@verbose = options[:Verbose]
|
339
|
+
@max_age = options[:MaxAge]
|
340
|
+
|
341
|
+
@failed_auth_count = 0
|
342
|
+
end
|
343
|
+
|
344
|
+
##
|
345
|
+
# Removes emails that have lived in the queue for too long. If max_age is
|
346
|
+
# set to 0, no emails will be removed.
|
347
|
+
|
348
|
+
def cleanup
|
349
|
+
return if @max_age == 0
|
350
|
+
timeout = Time.now - @max_age
|
351
|
+
conditions = ['last_send_attempt > 0 and created_on < ?', timeout]
|
352
|
+
mail = ActionMailer::Base.email_class.destroy_all conditions
|
353
|
+
|
354
|
+
log "expired #{mail.length} emails from the queue"
|
355
|
+
end
|
356
|
+
|
357
|
+
##
|
358
|
+
# Delivers +emails+ to ActionMailer's SMTP server and destroys them.
|
359
|
+
|
360
|
+
def deliver(emails)
|
361
|
+
settings = [
|
362
|
+
smtp_settings[:domain],
|
363
|
+
(smtp_settings[:user] || smtp_settings[:user_name]),
|
364
|
+
smtp_settings[:password],
|
365
|
+
smtp_settings[:authentication]
|
366
|
+
]
|
367
|
+
|
368
|
+
smtp = Net::SMTP.new(smtp_settings[:address], smtp_settings[:port])
|
369
|
+
if smtp.respond_to?(:enable_starttls_auto)
|
370
|
+
smtp.enable_starttls_auto unless smtp_settings[:tls] == false
|
371
|
+
else
|
372
|
+
settings << smtp_settings[:tls]
|
373
|
+
end
|
374
|
+
|
375
|
+
smtp.start(*settings) do |session|
|
376
|
+
@failed_auth_count = 0
|
377
|
+
until emails.empty? do
|
378
|
+
email = emails.shift
|
379
|
+
begin
|
380
|
+
res = session.send_message email.mail, email.from, email.to
|
381
|
+
email.destroy
|
382
|
+
log "sent email %011d from %s to %s: %p" %
|
383
|
+
[email.id, email.from, email.to, res]
|
384
|
+
rescue Net::SMTPFatalError => e
|
385
|
+
log "5xx error sending email %d, removing from queue: %p(%s):\n\t%s" %
|
386
|
+
[email.id, e.message, e.class, e.backtrace.join("\n\t")]
|
387
|
+
email.destroy
|
388
|
+
session.reset
|
389
|
+
rescue Net::SMTPServerBusy, Net::SMTPUnknownError, Net::SMTPSyntaxError, TimeoutError => e
|
390
|
+
email.last_send_attempt = Time.now.to_i
|
391
|
+
email.save rescue nil
|
392
|
+
log "error sending email %d: %p(%s):\n\t%s" %
|
393
|
+
[email.id, e.message, e.class, e.backtrace.join("\n\t")]
|
394
|
+
if e.is_a? Net::SMTPServerBusy
|
395
|
+
log "server too busy, sleeping #{@delay} seconds"
|
396
|
+
sleep delay
|
397
|
+
return
|
398
|
+
else
|
399
|
+
session.reset
|
400
|
+
end
|
401
|
+
end
|
402
|
+
end
|
403
|
+
end
|
404
|
+
rescue Net::SMTPAuthenticationError => e
|
405
|
+
@failed_auth_count += 1
|
406
|
+
if @failed_auth_count >= MAX_AUTH_FAILURES then
|
407
|
+
log "authentication error, giving up: #{e.message}"
|
408
|
+
raise e
|
409
|
+
else
|
410
|
+
log "authentication error, retrying: #{e.message}"
|
411
|
+
end
|
412
|
+
sleep delay
|
413
|
+
rescue Net::SMTPServerBusy, SystemCallError, OpenSSL::SSL::SSLError
|
414
|
+
# ignore SMTPServerBusy/EPIPE/ECONNRESET from Net::SMTP.start's ensure
|
415
|
+
end
|
416
|
+
|
417
|
+
##
|
418
|
+
# Prepares ar_sendmail for exiting
|
419
|
+
|
420
|
+
def do_exit
|
421
|
+
log "caught signal, shutting down"
|
422
|
+
self.class.remove_pid_file
|
423
|
+
exit
|
424
|
+
end
|
425
|
+
|
426
|
+
##
|
427
|
+
# Returns emails in email_class that haven't had a delivery attempt in the
|
428
|
+
# last 300 seconds.
|
429
|
+
|
430
|
+
def find_emails
|
431
|
+
options = { :conditions => ['last_send_attempt < ?', Time.now.to_i - 300] }
|
432
|
+
options[:limit] = batch_size unless batch_size.nil?
|
433
|
+
mail = ActionMailer::Base.email_class.find :all, options
|
434
|
+
|
435
|
+
log "found #{mail.length} emails to send"
|
436
|
+
mail
|
437
|
+
end
|
438
|
+
|
439
|
+
##
|
440
|
+
# Installs signal handlers to gracefully exit.
|
441
|
+
|
442
|
+
def install_signal_handlers
|
443
|
+
trap 'TERM' do do_exit end
|
444
|
+
trap 'INT' do do_exit end
|
445
|
+
end
|
446
|
+
|
447
|
+
##
|
448
|
+
# Logs +message+ if verbose
|
449
|
+
|
450
|
+
def log(message)
|
451
|
+
$stderr.puts message if @verbose
|
452
|
+
ActionMailer::Base.logger.info "ar_sendmail: #{message}"
|
453
|
+
end
|
454
|
+
|
455
|
+
##
|
456
|
+
# Scans for emails and delivers them every delay seconds. Only returns if
|
457
|
+
# once is true.
|
458
|
+
|
459
|
+
def run
|
460
|
+
install_signal_handlers
|
461
|
+
|
462
|
+
loop do
|
463
|
+
now = Time.now
|
464
|
+
begin
|
465
|
+
cleanup
|
466
|
+
emails = find_emails
|
467
|
+
deliver(emails) unless emails.empty?
|
468
|
+
ActionMailer::Base.logger.flush
|
469
|
+
rescue ActiveRecord::Transactions::TransactionError
|
470
|
+
end
|
471
|
+
break if @once
|
472
|
+
sleep @delay if now + @delay > Time.now
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
476
|
+
##
|
477
|
+
# Proxy to ActionMailer::Base::smtp_settings. See
|
478
|
+
# http://api.rubyonrails.org/classes/ActionMailer/Base.html
|
479
|
+
# for instructions on how to configure ActionMailer's SMTP server.
|
480
|
+
#
|
481
|
+
# Falls back to ::server_settings if ::smtp_settings doesn't exist for
|
482
|
+
# backwards compatibility.
|
483
|
+
|
484
|
+
def smtp_settings
|
485
|
+
ActionMailer::Base.smtp_settings rescue ActionMailer::Base.server_settings
|
486
|
+
end
|
487
|
+
|
488
|
+
end
|