Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - isaac

Pages: 1 ... 4 5 [6] 7 8 ... 10
76
Installation and Upgrades / Re: Email signatures in egroupware
« on: January 13, 2010, 05:19:43 pm »
Hi James :)

By default per user signatures are not enabled.

You have to go to the admin interface, click on 'emailadmin', and there you will find a tab called 'signature' which has an option called 'allow users to define their own signatures' or something like that :)

Once that's done users will have an entry called 'Manage signatures' in their mail interface. Be aware that you have to log out and log in again before it appears.

Cheers!

77
I looked after that line
Code: [Select]
write_file(SSL_DIR . 'master.cert', $cert); and here's what did the trick for me:
In
Code: [Select]
/var/lib/ebox/confthere are the two dirs "ssl" and "ssl-ca"
Look at the rights for the dirs and the files in "ssl".
With chmod I set them to rwxrwxrwx (for the dirs) and rw-rw-rw- for the files, then I activated UsersAndGroups again. It worked. After that I set the rights back.

Uhm, weird, the default rights in my system after a new installation are:
Code: [Select]
drwx------ 2 ebox adm 4096 2010-01-11 14:41 /var/lib/ebox/conf/ssl/
drwxr-xr-x 2 ebox adm 4096 2009-12-24 14:19 /var/lib/ebox/conf/ssl-ca/
which should be just fine.

78
Spanish / Re: Problema con la version ebox_installer-1.3.10-2.iso
« on: January 11, 2010, 10:15:49 am »
Si, mandamelo a isaac@ebox-technologies.com

79
I think you meant to write the message in a different thread. This error here doesn't have anything to do with replication, nor says anything about 'really nasty bugs'.

Cheers!

80
Spanish / Re: Problema con la version ebox_installer-1.3.10-2.iso
« on: January 08, 2010, 02:12:22 pm »
Ok. Dame un poco de tiempo e intentare instalar desde 0 la version 1.3.10 y ver si todo esta funcionando correctamente. Mientras tanto si es posible adjunta la salida de los comando:
Code: [Select]
sudo slapcat -b 'cn=config' > slapcat.config.master
sudo slapcat > slapcat.db.master
en la ebox maestra y
Code: [Select]
sudo slapcat -b 'cn=config' -F /etc/ldap/slapd-replica.d > slapcat.config.replica
sudo slapcat -F /etc/ldap/slapd-replica.d > slapcat.db.replica
en la ebox esclava.

Un saludo

81
Spanish / Re: Problema con la version ebox_installer-1.3.10-2.iso
« on: January 08, 2010, 12:41:52 pm »
Ooops, perdona es 'users' en lugar de 'usersandgroups'. Si te sigue dando el mismo error intenta reinstalar el esclavo desde cero.

82
Spanish / Re: Problema con la version ebox_installer-1.3.10-2.iso
« on: January 08, 2010, 10:52:07 am »
Hola Cayetano. Alguno fue mal en algun momento y se ha quedado en un estado en el que no se va a sincronizar nunca.

En el esclavo ejecuta:
sudo apt-get remove --purge ebox-usersandgroups slapd
sudo rm -rf /var/lib/ldap* /etc/ldap
sudo apt-get install ebox-usersandgroups slapd
sudo /usr/share/ebox/ebox-unconfigure-module usersandgroups

y despues intentalo de nuevo. Usando la contrasenya que en el master esta en /var/lib/ebox/conf/ebox-ldap.passwd.

Un saludo

83
Installation and Upgrades / Re: 1.3.10 Master/Slave Problem
« on: December 22, 2009, 07:57:39 pm »
Also, 512MB might not be enough RAM depending on the usage. Can you monitor the RAM usage with 'free' to see if it's running out of RAM?

Thanks :)

84
Installation and Upgrades / Re: 1.3.10 Master/Slave Problem
« on: December 22, 2009, 07:56:29 pm »
Sorry for taking so long to reply. Have you managed to discover what was wrong?

Can you try to see if both slaves are failing or it is one of them the one that fails most of the times?

Cheers!

85
Installation and Upgrades / Re: Is it possible to change "base dc"?
« on: December 22, 2009, 06:10:01 pm »
Hi there :D

Well, it could be changed, but I honestly think it would take more effort than just reinstalling :)

You would need to replace all appearances in /etc/ and then dump the slapd database with slapcat, do the change and load it again. In any case it won't appear in any public places. Samba users won't see it, mail users won't see it, it's just used internally.

I guess your best option now is either live with it if it's just a test or reinstall :)

Cheers!

86
Installation and Upgrades / Re: Ebox 1.3 UserAndGroups
« on: December 18, 2009, 06:40:52 pm »
Try to run:
Code: [Select]
sudo apt-get -y --force-yes remove --purge slapd ebox-usersandgroups
sudo rm -rf /var/lib/ldap* && sudo rm -rf /etc/ldap/*
sudo apt-get install ebox-usersandgroups
#slapd will ask for a pass, enter something non-empty
sudo /usr/share/ebox/ebox-unconfigure-module users

Then go to Users -> Mode, insert the password you inserted in the slapd configuration, then enable the usersandgroups module in Module Status and save changes.

Check if it works then.

87
Installation and Upgrades / Re: Ebox 1.3 UserAndGroups
« on: December 18, 2009, 03:33:12 pm »
That's weird, it basically means that the LDAP branch containing the groups is not there. It is automatically created when enabling the module, so it should definitely be there.

Have you installed ebox-usersandgroups just once? Or have you installed and removed and installed again or upgraded from other version or something like that?

88
Installation and Upgrades / Re: How do one create his own smtp server??
« on: December 15, 2009, 03:48:38 pm »
The mail module itself will try to resend messages when they are temporarily rejected so you don't really need to go to the mail queue and try to resend manually :)

89
Uhm, just realized that my fix will fix the problem for new installations but not for old ones :)

To fix it in an existing installation do the following:
Code: [Select]
sudo /etc/init.d/slapd stop
sudo vim /etc/ldap/slapd.d/cn\=config/olcDatabase\=\{1\}hdb.ldif

In that file, look for a line like:
Code: [Select]
olcDbIndex: objectclass eq

and add the following below it:
Code: [Select]
olcDbIndex: uid eq
olcDbIndex: memberUid eq

Then save and run:
Code: [Select]
sudo /etc/init.d/slapd start

Warnings should be gone.

90
Hi Andreas!

I have just fixed this in the SVN so the next release should not have this problem. This new release should be out in a week or so.

Cheers!

Pages: 1 ... 4 5 [6] 7 8 ... 10