File: eventhandler.html

package info (click to toggle)
smstools 3.1-2%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,260 kB
  • ctags: 459
  • sloc: ansic: 9,720; sh: 968; php: 115; makefile: 72; awk: 17
file content (66 lines) | stat: -rwxr-xr-x 2,109 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>

  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <META NAME="Title" CONTENT="SMS Server Tools 3">
    <META NAME="Robots" CONTENT="INDEX,FOLLOW">
    <META NAME="Language" CONTENT="English">
    <title>SMS Server Tools 3</title>
<STYLE type="text/css">
h3 {
  background-color: #DCDCFE;
}
blockquote {
  background-color: #FFD;
  font-size: 90%;
  padding:5pt;
  padding-top:1pt;
  margin-bottom:5pt;
  border-style: outset;
  border-color: #aaaa99;
  border-width: 0.05pt 2pt 2pt 0.05pt;
}
blockquote p:first-letter {
  font-size: 110%;
  font-weight: bold;
  color: red;
}
</STYLE>
  </head>

<body>
<h2><font color=blue>SMS Server Tools 3</font></h2>
<a href="index.html">Home</a>
<h3>Eventhandler</h3>
<!-- START --><p>
The eventhandler is a program or script, that smsd runs, whenever it
receives or sent a message or when it was not able to send a message.
</p>
<p>
Smsd calls the script before it moves the file from the provider
queue into the failed or sent queue.
</p>
<p>
Smsd gives two or three arguments to the eventhandler. The first one is SENT, RECEIVED, FAILED, REPORT or CALL. 
The second one is the SMS file filename. 
The third argument is the message id of the SENT message, it is only used if you sent a message
successfully with status report enabled.
</p>
<p>
There is an example script in scipts/smsevent.
</p>
<p>
If you use UTF-8 character set as a locale, you might want to use eventhandler to convert received messages
from ISO character set (which is internally used by the smsd) to UTF-8. See scripts/eventhandler-utf-8 for details.
Also you can use the <b>checkhandler</b> to convert outgoing messages from UTF-8 to ISO, 
see scripts/checkhandler-utf-8 for code sample. 
</p>
<p>&nbsp;</p>
<blockquote><p>
The <a href="book.html" target="_blank">book</a> describes how to use eventhandler to do different things automatically, like
forwarding to eMail, storing received messages and status report into SQL database, running a self-test, publishing
received messages with a webserver and more.
</p></blockquote>

</body>
</html>