Re: CVS to GIT

2010-09-13 Thread Jeroen van Meeuwen (Kolab Systems)
Brian Awood wrote: > On Mon, 13 Sep 2010 16:34:02 +0200, "Jeroen van Meeuwen (Kolab Systems)" > > wrote: > > Mark Cave-Ayland wrote: > >> My other point, of course, was that since the PostgreSQL guys worked to > >> fix a couple of bugs in cvs2git over the past couple of weeks, you may > >> get a

Re: CVS to GIT

2010-09-13 Thread Brian Awood
On Mon, 13 Sep 2010 16:34:02 +0200, "Jeroen van Meeuwen (Kolab Systems)" wrote: > Mark Cave-Ayland wrote: > >> My other point, of course, was that since the PostgreSQL guys worked to >> fix a couple of bugs in cvs2git over the past couple of weeks, you may >> get a better result if you grab the

Re: CVS to GIT

2010-09-13 Thread Jeroen van Meeuwen (Kolab Systems)
Mark Cave-Ayland wrote: > Oooh very nice. It seems to be a common issue that projects have to > tweak their CVS repositories by hand to get a reasonable conversion to > git. I'll try and take a closer look when I get a spare moment. > Thanks! > My other point, of course, was that since the Postg

Re: CVS to GIT

2010-09-13 Thread Mark Cave-Ayland
Jeroen van Meeuwen (Kolab Systems) wrote: > We have a working sample, with a documented procedure, to move three CVS > modules (cmulocal, cyrus and sieve) into one GIT repository: > > > http://www.cyrusimap.org/mediawiki/index.php/Drafts/CVS_to_GIT_Conversion#Stab_.232 > > There some about b

Re: CVS to GIT (was: New Cyrus project site and bugzilla)

2010-09-13 Thread Jeroen van Meeuwen (Kolab Systems)
Mark Cave-Ayland wrote: > Bron Gondwana wrote: > >> The main criticism I have from a developer point of view is, well, CVS. > >> Enough said. Please please can we have an official git mirror? It makes > >> maintaining out-of-tree patches so much easier in the long run, and > >> therefore much more

Re: cvs version running now - couple questions

2003-07-10 Thread Ken Murchison
James Satterfield wrote: Is there any way to specify the location of imapd.conf and cyrus.conf? I normally keep them in /usr/local/etc and I didn't see any configure time option for the location, or a master(8) flag for the conf locations. Use the -C option for master and the services/utilitie

Re: CVS downloads

2003-03-18 Thread Sebastian Konstanty Zdrojewski
cvs -d :pserver:[EMAIL PROTECTED]:/cvs login (enter "anonymous" as the password) cvs -d :pserver:[EMAIL PROTECTED]:/cvs co -d cyrus-imapd cyrus (the first -d specifies the CVSROOT, in this case, our CVS server, and a path to the CVS repository; co says "check out", -d says "and stick it in t

Re: cvs cyrus-imapd-2_2 and quota with virualdomain

2003-01-21 Thread Gary Mills
On Tue, Jan 21, 2003 at 11:09:56AM -0500, Ken Murchison wrote: > > Does fullhash use both upper and lower or just upper exclusively? (I > could look at the code, but I'm being lazy) It uses upper case exclusively, to distinguish it from the original hash scheme. -- -Gary Mills--Unix Suppor

Re: cvs cyrus-imapd-2_2 and quota with virualdomain

2003-01-21 Thread Ken Murchison
Henrique de Moraes Holschuh wrote: > > On Tue, 21 Jan 2003, Ken Murchison wrote: > > Did you compile with --enable-fulldirhash? If so, this might be the > > problem because mkimap does not support this yet. That being said, I > > didn't think that fulldirhash used upper case letters for the ha

Re: cvs cyrus-imapd-2_2 and quota with virualdomain

2003-01-21 Thread Henrique de Moraes Holschuh
On Tue, 21 Jan 2003, Ken Murchison wrote: > Did you compile with --enable-fulldirhash? If so, this might be the > problem because mkimap does not support this yet. That being said, I > didn't think that fulldirhash used upper case letters for the hash > directories. What does the path to this ma

Re: cvs cyrus-imapd-2_2 and quota with virualdomain

2003-01-21 Thread Ken Murchison
Vittorio Manfredini wrote: > > I just install to test the cvs version and I activate it on a machine using a > virtual domain. > > All seem to work fine, but when I try to set quota on a virtual domain mailbox I > have an I/O error. > > When I read the log file I found this error : > Jan 21 11

Re: cvs cyrus-imapd-2_2 and quota with virualdomain

2003-01-21 Thread marc . bigler
Hi, >From the previous posts in this mailing list about virutal domains I can remember reading something about running mkimap before you could setup virtual domain mailboxes... Try to browse this mailing list with some keywords like virtual domains... I guess that's your problem. Regards Marc

Re: CVS 2.2 no longer compilable under Red Hat 7.3?

2003-01-04 Thread Ken Murchison
If you've just done a CVS update and expect to compile, its not going to happen (too many things have changed). Try: make distclean rm configure sh SMakefile ./configure ... make Jonathan Marsden wrote: > > Something in CVS 2.2 changed since 26 Sept 2002 that apparently makes > for trouble com

Re: [CVS] pidfile support

2002-12-17 Thread Carson Gaspar
--On Tuesday, December 17, 2002 1:12 PM -0200 Henrique de Moraes Holschuh <[EMAIL PROTECTED]> wrote: [A] 1. stat pidfile 2. file exists? 2a (yes) - read pid from file, kill(pid,0) it 2a1 - kill says process exists? fail to start if so No no no. You must check and see if the P

Re: [CVS] pidfile support

2002-12-17 Thread Henrique de Moraes Holschuh
On Tue, 17 Dec 2002, Rob Siemborski wrote: > On Tue, 17 Dec 2002, Henrique de Moraes Holschuh wrote: > > I like it. It also allows us to keep [A] around for a little while if we > > wish to do so, to detect startup errors of other sorts... > Okay, I've committed this. Take a look and let me know

Re: [CVS] pidfile support

2002-12-17 Thread Rob Siemborski
On Tue, 17 Dec 2002, Henrique de Moraes Holschuh wrote: > Kludgy it is :P but using kill to detect the presence of a process is > actually reasonably portable AFAIK, and safe :-) Well, yeah, it looked ugly enough to be portable. ;) > > I think this works no matter how the things are interleave

Re: [CVS] pidfile support

2002-12-17 Thread Henrique de Moraes Holschuh
On Tue, 17 Dec 2002, Rob Siemborski wrote: > On Tue, 17 Dec 2002, Henrique de Moraes Holschuh wrote: > > It won't. We will have to transfer the lock to B without a > > race-condition. That means IPC, or signals, or something like that... > > Yeah, I was discussing this with someone in the offic

Re: [CVS] pidfile support

2002-12-17 Thread Rob Siemborski
On Tue, 17 Dec 2002, Henrique de Moraes Holschuh wrote: > It won't. We will have to transfer the lock to B without a > race-condition. That means IPC, or signals, or something like that... Yeah, I was discussing this with someone in the office yesterday, and there's a half-decent way to do thi

Re: [CVS] pidfile support

2002-12-17 Thread Henrique de Moraes Holschuh
On Mon, 16 Dec 2002, Rob Siemborski wrote: > > 1. There is no support for updating the pidfile. Thus, the lock is acquired > > only after forking, which means we lost the controlling terminal by the time > > we can complain about not being able to acquire a lock, and that we have > > already tried

Re: [CVS] pidfile support

2002-12-16 Thread Rob Siemborski
On Sun, 15 Dec 2002, Henrique de Moraes Holschuh wrote: > 1. There is no support for updating the pidfile. Thus, the lock is acquired > only after forking, which means we lost the controlling terminal by the time > we can complain about not being able to acquire a lock, and that we have > already

Re: CVS questions

2002-10-13 Thread Ken Murchison
Quoting "Kervin L. Pierre" <[EMAIL PROTECTED]>: > Hi, > > I'm about to build/configure CVS imapd 2.2 branch for virtual domain > support with a single IP. I have a few questions before I start. > > What are the CVS branches, tags available for download? Which do I use http://bugzilla.andre

Re: cvs imapd configure errors out on the SASL libs

2002-10-03 Thread Joe Rhett
Forget I said that. Operator error. The fix is in. On Thu, Oct 03, 2002 at 09:04:39PM -0700, Joe Rhett wrote: > I can't find the original e-mail but I thought someone said they had solved > this -- but either it isn't checked into CVS, or it isn't merged into the > cyrus_2_2 tree, because a fre

Re: cvs imapd configure errors out on the SASL libs

2002-10-03 Thread Joe Rhett
I can't find the original e-mail but I thought someone said they had solved this -- but either it isn't checked into CVS, or it isn't merged into the cyrus_2_2 tree, because a fresh new pull from CVS was still compiling the conftest program without the --with-sasl paths, and I had to create symbol

Re: cvs

2001-11-20 Thread Rob Siemborski
On Wed, 21 Nov 2001, Jure Pecar wrote: > All that talk about cyrus 2.1 and sasl v2 made me want to take a look > at it ... webcvs lists just too many branches to choose from :) so > which one do i pick? imapd-sasl-v2(-base) or cyrus-2_1 ? You'll want the imapd-sasl-v2 branch from the cyrus tree,

Re: CVS is missing "master.h"

2000-11-06 Thread Lawrence Greenfield
Date: Mon, 06 Nov 2000 07:32:54 -0500 From: Seva Adari <[EMAIL PROTECTED]> Organization: Adari TeleComp Inc Could somebody from development team check in the "master.h" file (under dir master) please! Checked in, sorry. Larry