/[smeserver]/rpms/qpsmtpd/sme10/qpsmtpd.spec
ViewVC logotype

Contents of /rpms/qpsmtpd/sme10/qpsmtpd.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.20 - (show annotations) (download)
Sat May 28 08:36:24 2016 UTC (8 years ago) by vip-ire
Branch: MAIN
CVS Tags: qpsmtpd-0_96-13_el7_sme
Changes since 1.19: +8 -2 lines
* Sat May 28 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-13.sme
- Check rua is defined before trying to parse it to prevent an error
  if a domain has a DMARC entry published with no rua [SME: 9206]

1 # $Id: qpsmtpd.spec,v 1.19 2016/05/16 09:54:16 vip-ire Exp $
2
3 Name: qpsmtpd
4 Version: 0.96
5 Release: 13%{?dist}
6 Summary: qpsmtpd + qpsmtpd-apache
7 License: MIT
8 Group: System Environment/Daemons
9 URL: http://smtpd.develooper.com/
10 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
11 BuildRequires: perl >= 0:5.00503
12 BuildRequires: perl(ExtUtils::MakeMaker)
13 BuildArch: noarch
14 Requires: perl(Mail::Header), perl(Net::DNS) perl(Net::IP)
15 Requires: perl(IO::Socket::SSL) >= 1.70
16 Requires(pre): coreutils, shadow-utils, perl
17
18 Source0: %{name}-%{version}.tar.gz
19 Source1: qpsmtpd-forkserver.rc
20 Source2: qpsmtpd-forkserver.sysconfig
21 Source3: qpsmtpd-xinetd
22 Source4: in.qpsmtpd
23 Source5: qpsmtpd.conf
24 Source6: README.selinux
25
26 Patch1: qpsmtpd-0.95-spamassassin_size_limit.patch
27 Patch2: qpsmtpd-0.95-qpsmtpd_forserver_keepalive.patch
28 Patch3: qpsmtpd-0.95-notls_conf.patch
29 Patch4: qpsmtpd-0.95-allow_tls_proto_from_conf.patch
30 Patch5: qpsmtpd-0.96-set_hooks.patch
31 Patch6: qpsmtpd-0.96-warn_implicit_split.patch
32 Patch7: qpsmtpd-0.96-dont_log_credentials_except_in_debug.patch
33 Patch8: qpsmtpd-0.96-uribl_data_post.patch
34 Patch9: qpsmtpd-0.96-karma_strikes.patch
35 Patch10: qpsmtpd-0.96-more_badrcptto.patch
36 Patch11: qpsmtpd-0.96-karma_tlds_conf.patch
37 Patch12: qpsmtpd-0.96-store_original_plugin_name.patch
38 Patch13: qpsmtpd-0.96-fix_karma_tool_dir_path.patch
39 Patch14: qpsmtpd-0.96-dkim_no_sign_for_others_on_symlinks.patch
40 Patch15: qpsmtpd-0.96-fix_dmarc_reject.patch
41 Patch16: qpsmtpd-0.96-add_dmarc_result_notes.patch
42 Patch17: qpsmtpd-0.96-spf_on_no_dmarc_policy.patch
43 Patch18: qpsmtpd-0.96-check_negative_karma_strikes.patch
44 Patch19: qpsmtpd-0.96-addr_defined_before_use.patch
45 Patch20: qpsmtpd-0.96-check_rua_is_defined.patch
46
47 %description
48 qpsmtpd is a flexible smtpd daemon written in Perl. Apart from the core
49 SMTP features, all functionality is implemented in small "extension
50 plugins" using the easy to use object oriented plugin API.
51
52 qpsmtpd was originally written as a drop-in qmail-smtpd replacement, but
53 now it also includes a smtp forward and a postfix "backend".
54
55 %package apache
56 Requires: perl(mod_perl2)
57 Summary: mod_perl-2 connection handler for qpsmtpd
58 Group: System Environment/Daemons
59
60 %description apache
61
62 This module implements a mod_perl/apache 2.0 connection handler
63 that turns Apache into an SMTP server using Qpsmtpd.
64
65
66 %prep
67 %setup -q
68 %patch1 -p1
69 %patch2 -p1
70 %patch3 -p1
71 %patch4 -p1
72 %patch5 -p1
73 %patch6 -p1
74 %patch7 -p1
75 %patch8 -p1
76 %patch9 -p1
77 %patch10 -p1
78 %patch11 -p1
79 %patch12 -p1
80 %patch13 -p1
81 %patch14 -p1
82 %patch15 -p1
83 %patch16 -p1
84 %patch17 -p1
85 %patch18 -p1
86 %patch19 -p1
87 %patch20 -p1
88
89 %build
90 CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL INSTALLDIRS="vendor" PREFIX="%{buildroot}%{_prefix}"
91 make
92
93 %clean
94 rm -rf $RPM_BUILD_ROOT
95 %install
96
97 rm -rf $RPM_BUILD_ROOT
98 find blib/lib -name '*.pm.*' -exec rm -f {} \;
99 make pure_install
100
101 mkdir -p %{buildroot}%{_datadir}/%{name}
102 rm -f %{buildroot}%{_datadir}/%{name}/plugins/*.*
103 cp -r plugins %{buildroot}%{_datadir}/%{name}/plugins
104 mkdir -p %{buildroot}%{_sysconfdir}/%{name}
105 rm -f %{buildroot}%{_sysconfdir}/%{name}/*.*
106 cp -r config.sample/* %{buildroot}%{_sysconfdir}/%{name}/
107 echo %{_datadir}/%{name}/plugins > %{buildroot}%{_sysconfdir}/%{name}/plugin_dirs
108 echo %{_localstatedir}/spool/qpsmtpd > %{buildroot}%{_sysconfdir}/%{name}/spool_dir
109 echo logging/file_connection loglevel LOGINFO %{_localstatedir}/log/qpsmtpd/%Y-%m-%d > %{buildroot}%{_sysconfdir}/%{name}/logging
110 mkdir -p %{buildroot}%{_initrddir}
111 cp %{SOURCE1} %{buildroot}%{_initrddir}/qpsmtpd-forkserver
112 mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
113 cp %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/qpsmtpd-forkserver
114 mkdir -p %{buildroot}%{_localstatedir}/spool/qpsmtpd
115 mkdir -p %{buildroot}%{_localstatedir}/log/qpsmtpd
116 mkdir -p %{buildroot}%{_sysconfdir}/xinetd.d
117 cp %{SOURCE3} %{buildroot}%{_sysconfdir}/xinetd.d/smtp
118 mkdir -p %{buildroot}%{_sbindir}
119 cp %{SOURCE4} %{buildroot}%{_sbindir}/in.smtp
120 mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d
121 cp %{SOURCE5} %{buildroot}%{_sysconfdir}/httpd/conf.d
122 mkdir -p %{buildroot}%{_docdir}/%{name}-apache-%{version}
123 cp %{SOURCE6} %{buildroot}%{_docdir}/%{name}-apache-%{version}
124
125 [ -x /usr/lib/rpm/brp-compress ] && /usr/lib/rpm/brp-compress
126
127 find %{buildroot}%{_prefix} \( -name perllocal.pod -o -name .packlist \) -exec rm {} \;
128 find %{buildroot}%{_prefix} -type f -print | \
129 sed "s@^%{buildroot}@@g" | \
130 grep -v [Aa]sync | \
131 grep -v packaging | \
132 grep -v README.selinux | \
133 grep -v /Apache | \
134 grep -v /Danga | \
135 grep -v Qpsmtpd/PollServer.pm > %{name}-%{version}-%{release}-filelist
136 if [ "$(cat %{name}-%{version}-%{release}-filelist)X" = "X" ] ; then
137 echo "ERROR: EMPTY FILE LIST"
138 exit -1
139 fi
140
141 %files -f %{name}-%{version}-%{release}-filelist
142 %defattr(-,root,root)
143 %doc CREDITS Changes LICENSE README.md README.plugins.md STATUS
144 %{_initrddir}/qpsmtpd-forkserver
145 %config(noreplace) %{_sysconfdir}/qpsmtpd/*
146 %config(noreplace) %{_sysconfdir}/xinetd.d/smtp
147 %config(noreplace) %{_sysconfdir}/sysconfig/qpsmtpd-forkserver
148
149 %files apache
150 %defattr(-,root,root)
151 %{_prefix}/share/perl5/vendor_perl/Apache/Qpsmtpd.pm
152 %{_mandir}/man3/Apache::Qpsmtpd.3pm.gz
153 %config(noreplace) %{_sysconfdir}/httpd/conf.d/*
154 %doc %{_docdir}/%{name}-apache-%{version}/README.selinux
155
156 %pre
157
158
159 %changelog
160 * Sat May 28 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-13.sme
161 - Check rua is defined before trying to parse it to prevent an error
162 if a domain has a DMARC entry published with no rua [SME: 9206]
163
164 * Mon May 16 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-12.sme
165 - Fix error when RCPT TO is not valid [SME: 9460]
166
167 * Mon May 9 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-11.sme
168 - Fix karma logic by checking negative strikes [SME: 9462]
169
170 * Sun May 8 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-10.sme
171 - Remove previous patch, it was already applied [SME: 9462]
172
173 * Sun May 8 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-9.sme
174 - Backport a fix for karma_tool so it can find its database [SME: 9462]
175
176 * Fri May 6 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-8.sme
177 - Support dkim signing with symlinks [SME: 9496]
178 - Fix DMARC rejects not working [SME: 9202]
179 - Add DMARC results notes so further plugin can check it [SME: 9202]
180 - Add possibility to reject solely on SPF result if no DMARC policy is published
181 [SME: 9479]
182
183 * Fri May 6 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-7.sme
184 - Backport some minor patches from git head [SME: 9460]
185
186 * Fri Apr 22 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-6.sme
187 - badrcptto can now read another file container bad addresses [SME: 9460]
188 [SME: 4597]
189
190 * Thu Apr 21 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-5.sme
191 - Fix a typo in previous patch [SME: 9462]
192
193 * Thu Apr 21 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-4.sme
194 - Backport the karma strikes param patch [SME: 9462]
195
196 * Mon Apr 18 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-3.sme
197 - hook uribl in data_post so it has access to the body [SME: 9467]
198
199 * Sun Apr 17 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-2.sme
200 - Don't log user credentials except when using the higher log level
201 [SME: 9466]
202
203 * Sat Apr 16 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-1.sme
204 - Update to 0.96 [SME: 9460]
205
206 * Fri Mar 25 2016 Charlie Brady <charlieb@charliebrady.org> 0.84-20.sme
207 - Fix startup warnings due to Socket6 symbol import. [SME: 9386]
208
209 * Sun Feb 7 2016 stephane de labrusse <stephdl@de-labrusse.fr> 0.84-19.sme
210 - Build new rpm for sme10
211
212 * Thu Jan 7 2016 Daniel Berteaud <daniel@firewall-services.com> 0.84-18.sme
213 - Allow reading SSL_version from the tls_protocols config file (and turn
214 TLSv1 back on by default) [SME: 9162]
215
216 * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> 0.84-17.sme
217 - Correctly log login attempts with nulls in login name [SME: 9167]
218
219 * Wed Jan 6 2016 Daniel Berteaud <daniel@firewall-services.com> 0.84-16.sme
220 - Disable TLSv1 [SME: 9162]
221
222 * Fri Sep 11 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 0.84-15.sme
223 - Modify whitelist_soft transaction to interact with dnsbl filter [SME: 8747]
224 - by John Crisp <jcrisp@safeandsoundit.co.uk>
225 - Added qpsmtpd-0.84-make-dnsbl-more-whitelist_soft-aware.patch
226
227 * Tue May 19 2015 Daniel Berteaud <daniel@firewall-services.com> 0.84-14.sme
228 - Disable SSLv3 [SME: 8926]
229
230 * Fri May 15 2015 Daniel Berteaud <daniel@firewall-services.com> 0.84-13.sme
231 - New notls conf to set hosts you dont want to advertize STARTTLS to [SME: 8863]
232
233 * Sun Feb 15 2015 Daniel Berteaud <daniel@firewall-services.com> 0.84-12.sme
234 - Revert forcing TLSv1 patch as it breaks some inbound delivery [SME: 8851]
235 - Revert whitelist_soft dnsbl as it hasn't been verified yet and we need to
236 push the fix for TLSv1 [SME: 8747]
237
238 * Fri Dec 26 2014 stephane de Labrusse <stephdl@de-labrusse.fr> 0.84-11.sme
239 - Modify whitelist_soft transaction to interact with dnsbl filter [SME: 8747]
240 - by John Crisp <jcrisp@safeandsoundit.co.uk>
241
242 * Mon Dec 22 2014 Daniel Berteaud <daniel@firewall-services.com> 0.84-10.sme
243 - Force usage of TLSv1 [SME: 8726]
244
245 * Thu Mar 13 2014 Daniel Berteaud <daniel@firewall-services.com> 0.84-9.sme
246 - Remove DENYSOFT on SPF softfail [SME: 8273]
247
248 * Mon Dec 9 2013 Daniel Berteaud <daniel@firewall-services.com> 0.84-8.sme
249 - Fix handling of messages with no body and no trailing \n after headers (eq was
250 used in attempted assignment). [SME: 8051, see SME: 7754]
251
252 * Fri Jul 5 2013 Ian Wells <esmith@wellsi.com> 0.84-7.sme
253 - Accept messages with no body and no trailing \n after headers [SME: 7754]
254
255 * Thu Apr 25 2013 chris burnat <devlist@burnat.com> 0.84-6.sme
256 - Fix Net::DNS update breaks qpsmtpd, codes suggested by Ian [SME: 7561]
257
258 * Wed Apr 24 2013 Daniel Berteaud <daniel@firewall-services.com> 0.84-5.sme
259 - allows the spamassassin plugin to read the size limit from its
260 arguments [SME: 7559]
261
262 * Fri Feb 1 2013 Shad L. Lords <slords@mail.com> 0.84-4.sme
263 - Update spec so building on rhel6 works [SME: 7263]
264
265 * Fri May 04 2012 Charlie Brady <charlie_brady@mitel.com> 0.84-3.sme
266 - Set SO_KEEPALIVE option on client socket - to detect dead
267 connections. [SME: 6924]
268
269 * Sun Nov 14 2010 <slords@mail.com> 0.84-2.sme
270 - Sync with upstream git repo.
271 - Fix require_resolvable_fromhost doesn't work [SME: 6369]
272 - Fix TLS security defaults [SME: 6241]
273 - Fix fatal errors when mail has no headers [SME: 6345]
274
275 * Wed Apr 14 2010 <slords@mail.com> 0.84-0.1.sme
276 - Update to 0.84
277 - add sme specific patches
278 - Perl module rpms moved to /usr/share/perl5/vendor_perl [SME: 7223]
279
280 * Wed Mar 3 2010 <filippo.carletti@gmail.com> 0.83-0.7.sme
281 - Remove spool and log dir from package (in smeserver-qpsmtpd)
282 - Don't create smtpd user (unused in sme) [SME: 5815]
283
284 * Thu Nov 5 2009 <smeserver-contribs@snetram.nl> 0.83-0.6.sme
285 - Apply qpsmtpd git changesets to implement custom SPAM
286 subject prefix [SME: 5031]
287
288 * Tue Nov 3 2009 <slords@mail.com> 0.83-0.5.sme
289 - Update pre requires so scripts don't fail on install [SME: 5558]
290
291 * Sat Oct 31 2009 <slords@mail.com> 0.83-0.4.sme
292 - Rebase bad_rcptto patch to remove orig file [SME: 5548]
293 - Change logging in tls init to prevent warnings [SME: 5551]
294
295 * Thu Oct 29 2009 <slords@mail.com> 0.83-0.3.sme
296 - Only run/initialize plugins once [SME: 5533]
297
298 * Mon Oct 26 2009 <filippo.carletti@gmail.com> 0.83-0.2.sme
299 - Change spool dir permissions and owner to qpsmtpd:clamav
300 - Change log dir permissions and owner to smelog:smelog
301
302 * Tue Sep 22 2009 <filippo.carletti@gmail.com> 0.83-0.1.sme
303 - add sme specific patches
304
305 * Fri Sep 18 2009 <rpmbuild@robinbowes.com> 0.83-0.1
306 - Update to 0.83
307
308 * Sun Jul 12 2009 <rpmbuild@robinbowes.com> 0.82-0.1
309 - Update to latest release
310 - don't add qpsmtpd to start-up by default
311 - add apache config file to qpsmtpd-apache package
312 - remove all patches
313 - use rpm macros for dirs
314 - use a filelist for main package instead of a long list of files
315
316 * Tue Jul 15 2008 <rpmbuild@robinbowes.com> 0.43-0.7
317 - Removed SelectServer.pm from .spec file
318
319 * Tue Mar 18 2008 <rpmbuild@robinbowes.com> 0.43-0.6
320 - moved config files back to /etc/qpsmtpd following some changes
321 to the qpsmtpd src
322
323 * Tue Mar 18 2008 <rpmbuild@robinbowes.com> 0.43-0.5
324 - moved config files to /etc/qpsmtpd/config
325
326 * Tue Mar 18 2008 <rpmbuild@robinbowes.com> 0.43-0.4
327 - Moved qpsmtpd-async to /usr/bin
328 - Added qpsmtpd-async man page to async package
329 - Added async smtproute plugin to async package
330
331 * Wed Mar 12 2008 <rpmbuild@robinbowes.com> 0.43-0.3
332 - Makefile.PL now updated in svn, so remove hack
333
334 * Wed Mar 12 2008 <rpmbuild@robinbowes.com> 0.43-0.2
335 - Added qpsmtpd-prefork to qpsmtpd RPM, inc. hack to work round
336 deficiency in Makefile.PL
337
338 * Mon Mar 10 2008 <rpmbuild@robinbowes.com> 0.43-0.1
339 - Updated to work with Makefile to build from svn
340
341 * Wed Sep 12 2007 <rpmbuild@robinbowes.com> 0.40-2.0
342 - Updated to build trunk-r790
343
344 * Tue Jun 12 2007 <hjp@hjp.at> 0.40-1.0
345 - updated to 0.40 - no code change.
346
347 * Thu Jun 07 2007 <hjp@hjp.at> 0.40-0.2
348 - unset environment variables which are normally tainted in perl.
349 - updated to 0.40rc1
350 - added dependency on Net::IP (needed by some plugins)
351
352 * Sat May 05 2007 <hjp@hjp.at> 0.33-0.5
353 - moved environment cleanup into start() function, otherwise
354 LANG just gets reinitialized.
355
356 * Sat May 05 2007 <hjp@hjp.at> 0.33-0.4
357 - split qpsmtpd-async into a separate package to avoid dependency
358 on ParaDNS.
359
360 * Sat May 05 2007 <hjp@hjp.at> 0.33-0.3
361 - also unset LANG, LC_ALL and LC_TIME in startup script to prevent
362 locale specific Received headers (bug reported by Dominik Meyer)
363
364 * Sun Feb 25 2007 <hjp@hjp.at> 0.33-0.2
365 - 0.3x branch has been merged back to trunk.
366 Got current snapshot (r715) from trunk.
367
368 * Sun Feb 25 2007 <hjp@hjp.at> 0.33-0.1
369 - Start forkserver via "daemon" (Gavin Carr)
370 - Fixed 'service qpsmtpd-forkserver status' (Gavin Carr)
371 - Changed policy for config files to noreplace (Gavin Carr)
372
373 * Sun Nov 05 2006 <hjp@hjp.at> 0.33-0.0
374 - Upgraded to current snapshot from 0.3x branch (which should become
375 0.33 soon-ish)
376 - included xinetd-support again.
377
378 * Sat Mar 18 2006 <hjp@hjp.at> 0.32-2
379 - fix dnsbl to check whether answer fits query.
380 - randomize Net::DNS ids for qpsmtpd-forkserver child processes.
381
382 * Wed Mar 08 2006 <hjp@hjp.at> 0.32-1
383 - New upstream 0.32
384 - rc-file unsets PERL_UNICODE (bug #38397)
385
386 * Sat Jan 28 2006 <hjp@hjp.at> 0.31.1-3
387 - Use ${SOURCE*} macros to refer to source files
388 - Avoid invoking rpm and other cleanup in %pre section
389 - Invoke chkconfig in %post.
390 - (Thanks to Josko Plazonic for the reporting these problems and
391 suggesting fixes)
392
393 * Tue Nov 30 2005 <hjp@hjp.at> 0.31.1-2
394 - Revision 170 of plugins/loggin/file_connection:
395 Return DECLINED from open_log.
396 Open log in write_log if it isn't already open.
397
398 * Tue Nov 29 2005 <hjp@hjp.at> 0.31.1-1
399 - Commented out queue plugins from sample config
400 - Added dependencies
401 - Create smtpd user if it doesn't exist
402 - Added /var/log/qpsmtpd and /var/spool/qpsmtpd
403
404 * Sat Nov 26 2005 <hjp@hjp.at>
405 - Added file_connection plugin
406 - Startup file for qpsmtpd-forkserver now uses --detach and assumes that
407 a suitable logging module is configured (file_connection by default)
408
409 * Wed Nov 23 2005 <hjp@hjp.at>
410 - Forkserver drops privileges before loading plugins now.
411
412 * Sun Nov 20 2005 <hjp@hjp.at>
413 - New upstream 0.31.1
414
415 * Mon Nov 14 2005 <hjp@hjp.at> 0.31-8
416 - New upstream 0.31rc3.
417 - pre-connection patch slightly simplified since upstream fixed one of
418 the bugs.
419
420 * Tue Aug 23 2005 <hjp@hjp.at>
421 - forced INSTALLSITELIB=/usr/lib/perl5/site_perl as suggested by
422 Charlie Brady.
423
424 * Sat Aug 20 2005 <hjp@hjp.at> 0.31-7
425 - RC2 from upstream.
426 - Removed patches which aren't applied from spec file.
427
428 * Fri Jul 22 2005 <hjp@hjp.at> 0.31-6
429 - New upstream snapshot from 0.31 branch: svn revision 509.
430
431 * Sun Jul 17 2005 <hjp@hjp.at> 0.31-5
432 - include only /etc/init.d/qpsmtpd-forkserver, not /etc/init.d
433 it conflicts with old initscripts packages.
434
435 * Sun Jul 17 2005 <hjp@hjp.at> 0.31-4
436 - removed tabs from forkserver
437
438 * Sun Jul 17 2005 <hjp@hjp.at> 0.31-3
439 - added startup script for forkserver
440 - changed BuildArchitectures to noarch.
441
442 * Sat Jul 16 2005 <hjp@hjp.at> 0.31-2
443 - pre-connection hook is now actually called, not just defined.
444
445 * Fri Jul 15 2005 <hjp@hjp.at> 0.31-1
446 - merged with 0.31. Most of my patches are now in the official release.
447 - merged Gavin's per-user-config patch with my dirs patch, since the
448 latter needs a way to turn off logging.
449 - added /etc/qpsmtpd/plugin_dir to package.
450
451 * Mon Jun 13 2005 <hjp@hjp.at> 0.29-6
452 - fixed removal of patch backup files
453 - fixed option --pid-file
454
455 * Sun Jun 12 2005 <hjp@hjp.at>
456 - avoid installing patch backup files
457 - split Apache::Qpsmtpd into separate package to avoid dependency hell.
458 - fixed URL
459 - changed group to Daemons.
460 - Fixed installation for newer versions of ExtUtils::MakeMaker
461
462 * Wed Jun 1 2005 <hjp@hjp.at> 0.29-5
463 - Really don't reap children in signal handler.
464
465 * Tue May 31 2005 <hjp@hjp.at> 0.29-4
466 - Return 421 for DENYSOFT_DISCONNECT
467 - Don't reap children in signal handler.
468
469 * Thu May 19 2005 <hjp@hjp.at> 0.29-3
470 - removed code to accept paths without <>.
471
472 * Thu May 19 2005 <hjp@hjp.at> 0.29-2
473 - added QPSMTPD_CONFIG env variable and plugin_dir config.
474 - added supplemental groups and support for pid file
475 - added shared_connect hook
476 - changed log level for SMTP dialog from DEBUG to INFO
477
478 * Thu Apr 21 2005 hjp@hjp.at
479 - added plugins, /etc and docs.
480
481 * Mon Apr 18 2005 hjp@hjp.at
482 - Specfile autogenerated
483

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed