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

Diff of /rpms/qpsmtpd/sme10/qpsmtpd.spec

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

Revision 1.4 by vip-ire, Sat Apr 16 11:27:05 2016 UTC Revision 1.28 by jpp, Sun Mar 11 05:43:50 2018 UTC
# Line 1  Line 1 
1  # $Id: qpsmtpd.spec,v 1.12 2015/02/15 16:25:57 vip-ire Exp $  # $Id: qpsmtpd.spec,v 1.27 2017/03/08 17:13:43 unnilennium Exp $
2    
3  Name: qpsmtpd  Name: qpsmtpd
4  Version: 0.96  Version: 0.96
5  Release: 1%{?dist}  Release: 19%{?dist}
6  Summary: qpsmtpd + qpsmtpd-apache  Summary: qpsmtpd + qpsmtpd-apache
7  License: MIT  License: MIT
8  Group: System Environment/Daemons  Group: System Environment/Daemons
# Line 12  BuildRequires: perl >= 0:5.00503 Line 12  BuildRequires: perl >= 0:5.00503
12  BuildRequires: perl(ExtUtils::MakeMaker)  BuildRequires: perl(ExtUtils::MakeMaker)
13  BuildArch: noarch  BuildArch: noarch
14  Requires: perl(Mail::Header), perl(Net::DNS) perl(Net::IP)  Requires: perl(Mail::Header), perl(Net::DNS) perl(Net::IP)
15    Requires: perl(IO::Socket::SSL) >= 1.70
16    Requires: perl(Data::Validate::Domain)
17  Requires(pre): coreutils, shadow-utils, perl  Requires(pre): coreutils, shadow-utils, perl
18    
19  Source0: %{name}-%{version}.tar.gz  Source0: %{name}-%{version}.tar.gz
# Line 28  Patch3: qpsmtpd-0.95-notls_conf.patch Line 30  Patch3: qpsmtpd-0.95-notls_conf.patch
30  Patch4: qpsmtpd-0.95-allow_tls_proto_from_conf.patch  Patch4: qpsmtpd-0.95-allow_tls_proto_from_conf.patch
31  Patch5: qpsmtpd-0.96-set_hooks.patch  Patch5: qpsmtpd-0.96-set_hooks.patch
32  Patch6: qpsmtpd-0.96-warn_implicit_split.patch  Patch6: qpsmtpd-0.96-warn_implicit_split.patch
33    Patch7: qpsmtpd-0.96-dont_log_credentials_except_in_debug.patch
34    Patch8: qpsmtpd-0.96-uribl_data_post.patch
35    Patch9: qpsmtpd-0.96-karma_strikes.patch
36    Patch10: qpsmtpd-0.96-more_badrcptto.patch
37    Patch11: qpsmtpd-0.96-karma_tlds_conf.patch
38    Patch12: qpsmtpd-0.96-store_original_plugin_name.patch
39    Patch13: qpsmtpd-0.96-fix_karma_tool_dir_path.patch
40    Patch14: qpsmtpd-0.96-dkim_no_sign_for_others_on_symlinks.patch
41    Patch15: qpsmtpd-0.96-fix_dmarc_reject.patch
42    Patch16: qpsmtpd-0.96-add_dmarc_result_notes.patch
43    Patch17: qpsmtpd-0.96-spf_on_no_dmarc_policy.patch
44    Patch18: qpsmtpd-0.96-check_negative_karma_strikes.patch
45    Patch19: qpsmtpd-0.96-addr_defined_before_use.patch
46    Patch20: qpsmtpd-0.96-check_rua_is_defined.patch
47    Patch21: qpsmtpd-0.96-remove_karma_rcpt_handler.patch
48    Patch22: qpsmtpd-0.96-eval_dkim_policies.patch
49    Patch23: qpsmtpd-0.96-uribl_validate_domains.patch
50    Patch24: qpsmtpd-0.96-bz10112-whitelist.patch
51    Patch25: qpsmtpd-0.96-SME10139-Message-Id.patch
52    Patch26: qpsmtpd-0.96-bz10290-spamassassin-fetchmail.patch
53    
54  %description  %description
55  qpsmtpd is a flexible smtpd daemon written in Perl. Apart from the core  qpsmtpd is a flexible smtpd daemon written in Perl. Apart from the core
# Line 56  that turns Apache into an SMTP server us Line 78  that turns Apache into an SMTP server us
78  %patch4 -p1  %patch4 -p1
79  %patch5 -p1  %patch5 -p1
80  %patch6 -p1  %patch6 -p1
81    %patch7 -p1
82    %patch8 -p1
83    %patch9 -p1
84    %patch10 -p1
85    %patch11 -p1
86    %patch12 -p1
87    %patch13 -p1
88    %patch14 -p1
89    %patch15 -p1
90    %patch16 -p1
91    %patch17 -p1
92    %patch18 -p1
93    %patch19 -p1
94    %patch20 -p1
95    %patch21 -p1
96    %patch22 -p1
97    %patch23 -p1
98    %patch24 -p1
99    %patch25 -p1
100    %patch26 -p1
101    
102  %build  %build
103  CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL INSTALLDIRS="vendor" PREFIX="%{buildroot}%{_prefix}"  CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL INSTALLDIRS="vendor" PREFIX="%{buildroot}%{_prefix}"
# Line 125  fi Line 167  fi
167  %doc %{_docdir}/%{name}-apache-%{version}/README.selinux  %doc %{_docdir}/%{name}-apache-%{version}/README.selinux
168    
169  %pre  %pre
170  if ! id smtpd >/dev/null 2>&1  
 then  
     # need to create smtpd user.  
     if perl -e 'exit ! defined(getgrnam("postdrop"))'  
     then  
         # if postfix is installed, we will probably use  
         # queue/postfix, which will need this:  
         supp="-G postdrop"  
     fi  
     useradd -r -M -s /bin/false $supp smtpd  
 fi  
171    
172  %changelog  %changelog
173    * Sun Mar 11 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.96-19.sme
174    - add support to force spamcheck on specific IP for fetchmail [SME: 10290]
175    
176    * Tue Mar 07 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.96-18.sme
177    - Removed Message-Id validation, as it rejects MS account validation email [SME: 10139]
178    
179    * Mon Feb 27 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.96-17.sme
180    - fix whitelist plugin to support helo with naughty rejecting at mail stage [SME: 10112]
181    
182    * Mon Jul 11 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-16.sme
183    - Validate domains found in uribl with Data::Validate::Domain [SME: 9467]
184    
185    * Tue Jul 5 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-15.sme
186    - Use eval to fetch dkim policies, prevent fatal errors in case of DNS
187      timeout [SME: 9480]
188    
189    * Wed Jun 15 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-14.sme
190    - Remove karma rcpt handling (buggy and doesn't make a lot of sense)
191      [SME: 9462]
192    
193    * Sat May 28 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-13.sme
194    - Check rua is defined before trying to parse it to prevent an error
195      if a domain has a DMARC entry published with no rua [SME: 9206]
196    
197    * Mon May 16 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-12.sme
198    - Fix error when RCPT TO is not valid [SME: 9460]
199    
200    * Mon May 9 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-11.sme
201    - Fix karma logic by checking negative strikes [SME: 9462]
202    
203    * Sun May 8 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-10.sme
204    - Remove previous patch, it was already applied [SME: 9462]
205    
206    * Sun May 8 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-9.sme
207    - Backport a fix for karma_tool so it can find its database [SME: 9462]
208    
209    * Fri May 6 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-8.sme
210    - Support dkim signing with symlinks [SME: 9496]
211    - Fix DMARC rejects not working [SME: 9202]
212    - Add DMARC results notes so further plugin can check it [SME: 9202]
213    - Add possibility to reject solely on SPF result if no DMARC policy is published
214      [SME: 9479]
215    
216    * Fri May 6 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-7.sme
217    - Backport some minor patches from git head [SME: 9460]
218    
219    * Fri Apr 22 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-6.sme
220    - badrcptto can now read another file container bad addresses [SME: 9460]
221      [SME: 4597]
222    
223    * Thu Apr 21 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-5.sme
224    - Fix a typo in previous patch [SME: 9462]
225    
226    * Thu Apr 21 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-4.sme
227    - Backport the karma strikes param patch [SME: 9462]
228    
229    * Mon Apr 18 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-3.sme
230    - hook uribl in data_post so it has access to the body [SME: 9467]
231    
232    * Sun Apr 17 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-2.sme
233    - Don't log user credentials except when using the higher log level
234      [SME: 9466]
235    
236  * Sat Apr 16 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-1.sme  * Sat Apr 16 2016 Daniel Berteaud <daniel@firewall-services.com> 0.96-1.sme
237  - Update to 0.96 [SME: 9460]  - Update to 0.96 [SME: 9460]
238    


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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