/[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.23 - (show annotations) (download)
Tue Jul 5 20:33:56 2016 UTC (7 years, 11 months ago) by vip-ire
Branch: MAIN
CVS Tags: qpsmtpd-0_96-15_el7_sme
Changes since 1.22: +2 -2 lines
Fix date in changelog

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

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