From 7da64b282ade7158fff0e9d08c6ef313b4abc9bd Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Fri, 17 Jul 2009 06:28:32 +0000 Subject: [PATCH] Added #21 SVN revision: 2232 --- doc/faq.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/doc/faq.html b/doc/faq.html index cbec33be..55a09ee2 100755 --- a/doc/faq.html +++ b/doc/faq.html @@ -52,6 +52,7 @@ which should be changed for the whole thread if that problem has been fixed.
  • Why are entries with large attachments submitted so slowly?
  • The elgod daemon crashes from time to time, what can I do?
  • How can I create an ELOG entry automatically from a script? +
  • I want to notify different people for different things, how do I set up this?
    @@ -392,6 +393,30 @@ is part of the distribution and resides in the same directory as the elogd daemon.

    +

  • I want to notify different people for different things, how do I set up this? +

    +Assume you want to send an email notification to person A for a problem report, +to person B for problem fix and so on. The simplest way is to use the +Email <attribute> <value> = <email address> syntax. +So you could set-up following configuration: +

    +Attributes = Author, Type
    +Options Type = Problem Report, Problem Fix
    +Email Type Problem Report = person.a@elog.com
    +Email Type Problem Fix = person.b@elog.com
    +
    +If you want to select email addresses directly from a list, you can do the set-up +as following: + +Attributes = Author, Notify +MOptions Notify = Person A, Person B +Email Notify Person A = person.a@elog.com +Email Notify Person B = person.b@elog.com + +This way you can for each entry select one or more people to be notified from +the pre-defined list. +

    +