adzap-ar_mailer 2.1.3 → 2.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/lib/action_mailer/ar_sendmail.rb +6 -3
- metadata +1 -1
data/History.txt
CHANGED
@@ -3,6 +3,11 @@ require 'net/smtp'
|
|
3
3
|
require 'smtp_tls' unless Net::SMTP.instance_methods.include?("enable_starttls_auto")
|
4
4
|
require 'rubygems'
|
5
5
|
|
6
|
+
module ActionMailer; end
|
7
|
+
# This should get loaded by the environment later but for some reason fails with
|
8
|
+
# the github namespaced gem and succeeds with a local gem build install.
|
9
|
+
require 'action_mailer/ar_mailer'
|
10
|
+
|
6
11
|
##
|
7
12
|
# Hack in RSET
|
8
13
|
|
@@ -36,14 +41,12 @@ end
|
|
36
41
|
# * --daemon
|
37
42
|
# * --mailq
|
38
43
|
|
39
|
-
module ActionMailer; end
|
40
|
-
|
41
44
|
class ActionMailer::ARSendmail
|
42
45
|
|
43
46
|
##
|
44
47
|
# The version of ActionMailer::ARSendmail you are running.
|
45
48
|
|
46
|
-
VERSION = '2.1.
|
49
|
+
VERSION = '2.1.4'
|
47
50
|
|
48
51
|
##
|
49
52
|
# Maximum number of times authentication will be consecutively retried
|