Mailinglist Archive: opensuse-commit (1943 mails)
| < Previous | Next > |
commit yast2-mail
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Mon, 10 Nov 2008 16:54:30 +0100
- Message-id: <20081110155430.A127B678162@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-mail
checked in at Mon Nov 10 16:54:30 CET 2008.
--------
--- yast2-mail/yast2-mail.changes 2008-11-07 17:06:41.000000000 +0100
+++ /mounts/work_src_done/STABLE/yast2-mail/yast2-mail.changes 2008-11-10
16:43:34.225699000 +0100
@@ -1,0 +2,6 @@
+Mon Nov 10 16:02:02 CET 2008 - jsuchome@xxxxxxx
+
+- do not lowercase LDAP attribute names
+- 2.17.0
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
Old:
----
yast2-mail-2.16.10.tar.bz2
New:
----
yast2-mail-2.17.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-mail.spec ++++++
--- /var/tmp/diff_new_pack.O25560/_old 2008-11-10 16:54:17.000000000 +0100
+++ /var/tmp/diff_new_pack.O25560/_new 2008-11-10 16:54:17.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-mail (Version 2.16.10)
+# spec file for package yast2-mail (Version 2.17.0)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -19,12 +19,12 @@
Name: yast2-mail
-Version: 2.16.10
-Release: 2
+Version: 2.17.0
+Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-mail-2.16.10.tar.bz2
+Source0: yast2-mail-2.17.0.tar.bz2
Prefix: /usr
BuildRequires: perl-XML-Writer update-desktop-files yast2-devtools
yast2-testsuite
BuildRequires: yast2-ldap-server yast2-network yast2-perl-bindings yast2-users
@@ -77,7 +77,7 @@
Peter Varkoly <varkoly@xxxxxxxxxx>
%prep
-%setup -n yast2-mail-2.16.10
+%setup -n yast2-mail-2.17.0
%build
%{prefix}/bin/y2tool y2autoconf
@@ -171,6 +171,9 @@
%dir /usr/share/YaST2/clients
/usr/share/YaST2/clients/users*
%changelog
+* Mon Nov 10 2008 jsuchome@xxxxxxx
+- do not lowercase LDAP attribute names
+- 2.17.0
* Fri Nov 07 2008 varkoly@xxxxxxx
- (bnc#440096) - LDAP mail plugin always sets imap quota even if not checked
* Tue Nov 04 2008 varkoly@xxxxxxx
++++++ yast2-mail-2.16.10.tar.bz2 -> yast2-mail-2.17.0.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-mail-2.16.10/users-plugin/UsersPluginMail.pm
new/yast2-mail-2.17.0/users-plugin/UsersPluginMail.pm
--- old/yast2-mail-2.16.10/users-plugin/UsersPluginMail.pm 2008-11-07
16:03:57.000000000 +0100
+++ new/yast2-mail-2.17.0/users-plugin/UsersPluginMail.pm 2008-11-10
16:42:20.000000000 +0100
@@ -214,7 +214,8 @@
# check the presence of required attributes
foreach my $req (@required_attrs) {
my $attr = lc ($req);
- my $val = $data->{$attr};
+ my $val = $data->{$req};
+ $val = $data->{$attr} if (!defined $val);
if (!defined $val || $val eq "" ||
(ref ($val) eq "ARRAY" &&
((@{$val} == 0) || (@{$val} == 1 && $val->[0] eq "")))) {
@@ -293,7 +294,7 @@
if( grep /^UsersPluginMail$/, @{$data->{'plugins_to_remove'}} ) {
my @updated_oc;
foreach my $oc ( @{$data->{'objectClass'}} ) {
- if ( lc($oc) ne "suseMailRecipient" ) {
+ if ( lc($oc) ne "susemailrecipient" ) {
push @updated_oc, $oc;
}
}
@@ -367,7 +368,7 @@
if( grep /^UsersPluginMail$/, @{$data->{'plugins_to_remove'}} ) {
my @updated_oc;
foreach my $oc ( @{$data->{'objectClass'}} ) {
- if ( lc($oc) ne "suseMailRecipient" ) {
+ if ( lc($oc) ne "susemailrecipient" ) {
push @updated_oc, $oc;
}
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-mail-2.16.10/VERSION
new/yast2-mail-2.17.0/VERSION
--- old/yast2-mail-2.16.10/VERSION 2008-11-04 15:11:04.000000000 +0100
+++ new/yast2-mail-2.17.0/VERSION 2008-11-10 16:42:20.000000000 +0100
@@ -1 +1 @@
-2.16.10
+2.17.0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |