diff --git a/fhem/docs/faq.html b/fhem/docs/faq.html
index db847a9be..d7e0d4f76 100644
--- a/fhem/docs/faq.html
+++ b/fhem/docs/faq.html
@@ -11,48 +11,50 @@
FHEM FAQ
1. I am using fhem.pl with an fhz1000.pl config file and fhem.pl
-won't start
+won't start
2. I get "undefined" messages in the log after upgrading
-fhem.pl
+fhem.pl
3. I switched on a FS20 device directly (without the remote),
-but the fhem.pl did not noticed it. Is it a bug?
+but the fhem.pl did not noticed it. Is it a bug?
4. I have some FS20/FHT/HMS devices. How do I know their
-housecode?
+housecode?
5. I have the code for my devices in the ELV notation, which
contains 1,2,3 and 4, but you require a hex code. How should I convert
-it?
+it?
6. I replaced my FHZ1X00PC, now the FHT80b's does not work
-anymore. Help me!
+anymore. Help me!
7. I can specify an optional ml/raincounter for a KS300. Why
-do you think that 255 should be the default?
+do you think that 255 should be the default?
8. The time specification of the builtin at command is not very
-flexible. Please add day/month/weekday to it.
+flexible. Please add day/month/weekday to it.
9. I defined my FS20STR as an FHT device, but I do not get
-any data from it.
+any data from it.
10. How to convert the FHT8b code seen in its display to the
-hex code needed by fhem.pl?
+hex code needed by fhem.pl?
11. I'd like to use this sunrise/sunset stuff, can you help
-me?
+me?
12. I'd like to switch on the ventilator if the FHT tells me
-its too hot. How to tell fhem to do that?
+its too hot. How to tell fhem to do that?
13. I'd like to see directly in the Web frontend if a window
-is open. How to do that?
+is open. How to do that?
14. In the summer I get a lot of "actuator:lime-protection"
messages from my FHT80b. How to switch back to the actuator:0% messages?
-
+
+
+15. My notify/filelog does not work, help me!
@@ -317,7 +319,29 @@ messages from my FHT80b. How to switch back to the actuator:0% messages?
-
+
+15. My notify/filelog does not work, help me!
+
+ First learn what are the trigger messages: telnet to your fhem (e.g. telnet
+ localhost 7072) and issue the command "inform on". If there is an
+ FS20/HMS/etc event, then you'll see a line of the form
+ "TYPE DEVICENAME EVENT". Some devicetypes generate more than one trigger
+ message for one event, (E.g. HMS or KS300.
+ Example: you have an FS20 device named piri, which sends a command
+ "on-for-timer 60". In this case you'll see: FS20 piri on-for-timer 60
+
+
+ Now define your notify/filelog. The regexp specified will be tested
+ against the DEVICENAME and against the DEVICENAME:EVENT strings. If they
+ match, then the action will be executed. For our example this would be:
+ define piri_ntfy piri:on.* some_command
+
+ You can test the notify/filelog with the trigger command: issue "trigger
+ DEVICENAME EVENT" in the telnet prompt, and check if your notify/filelog
+ works as designed. Example: trigger piri on-for-timer 60
+
+
+