rpms/dovecot/F-8 dovecot-1.0-default-settings-passwd.patch, 1.1, 1.2 dovecot.spec, 1.102, 1.103 dovecot.sysconfig, 1.1, 1.2 dovecot-1.1-unicodedata.patch, 1.1, NONE dovecot-1.1.alpha1-default-settings.patch, 1.1, NONE dovecot-a744ae38a9e1.patch, 1.1, NONE dovecot-conf.patch, 1.3, NONE dovecot-configfile.patch, 1.6, NONE

Dan Horak (sharkcz) fedora-extras-commits at redhat.com
Thu Aug 14 09:06:31 UTC 2008


Author: sharkcz

Update of /cvs/pkgs/rpms/dovecot/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv17244

Modified Files:
	dovecot-1.0-default-settings-passwd.patch dovecot.spec 
	dovecot.sysconfig 
Removed Files:
	dovecot-1.1-unicodedata.patch 
	dovecot-1.1.alpha1-default-settings.patch 
	dovecot-a744ae38a9e1.patch dovecot-conf.patch 
	dovecot-configfile.patch 
Log Message:
* Thu Aug 14 2008 Dan Horak <dan[at]danny.cz> - 1:1.0.15-13
- add missing defattr into subpackages
- remove unused patches from CVS

* Tue Jul 29 2008 Dan Horak <dan[at]danny.cz> - 1:1.0.15-12
- really ask for the password during start-up


dovecot-1.0-default-settings-passwd.patch:

Index: dovecot-1.0-default-settings-passwd.patch
===================================================================
RCS file: /cvs/pkgs/rpms/dovecot/F-8/dovecot-1.0-default-settings-passwd.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dovecot-1.0-default-settings-passwd.patch	29 Jul 2008 16:31:59 -0000	1.1
+++ dovecot-1.0-default-settings-passwd.patch	14 Aug 2008 09:06:00 -0000	1.2
@@ -4,8 +4,8 @@
  
  # If key file is password protected, give the password here. Alternatively
  # give it when starting dovecot with -p parameter.
-+# Security note: if you have this config file world readable, then put the
-+# password into /etc/sysconfig/dovecot.
++# Security note: if you have this config file world readable, then enable
++# password asking during start-up in /etc/sysconfig/dovecot.
  #ssl_key_password =
  
  # File containing trusted SSL certificate authorities. Set this only if you


Index: dovecot.spec
===================================================================
RCS file: /cvs/pkgs/rpms/dovecot/F-8/dovecot.spec,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- dovecot.spec	29 Jul 2008 16:31:59 -0000	1.102
+++ dovecot.spec	14 Aug 2008 09:06:00 -0000	1.103
@@ -1,7 +1,7 @@
 %define upstream 1.0.15
 %define sieve_upstream 1.0.3
 %define pkg_version 1.0.15
-%define my_release 11
+%define my_release 13
 %define pkg_release %{my_release}%{?dist}
 %define pkg_sieve_version 1.0.3
 %define pkg_sieve_release %{my_release}%{?dist}
@@ -312,7 +312,7 @@
 (
     find ${RPM_BUILD_ROOT}/%{_libdir}/%{name} -type d | sed -e "s|^|%dir |";
     find ${RPM_BUILD_ROOT}/%{_libdir}/%{name} -! -type d | \
-	grep -v 'dovecot-config\|lib90_cmusieve_plugin\.so\|libdriver_.*\.so\|libauthdb_.*\.so\|libmech_.*\.so';
+        grep -v 'dovecot-config\|lib90_cmusieve_plugin\.so\|libdriver_.*\.so\|libauthdb_.*\.so\|libmech_.*\.so';
 ) | sed -e "s|$RPM_BUILD_ROOT||" >libs.filelist
 
 %pre
@@ -368,7 +368,7 @@
 rm -rf $RPM_BUILD_ROOT
 
 %files -f libs.filelist
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %doc %{docdir}-%{version}  
 %config(noreplace) %{_sysconfdir}/dovecot.conf
 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/sysconfig/dovecot
@@ -391,12 +391,13 @@
 
 %if %{build_sieve}
 %files sieve
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %{_libdir}/%{name}/lda/lib90_cmusieve_plugin.so
 %endif
 
 %if %{build_mysql}
 %files mysql
+%defattr(-,root,root,-)
 %{_libdir}/%{name}/sql/libdriver_mysql.so
 #%{_libdir}/%{name}/auth/libdriver_mysql.so
 #%{_libdir}/%{name}/dict/libdriver_mysql.so
@@ -404,6 +405,7 @@
 
 %if %{build_postgres}
 %files pgsql
+%defattr(-,root,root,-)
 %{_libdir}/%{name}/sql/libdriver_pgsql.so
 #%{_libdir}/%{name}/auth/libdriver_pgsql.so
 #%{_libdir}/%{name}/dict/libdriver_pgsql.so
@@ -411,6 +413,7 @@
 
 %if %{build_sqlite}
 %files sqlite
+%defattr(-,root,root,-)
 %{_libdir}/%{name}/sql/libdriver_sqlite.so
 #%{_libdir}/%{name}/auth/libdriver_sqlite.so
 #%{_libdir}/%{name}/dict/libdriver_sqlite.so
@@ -418,11 +421,13 @@
 
 #%if %{build_ldap}
 #%files ldap
+#%defattr(-,root,root,-)
 #%{_libdir}/%{name}/auth/libauthdb_ldap.so
 #%endif
 
 #%if %{build_gssapi}
 #%files gssapi
+#%defattr(-,root,root,-)
 #%{_libdir}/%{name}/auth/libmech_gssapi.so
 #%endif
 
@@ -433,6 +438,13 @@
 
 
 %changelog
+* Thu Aug 14 2008 Dan Horak <dan[at]danny.cz> - 1:1.0.15-13
+- add missing defattr into subpackages
+- remove unused patches from CVS
+
+* Tue Jul 29 2008 Dan Horak <dan[at]danny.cz> - 1:1.0.15-12
+- really ask for the password during start-up
+
 * Tue Jul 29 2008 Dan Horák <dan[at]danny.cz> - 1:1.0.15-11
 - final solution for #445200 (put the password into /etc/sysconfig/dovecot)
 


Index: dovecot.sysconfig
===================================================================
RCS file: /cvs/pkgs/rpms/dovecot/F-8/dovecot.sysconfig,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dovecot.sysconfig	29 Jul 2008 16:32:00 -0000	1.1
+++ dovecot.sysconfig	14 Aug 2008 09:06:00 -0000	1.2
@@ -1,5 +1,5 @@
-# Here you can specify the password for your SSL certificates
-# so the main config file can be world readable. Other command
-# line options can be specified too.
+# Here you can specify whether dovecot will ask for the SSL certificates'
+# password during start-up so the main config file can be world readable.
+# Other command line options can be specified too.
 #
-#OPTIONS="-p my_certificate_password"
+#OPTIONS="-p"


--- dovecot-1.1-unicodedata.patch DELETED ---


--- dovecot-1.1.alpha1-default-settings.patch DELETED ---


--- dovecot-a744ae38a9e1.patch DELETED ---


--- dovecot-conf.patch DELETED ---


--- dovecot-configfile.patch DELETED ---




More information about the fedora-extras-commits mailing list