From a54a32084e9870af6f1ede97887c2332c21e812c Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Wed, 10 Aug 2011 16:05:20 +0100 Subject: Added ability to tag multiple alerts with the same history item. --- lib/mauve/pop3_server.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/mauve/pop3_server.rb') diff --git a/lib/mauve/pop3_server.rb b/lib/mauve/pop3_server.rb index e455591..ef307d5 100644 --- a/lib/mauve/pop3_server.rb +++ b/lib/mauve/pop3_server.rb @@ -258,7 +258,7 @@ module Mauve send_data ["+OK #{msg.length} octets", msg, "."].join(CRLF) note = "#{alert_changed.update_type.capitalize} notification downloaded via POP3 by #{@user}" logger.info note+" about #{alert_changed}." - h = History.new(:alert_id => alert_changed.alert_id, :type => "notification", :event => note) + h = History.new(:alerts => [alert_changed.alert_id], :type => "notification", :event => note) logger.error "Unable to save history due to #{h.errors.inspect}" if !h.save else send_data "-ERR Message not found." -- cgit v1.2.1