]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/sendmail/libmilter/README
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / sendmail / libmilter / README
1 This directory contains the source files for libmilter.
2
3 The sendmail Mail Filter API (Milter) is designed to allow third-party
4 programs access to mail messages as they are being processed in order to
5 filter meta-information and content.
6
7 This README file describes the steps needed to compile and run a filter,
8 through reference to a sample filter which is attached at the end of this
9 file.  It is necessary to first build libmilter.a, which can be done by
10 issuing the './Build' command in SRCDIR/libmilter .
11
12 Starting with 8.13 sendmail is compiled by default with support for
13 the milter API.
14
15 Note: if you want to write a milter in Java, then see
16 http://sendmail-jilter.sourceforge.net/
17
18 +----------------+
19 | SECURITY HINTS |
20 +----------------+
21
22 Note: we strongly recommend not to run any milter as root.  Libmilter
23 does not need root access to communicate with sendmail.  It is a
24 good security practice to run a program only with root privileges
25 if really necessary.  A milter should probably check first whether
26 it runs as root and refuse to start in that case.  libmilter will
27 not unlink a socket when running as root.
28
29 +----------------------+
30 | CONFIGURATION MACROS |
31 +----------------------+
32
33 Libmilter uses a set of C preprocessor macros to specify platform specific
34 features of the C compiler and standard C libraries.
35
36 SM_CONF_POLL
37         Set to 1 if poll(2) should be used instead of select(2).
38
39 +-------------------+
40 | BUILDING A FILTER |
41 +-------------------+
42
43 The following command presumes that the sample code from the end of this
44 README is saved to a file named 'sample.c' and built in the local platform-
45 specific build subdirectory (SRCDIR/obj.*/libmilter).
46
47         cc -I../../include -o sample sample.c libmilter.a ../libsm/libsm.a -pthread
48
49 It is recommended that you build your filters in a location outside of
50 the sendmail source tree.  Modify the compiler include references (-I)
51 and the library locations accordingly.  Also, some operating systems may
52 require additional libraries.  For example, SunOS 5.X requires '-lresolv
53 -lsocket -lnsl'.  Depending on your operating system you may need a library
54 instead of the option -pthread, e.g., -lpthread.
55
56 Filters must be thread-safe!  Many operating systems now provide support for
57 POSIX threads in the standard C libraries.  The compiler flag to link with
58 threading support differs according to the compiler and linker used.  Check
59 the Makefile in your appropriate obj.*/libmilter build subdirectory if you
60 are unsure of the local flag used.
61
62 Note that since filters use threads, it may be necessary to alter per
63 process limits in your filter.  For example, you might look at using
64 setrlimit() to increase the number of open file descriptors if your filter
65 is going to be busy.
66
67
68 +----------------------------------------+
69 | SPECIFYING FILTERS IN SENDMAIL CONFIGS |
70 +----------------------------------------+
71
72 Filters are specified with a key letter ``X'' (for ``eXternal'').
73
74 For example:
75
76         Xfilter1, S=local:/var/run/f1.sock, F=R
77         Xfilter2, S=inet6:999@localhost, F=T, T=C:10m;S:1s;R:1s;E:5m
78         Xfilter3, S=inet:3333@localhost
79
80 specifies three filters.  Filters can be specified in your .mc file using
81 the following:
82
83         INPUT_MAIL_FILTER(`filter1', `S=local:/var/run/f1.sock, F=R')
84         INPUT_MAIL_FILTER(`filter2', `S=inet6:999@localhost, F=T, T=C:10m;S:1s;R:1s;E:5m')
85         INPUT_MAIL_FILTER(`filter3', `S=inet:3333@localhost')
86
87 The first attaches to a Unix-domain socket in the /var/run directory; the
88 second uses an IPv6 socket on port 999 of localhost, and the third uses an
89 IPv4 socket on port 3333 of localhost.  The current flags (F=) are:
90
91         R               Reject connection if filter unavailable
92         T               Temporary fail connection if filter unavailable
93         4               Shut down connection if filter unavailable
94                         (with a 421 temporary error).
95
96 If none of these is specified, the message is passed through sendmail
97 in case of filter errors as if the failing filters were not present.
98
99 Finally, you can override the default timeouts used by sendmail when
100 talking to the filters using the T= equate.  There are four fields inside
101 of the T= equate:
102
103 Letter          Meaning
104   C             Timeout for connecting to a filter (if 0, use system timeout)
105   S             Timeout for sending information from the MTA to a filter
106   R             Timeout for reading reply from the filter
107   E             Overall timeout between sending end-of-message to filter
108                 and waiting for the final acknowledgment
109
110 Note the separator between each is a ';' as a ',' already separates equates
111 and therefore can't separate timeouts.  The default values (if not set in
112 the config) are:
113
114 T=C:5m;S:10s;R:10s;E:5m
115
116 where 's' is seconds and 'm' is minutes.
117
118 Which filters are invoked and their sequencing is handled by the 
119 InputMailFilters option. Note: if InputMailFilters is not defined no filters
120 will be used.
121
122         O InputMailFilters=filter1, filter2, filter3
123
124 This is is set automatically according to the order of the
125 INPUT_MAIL_FILTER commands in your .mc file.  Alternatively, you can
126 reset its value by setting confINPUT_MAIL_FILTERS in your .mc file.
127 This options causes the three filters to be called in the same order
128 they were specified.  It allows for possible future filtering on output
129 (although this is not intended for this release).
130
131 Also note that a filter can be defined without adding it to the input
132 filter list by using MAIL_FILTER() instead of INPUT_MAIL_FILTER() in your
133 .mc file.
134
135 To test sendmail with the sample filter, the following might be added (in
136 the appropriate locations) to your .mc file:
137
138         INPUT_MAIL_FILTER(`sample', `S=local:/var/run/f1.sock')
139
140
141 +------------------+
142 | TESTING A FILTER |
143 +------------------+
144
145 Once you have compiled a filter, modified your .mc file and restarted
146 the sendmail process, you will want to test that the filter performs as
147 intended.
148
149 The sample filter takes one argument -p, which indicates the local port
150 on which to create a listening socket for the filter.  Maintaining
151 consistency with the suggested options for sendmail.cf, this would be the
152 UNIX domain socket located in /var/run/f1.sock.
153
154         % ./sample -p local:/var/run/f1.sock
155
156 If the sample filter returns immediately to a command line, there was either
157 an error with your command or a problem creating the specified socket.
158 Further logging can be captured through the syslogd daemon.  Using the
159 'netstat -a' command can ensure that your filter process is listening on
160 the appropriate local socket.
161
162 Email messages must be injected via SMTP to be filtered.  There are two
163 simple means of doing this; either using the 'sendmail -bs' command, or
164 by telnetting to port 25 of the machine configured for milter.  Once
165 connected via one of these options, the session can be continued through
166 the use of standard SMTP commands.
167
168 % sendmail -bs
169 220 test.sendmail.com ESMTP Sendmail 8.14.0/8.14.0; Thu, 22 Jun 2006 13:05:23 -0500 (EST)
170 HELO localhost
171 250 test.sendmail.com Hello testy@localhost, pleased to meet you
172 MAIL From:<testy>
173 250 2.1.0 <testy>... Sender ok
174 RCPT To:<root>
175 250 2.1.5 <root>... Recipient ok
176 DATA
177 354 Enter mail, end with "." on a line by itself
178 From: testy@test.sendmail.com
179 To: root@test.sendmail.com
180 Subject: testing sample filter
181
182 Sample body
183 .
184 250 2.0.0 dB73Zxi25236 Message accepted for delivery
185 QUIT
186 221 2.0.0 test.sendmail.com closing connection
187
188 In the above example, the lines beginning with numbers are output by the
189 mail server, and those without are your input.  If everything is working
190 properly, you will find a file in /tmp by the name of msg.XXXXXXXX (where
191 the Xs represent any combination of letters and numbers).  This file should
192 contain the message body and headers from the test email entered above.
193
194 If the sample filter did not log your test email, there are a number of
195 methods to narrow down the source of the problem.  Check your system
196 logs written by syslogd and see if there are any pertinent lines.  You
197 may need to reconfigure syslogd to capture all relevant data.  Additionally,
198 the logging level of sendmail can be raised with the LogLevel option.
199 See the sendmail(8) manual page for more information.
200
201
202 +--------------+
203 | REQUIREMENTS |
204 +--------------+
205
206 libmilter requires pthread support in the operating system.  Moreover, it
207 requires that the library functions it uses are thread safe; which is true
208 for the operating systems libmilter has been developed and tested on.  On
209 some operating systems this requires special compile time options (e.g.,
210 not just -pthread).  libmilter is currently known to work on (modulo problems
211 in the pthread support of some specific versions):
212
213 FreeBSD 3.x, 4.x
214 SunOS 5.x (x >= 5)
215 AIX 4.3.x
216 HP UX 11.x
217 Linux (recent versions/distributions)
218
219 libmilter is currently not supported on:
220
221 IRIX 6.x
222 Ultrix
223
224 Feedback about problems (and possible fixes) is welcome.
225
226 +--------------------------+
227 | SOURCE FOR SAMPLE FILTER |
228 +--------------------------+
229
230 Note that the filter example.c may not be thread safe on some operating
231 systems.  You should check your system man pages for the functions used
232 below to verify the functions are thread safe.
233
234 $Revision: 8.42 $, Last updated $Date: 2006/06/29 17:10:16 $