aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Landauer <matthew@openaustralia.org>2012-10-11 08:28:45 +1100
committerMatthew Landauer <matthew@openaustralia.org>2012-10-11 08:28:45 +1100
commit71e477fa694f3533f23965cfb6bc41962dd10025 (patch)
treea6941baa4dc6d8382d362982cb447ea93b78e2a0
parent90af30c034a87f9ccb3f0f461db9e7d482edaacd (diff)
Updated wording of error
-rw-r--r--app/models/exim_log.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/exim_log.rb b/app/models/exim_log.rb
index 83d79d433..ace9d422b 100644
--- a/app/models/exim_log.rb
+++ b/app/models/exim_log.rb
@@ -185,7 +185,7 @@ class EximLog < ActiveRecord::Base
unless request_sent?(ir)
# It's very important the envelope from is set for avoiding spam filter reasons - this
# effectively acts as a check for that.
- $stderr.puts("failed to find request sending Exim line for request id " + ir.id.to_s + " " + ir.url_title + " (check envelope from is being set to request address in Ruby, and load-exim-logs crontab is working)") # *** don't comment out this STDERR line, it is the point of the function!
+ $stderr.puts("failed to find request sending in MTA logs for request id " + ir.id.to_s + " " + ir.url_title + " (check envelope from is being set to request address in Ruby, and load-exim-logs crontab is working)") # *** don't comment out this STDERR line, it is the point of the function!
ok = false
end
end