similar to: imapsync, namespaces and Dovecot 2.x

Displaying 20 results from an estimated 300 matches similar to: "imapsync, namespaces and Dovecot 2.x"

2011 Feb 19
1
Please, help me clarify (winbind).
Hi again, still struggling with winbind and trying to understand how it is supposed to work. Let's see if someone can answer a simple resolution question so I can see if something is wrong with my setup. One PDC/LDAP (no winbind), nss with ldap. This works fine as far as I can tell. The other machine is a DMS. Let's say I have an entry like this on my 'getent passwd' (via LDAP):
2012 Sep 25
2
Moving to Samba4, DNS problems.
Hi, I've spent the last days building the Samba4 RC1 and trying to move a DC from 2003 to Samba4. I've followed the HowTo's, first to build Samba4, and then to add a domain as a backup domain controller on the Wiki. Everything seems to be working fine. My backup domain controller gets all the information from the PDC, this is LDAP, Kerberos and DNS. As suggested by a message on this
2010 Apr 08
3
blktap2: help please?
Hi guys, i''ve just installed xen 4.0. Since always blktapctl has never worked on my dell 1950III. I even posted a bug but so far i can''t use tap:aio or similar. I thought that with version 4 this would work, but it didn''t. I still see syslog errors from blktap version 1.0.0. Today i wanted to try version 2 I found on the xen/tools source folder. I compiled the source
2005 Mar 30
0
IDMAP storage in LDAP using winbind
Hi, I running samba-3.0.13-1 on RH9 (openldap-2.0.27-8,krb5-1.2.7-10,nss_ldap-202-5) and configured as show below, my intention is only to make IDMAP storage in LDAP using winbind. I've looked on SAMBA3 by example book and relatives official guide on the site. First I have try to run samba and winbind retriving users and groups from ADS and storing them in winbindd_idmap.tdb and
2005 Mar 31
1
IDMAP LDAP problems
Hi, I running samba-3.0.13-1 on RH9 (openldap-2.0.27-8,krb5-1.2.7-10,nss_ldap-202-5) and configured as show below, my intention is only to make IDMAP storage in LDAP using winbind. I've looked on SAMBA3 by example book and relatives official guide on the site. First I have try to run samba and winbind retriving users and groups from ADS and storing them in winbindd_idmap.tdb and
2011 Jun 09
1
Trying to make code more efficient
I have a repetative task in R and i'm trying to find a more efficient way to perform the following task. lst <- list(roots = c("car insurance", "auto insurance"), roots2 = c("insurance"), prefix = c("cheap", "budget"), prefix2 = c("low cost"), suffix = c("quote", "quotes"),
2011 Jun 09
1
Error: missing values where TRUE/FALSE needed
I'm writing a function and keep getting the following error message. myfunc <- function(lst) { lst <- list(roots = c("car insurance", "auto insurance"), roots2 = c("insurance"), prefix = c("cheap", "budget"), prefix2 = c("low cost"), suffix = c("quote", "quotes"), suffix2 = c("rate",
2011 Jun 09
2
Problem with a if statement inside a function
I have a really long functions, and at the end of the function, I am using a if statement to tag certain keywords based on whether they have certain values contained in them. However, the if statement doesn't seem to work. When I had split up the commands into various functions, it worked fine, but I'm not sure what going on now that it's combined into a single function. myfunc
2013 Oct 10
1
Sessión a distancia
Felipe, gracias por tu interés. La sesión quedó grabada y se colgará en breve en la página de R-es. Ya avisaremos cuando esté colgada. Un saludo, Aleix El 10 de octubre de 2013 00:01, Felipe Vargas Reeve <kaiser756@gmail.com>escribió: > Esta fue una gran iniciativa y tenía muy presente el tema relacionado a > la transmisión por internet, pero por motivos de trabajo no pude
2011 Jun 09
1
Using a function inside a function
I'm trying to run a function inside a function but get an error message. lst <- list(roots = c("car insurance", "auto insurance"), roots2 = c("insurance"), prefix = c("cheap", "budget"), prefix2 = c("low cost"), suffix = c("quote", "quotes"), suffix2 = c("rate", "rates"), suffix3 =
2013 Oct 08
2
Sessión a distancia
La reunión de mañana<http://rugbcn.wordpress.com/2013/09/13/proxima-reunio-3/> del grupo de usuarios de Barcelona (RugBcn - http://rugbcn.wordpress.com/2013/09/13/proxima-reunio-3/) será retransmitida a través de la red. Para aquellos que estéis interesados, tenéis que conectaros a http://r-es.org/rugbcn-online, poner un “Nombre” y darle al botón “unirse”. Esperemos que os resulten
2012 Jun 03
1
Curso introducción a R
Paralelamente al curso propuesto por Juanjo Gibaja y Carlos Gil Bellosta, el R Users Group de Barcelona (RUGBCN) conjuntamente con el grupo de estudiantes de la facultad de sociologia de la UB ofrecemos un curso de introducción a R (presencial en nuestro caso) para aquellos que quieran aprender R desde 0. Para más información visitad la página http://rugbcn.wordpress.com/2012/05/28/601/ Os
2013 Oct 28
1
Sessión a distancia
Hemos colgado en internet la última sesión del grupo de usuarios de R de Barcelona, en los servidores de R-es.org (aprovechamos para agradecer a la comunidad R hispano su disponibilidad para ofrecer dicho servicio) en http://r-es.org/rugbcn-online La sesión de "El Miércoles 09 de Octubre, 2013 desde la/s 18:46h hasta la/s 21:02h". La presentación de Juan Galeano está también disponible
2008 Nov 04
2
ggplot & annotating charts
Dear "R-listers" I've been trying to figure out how to annotate charts in ggplot (ie add text to line charts, highlighted boxes etc). By and large, I can get close to what i want with base graphics, but would ideally like to use ggplot whenever possible (additionally, i would like to add text labels automatically to the chart). The code is below I suspect I need to use geom_rect,
2011 Jun 06
1
Merge two columns of a data frame
I have the following data: prefix <- c("cheap", "budget") roots <- c("car insurance", "auto insurance") suffix <- c("quote", "quotes") prefix2 <- c("cheap", "budget") roots2 <- c("car insurance", "auto insurance") roots3 <- c("car insurance", "auto
2011 Oct 31
1
Question about copying reference objects using the initialize method
Dears, I have a question about copying reference objects using the initialize method. 1) If the latter has no arguments, there is no problem to copy an object. myClass = setRefClass("myClass", fields = list(value = "numeric") ) myClass$methods(initialize = function(...){ ? value <<- 1 ? callSuper(...) }) newObject = myClass$new() newObject$value = 2 copyObject =
2007 Dec 12
6
namespace problem / 1.1beta11
Hi all, actually I got a problem with the namespaces in dovecot 1.1 beta11. It occured after purging index files and resynch via imapsync. Dovecot complains about "Unknown namespace", though it worked with versions before. I cannot comfirm for 1.1beta10, but I surely know 1.1beta9 worked with these settings. Example: From Folder [INBOX/Trash] To Folder [___________] To Folder
2013 Sep 25
1
Nuevo ítem de la agenda
Reunión de usuarios Barcelona --- El próximo 9 de octubre a las 19h retomamos las sesiones del grupo de usuarios de Barcelona, [http://rugbcn.wordpress.com/|RugBcn]. La reunión será en la empresa aceleradora de startups, [http://itnig.net/|itnig] (Calle Álaba 61, 5-2, Barcelona) y para la discusión final, Moritz nos invita a unas cervezas. Las charlas serán: Juan Galeano: ?Visualizando datos:
2002 Jun 06
1
Effective UID is not 0 in: unable to open passdb database...
I get next error while trying to join a Samba PDC: [2001/12/03 23:51:03, 0] passdb/pdb_smbpasswd.c:startsmbfilepwent(170) startsmbfilepwent_internal: unable to open file /usr/local/samba/private/smbpasswd. Error was Permission denied [2001/12/03 23:51:03, 0] passdb/pdb_smbpasswd.c:pdb_getsampwrid(1416) unable to open passdb database. I've been trying to locate the error in samba source
2011 Mar 22
2
Mail Sync
I am trying to sync my mail on two different servers as testing for converting our business over to a server using dovecot. I am currently running dovecot version 2.0.11 While trying to sync the messages using Thunderbird and a program named imapsync, I run into an error stating that the dovecot server does not know how to handle messages with the FORWARD flag set. Is the FORWARD flag