commit dd2fac234674278ded48b2a3af669649fe3d1059
parent 8561c7b7549fe777587abdfa877b5a7c71510c4c
Author: Adam Lloyd <adam@alloy-d.net>
Date: Sat, 9 Oct 2010 18:11:21 -0400
s/@filename/@path/ in MBox#store_message
lib/sup/mbox.rb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
@filename is undefined in MBox, so trying to store a message to an mbox
source results in a crash. @path contains the needed information.
This fixes issues 79 and 89, related to crashes on sending mail.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/sup/mbox.rb b/lib/sup/mbox.rb
@@ -90,8 +90,8 @@ class MBox < Source
end
def store_message date, from_email, &block
- need_blank = File.exists?(@filename) && !File.zero?(@filename)
- File.open(@filename, "ab") do |f|
+ need_blank = File.exists?(@path) && !File.zero?(@path)
+ File.open(@path, "ab") do |f|
f.puts if need_blank
f.puts "From #{from_email} #{date.asctime}"
yield f