diff options
author | Francis Irving <francis@mysociety.org> | 2010-03-20 22:56:52 +0000 |
---|---|---|
committer | Francis Irving <francis@mysociety.org> | 2010-03-20 22:56:52 +0000 |
commit | fc785063d4774e3ab52538b92fec6d402f5e4d2b (patch) | |
tree | ef56738e712a160e9baeb48a086e5770ab2e6f09 /lib | |
parent | 0aa3d2377525cdb9c170f78afcddec9724e3eb79 (diff) |
In case path not there
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tnef.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tnef.rb b/lib/tnef.rb index 7b7ce965f..2f200e3eb 100644 --- a/lib/tnef.rb +++ b/lib/tnef.rb @@ -9,7 +9,7 @@ class TNEF main = TMail::Mail.new main.set_content_type 'multipart', 'mixed', { 'boundary' => TMail.new_boundary } Dir.mktmpdir do |dir| - IO.popen("tnef -K -C #{dir}", "w") do |f| + IO.popen("/usr/bin/tnef -K -C #{dir}", "w") do |f| f.write(content) f.close if $?.signaled? |