Re: [opensuse] ldap - Can't bind to server - will on one 10.0 box won't on another??

2007-11-20 Thread Ralf Haferkamp
On Montag, 19. November 2007, David C. Rankin wrote:
 Listmates,

   I have lost a great amount of hair trying to determine why I cannot
 connect to/add anything to ldap on a 10.0 server, where the exact same
 setup works fine on another 10.0 server. Something a simple as a search
 fails to bind with or without a password. Here as the symptoms and errors:

 [EMAIL PROTECTED]:/home/david # ldapsearch -x -b dc=3111skyline,dc=com
 (objectClass=*)
 ldap_bind: Can't contact LDAP server (-1)
You don't give the hostname of the LDAP server that you want to contact. Are 
you sure that the correct hostname is in /etc/openldap/ldap.conf? If not, use 
the -h hostname or -H ldap-url option on the commandline.


[..]

-- 
Ralf
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[opensuse-factory] Re: cyrus-imapd: missing idled

2007-03-20 Thread Ralf Haferkamp
On Tuesday 20 March 2007 10:18, Arne Reiter wrote:
 In the actual factory build package of cyrus imapd
 (cyrus-imapd-2.3.8-5.x86_64.rpm) the idled command is missing:

 rpm -qlp cyrus-imapd-2.3.8-5.x86_64.rpm | grep /usr/lib/cyrus/bin/idled

 | wc -l

 0
Would you mind reporting that via bugzilla.novell.com? Otherwise it might get 
lost.


[..]


-- 
Ralf
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse-factory] Java packages changes for 10.3

2007-03-20 Thread Ralf Haferkamp
On Tuesday 20 March 2007 15:30, Daniel Bornkessel wrote:
 Hi.
 In 10.3, regarding Java, we want to do the following changes:
[..]
 - the following packages will be replaced by gnu-javamail which has an open
 source license:
 javamail
 javamail-demo
 javamail-javadoc
 javamail-manual
 javamail-monolithic

I don't no exactly why, but gnu-javamail seems not to be 100% compatible with 
Sun's javamail. At least open-xchange does only build with the javamail 
Version from Sun. (On the other hand I was already thinking about dropping 
open-xchange from 10.3 IMO it makes too many trouble)

-- 
Ralf
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse] openldap2 with db42

2006-12-11 Thread Ralf Haferkamp
On Sunday 10 December 2006 10:54, Jan Engelhardt wrote:
 Hi,


 what I wonder is why the openldap2.spec file from
 openldap2-2.3.27-25.src.rpm requires db42-devel even though the binary
 package, as found in the 10.2 repo, is itself linked against db 4.4.
 A strange packaging bug?
Not really strange, but yes a packaging bug. Forgot to remove db42-devel from 
BuildRequires for 10.2. It was needed in 10.1 in order to update correctly 
from previous versions.
But it is just a build time requirement not a real dependency. So it doesn't 
hurt in the installed system. I'll fix it for 10.3.

-- 
Ralf

SUSE LINUX Products GmbH, Maxfeldstrasse 5, D-90409 Nuernberg
T: +49-911-74053-0
F: +49-911-74053575 - [EMAIL PROTECTED]
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse-factory] Cyrus idled missing?

2006-11-30 Thread Ralf Haferkamp
On Wednesday 29 November 2006 18:55, Anders Norrbring wrote:
 Wolfgang Rosenauer skrev:
  Anders Norrbring wrote:
  I get this in huge numbers in my log imap[3069]: error sending to
  idled: 3
 
  In /etc/cyrus.conf, I have:   idled cmd=idled
  But nowhere on the disk can I find the idled command.. Ideas anyone?
 
  How about /usr/lib/cyrus/bin/idled ?
  Should be there. The package I've just downloaded from factory has it.

 Found it.. Someone forgot one of the settings in the spec file, works
 fine now..
Should be fixed soon. Fixed package are currently being build.

-- 
Ralf Haferkamp
SUSE LINUX Products GmbH, Maxfeldstrasse 5, D-90409 Nuernberg
T: +49-911-74053-0
F: +49-911-74053575 - [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse] useradd.local with ldap

2006-06-19 Thread Ralf Haferkamp
On Monday 19 June 2006 12:48, Peter Münster wrote:
 Hello,

 I've users managed by ldap on SL-10.1 and I would like to do some tasks
 whenever a user is added or deleted with YaST.
 It seems, that /usr/sbin/useradd.local is not called.
The YaST Usermanagement module doesn't use useradd to create LDAP users. It's 
using a Perl API that makes direct LDAP operations.

 Is there another way, to do this?
The Perl API is extensible through plugins. It might be possible to code a 
plugin that does what you need (e.g. maybe just call useradd.local from the 
plugin).
For an example plugin you could look at 
/usr/share/YaST2/modules/UsersPluginSamba.pm
which is part of the yast2-samba-server package.

-- 
Ralf Haferkamp
SUSE LINUX Products GmbH, Maxfeldstrasse 5, D-90409 Nuernberg
T: +49-911-74053-0
F: +49-911-74053575 - [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse] Re: useradd.local with ldap

2006-06-19 Thread Ralf Haferkamp
On Monday 19 June 2006 16:06, Peter Münster wrote:
 On Mon, 19 Jun 2006, Ralf Haferkamp wrote:
   Is there another way, to do this?
 
  The Perl API is extensible through plugins. It might be possible to code
  a plugin that does what you need (e.g. maybe just call useradd.local from
  the plugin).
  For an example plugin you could look at
  /usr/share/YaST2/modules/UsersPluginSamba.pm
  which is part of the yast2-samba-server package.

 Thanks!
 Is there some documentation how to integrate such a plugin into YaST?
 (In fact, I just want to call smbpasswd -an $user and
  smbpasswd -x $user.)
You could use the already existing SambaUsers Plugin for that. Though it does 
not use smbpasswd to create the Samba-Accounts. 
It seems that the SambaUsers Plugin is only available in expert mode. To 
enable it you need to set ui_mode to expert in the [globals] section 
of /etc/YaST2/ProductFeatures.
After that you should see the Plugin listed in the Plugins-Tab of the YaST 
Users Management Module.
If you want to code your own plugin you could just use UsersPluginSamba.pm as 
an example.

-- 
Ralf

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse] Partial Migrations... SUSE with MS AD

2006-02-01 Thread Ralf Haferkamp
On Wednesday 01 February 2006 03:29, Joseph M. Gaffney wrote:
 Noticed something on suseforums just now

 Does anyone have any experience in using SUSE with MS active
 directory? 
You might want to take a look at the yast2 samba-client module in the 
upcoming Beta3. With that you can join an active directory domain.

 If so, could you write something up/add it to the wiki?  
 If you can write something up, but aren't familiar with wiki
 formatting, I'll help you reformat it or post it up.

 Something like that would be an excellent way for people to do
 partial migrations, especially students in labs.

 The thread this came from is here:
 http://www.suseforums.net/index.php?showtopic=18955

 Joseph M. Gaffney
 aka CuCullin

-- 
Ralf

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse] Open-Xchange Package Suse 10.0

2005-10-27 Thread Ralf Haferkamp
On Wednesday 26 October 2005 23:31, Daniel Hatfield wrote:
 Does anyone know if there is a how-to or some documentation available
 for the open-xchange package that is available in Suse 10.0?  I tried
 to use the how-to for 9.3 on the open-xchange wiki, but it looks like
 the package has done a lot of the things mentioned there already (and
 some of them differently).

 If not, has anyone setup open-xchange using the package that's
 available?  Any tips to get me headed in the right direction would be
 great.
You might want to take a look at
/usr/share/doc/packages/open-xchange/README.SUSE that should contain the 
information you need to get started. If not, please report your 
problems via bugzilla.

-- 
Ralf

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [opensuse] open-exchange

2005-09-07 Thread Ralf Haferkamp
On Monday 05 September 2005 21:17, Peter Czanik wrote:
 Hello,

 Christoph Thiel wrote:
  Could you please put this into Bugzilla, to make sure the right developer
  get's this feedback?

 Yes. #115285, #115286, #115294 (two more dependency problems) and #115306.

 What I'm still missing, is some documentation about how to integrate it
 with cyrus-imapd. README.SuSE for cyrus-imapd shows how to use it with
 PAM users, and it works fine.
Setup your system to use nss- and pam_ldap and it should work.

 But OX uses LDAP for users, and one doesn't really need system users for a
 web based workgroup software. Did anyone succeeded with it? 
The adduser_ox utility will automatically create the user as the system user. 
I am not sure if this is needed for the web based part of OX. But you can use 
it to let the cyrus-imapd authenticate against the LDAP Server with pam_ldap.
I don't know if there is another way to let cyrus-imapd authenticate against 
an LDAP server.

-- 
Ralf

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]