diff options
-rw-r--r-- | .hgtags | 1 | ||||
-rw-r--r-- | bin/mauvesend | 4 | ||||
-rw-r--r-- | debian/changelog | 15 | ||||
-rw-r--r-- | lib/mauve/version.rb | 2 |
4 files changed, 19 insertions, 3 deletions
@@ -20,3 +20,4 @@ b720f7eaf50048e8430cb3fa79cb9ea96ef1a418 3.7.1 299d570786ce3029855e06090ec5314d66732b9d 3.7.4 0196bd006ccf888bb0e0e1adf1a34d3b82320660 3.7.5 2a8a0b46def44710562ed0440bff9fa011f930fd 3.7.6 +243e8c7fea6c5051ec5d192526921a7c4b4c641a 3.7.8 diff --git a/bin/mauvesend b/bin/mauvesend index d30b84a..edb8e33 100644 --- a/bin/mauvesend +++ b/bin/mauvesend @@ -136,13 +136,13 @@ # # To raise an alert: # -# mauvesend -s smtp-out-1.example.com -i mailqueue \\ +# mauvesend -i mailqueue -s smtp-out-1.example.com \\ # -d "Mail queue has <b>54232</b> messages in it. That's <em>LOADS</em>" \\ # -u "Mail queue too big on outgoing SMTP server" -r # # To clear an alert: # -# mauvesend -s smtp-out-1.example.com -i mailqueue -c +# mauvesend -i mailqueue -s smtp-out-1.example.com -c # # To create a "heartbeat" alert, i.e. one that says "Currently OK, but raise in the future if nothing more is heard": # diff --git a/debian/changelog b/debian/changelog index acdbfb8..45afd27 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +mauvealert (3.7.8) stable; urgency=low + + * Reduced the liklihood of race conditions during evaluation of during {} + clauses. + * Added cache to DuringRunner to reduce the number of times now? is + evaluated. + * Added a debug! option to notification_method clauses for easier, erm, + debugging. + * Alert#notify and AlertChanged#notify now make use of the notification + buffer make the disconnection betweeen the processing loop and + notifications happen sooner. + * Manpage typo sorted out. + + -- Patrick J Cherry <patrick@bytemark.co.uk> Wed, 18 Apr 2012 12:10:07 +0100 + mauvealert (3.7.7) stable; urgency=low * Javascript refreshes now happen every two minutes. diff --git a/lib/mauve/version.rb b/lib/mauve/version.rb index d7af3a9..1694498 100644 --- a/lib/mauve/version.rb +++ b/lib/mauve/version.rb @@ -5,6 +5,6 @@ module Mauve # # Current version - VERSION="3.7.7" + VERSION="3.7.8" end |