aboutsummaryrefslogtreecommitdiffstats
path: root/script/handle-mail-replies.rb
diff options
context:
space:
mode:
authorMatthew Landauer <matthew@openaustralia.org>2013-01-28 10:55:37 +1100
committerMatthew Landauer <matthew@openaustralia.org>2013-01-28 11:04:28 +1100
commitc799e4184c3f14e7770afa514621c72ebc408c52 (patch)
tree0abbf9861176cb6315b48489702c2c7623dfc52a /script/handle-mail-replies.rb
parent39e879cfe57a61132c4e2dbc57a0f578e3ba1a3e (diff)
Calling TMail::Mail#base64_decode does not modify the mail object so doesn't do anything as used here
Diffstat (limited to 'script/handle-mail-replies.rb')
-rwxr-xr-xscript/handle-mail-replies.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/handle-mail-replies.rb b/script/handle-mail-replies.rb
index 73fca33c3..4e35ee0cf 100755
--- a/script/handle-mail-replies.rb
+++ b/script/handle-mail-replies.rb
@@ -30,7 +30,7 @@ def main(in_test_mode)
Dir.chdir($alaveteli_dir) do
raw_message = $stdin.read
begin
- message = MailHandler.mail_from_raw_email(raw_message, decode=false)
+ message = MailHandler.mail_from_raw_email(raw_message)
rescue
# Error parsing message. Just pass it on, to be on the safe side.
forward_on(raw_message) unless in_test_mode