]> git.etc.gen.nz Git - spong.git/commitdiff
added default msg template if default templ. not found in spong.message file
authorStephen L Johnson <sjohnson@monsters.org>
Thu, 30 Nov 2000 21:27:40 +0000 (21:27 +0000)
committerStephen L Johnson <sjohnson@monsters.org>
Thu, 30 Nov 2000 21:27:40 +0000 (21:27 +0000)
src/spong-message.pl

index 5a5a4e0d1dae57a09f14ae53f46fdb5d3b621535..dea7ae59267865f35bc941685711de368e5d85e3 100755 (executable)
@@ -12,7 +12,7 @@
 # (2) Added rules based paging (Stephen Johnson  Nov 14, 1998)
 # (3) Added checks against Acks and downtime (Stephen Johnson  Mar 17, 1999)
 #
-# $Id: spong-message.pl,v 1.15 2000/10/16 15:34:32 sljohnson Exp $
+# $Id: spong-message.pl,v 1.16 2000/11/30 21:27:40 sljohnson Exp $
 
 use lib "@@LIBDIR@@";
 
@@ -660,7 +660,12 @@ sub eval_template {
             $TEMPLATES{"$rcpt:$func"} ||
             $TEMPLATES{"$func"}       ||
             $TEMPLATES{"$rcpt"}       ||
-            $TEMPLATES{"DEFAULT"};
+            $TEMPLATES{"DEFAULT"}     ||
+            { 'subject' => 'spong - !!COLOR!! !!HOST!! !!SERVICE!!',
+              'body'    => '!!DATETIME!!
+!!COLOR!! !!HOST!! !!SERVICE!!
+!!SUMMARY!!', 
+            };
 
    if (! $templ) {
       &error("No custom message template or default template found");