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. +

    +