From ossp-dev-owner@ossp.org Thu May 23 11:59:28 2002 Received: from dev14.dev.de.cw.net (dev14.dev.de.cw.net [141.1.23.114]) by mail.ossp.org (Postfix) with ESMTP id DA12976360 for ; Thu, 23 May 2002 11:57:04 +0200 (CEST) Received: (from ms@localhost) by dev14.dev.de.cw.net (8.12.3/8.11.4) id g4N9v4FE044442 for ossp-dev@ossp.org; Thu, 23 May 2002 11:57:04 +0200 (CEST) (envelope-from ms) Date: Thu, 23 May 2002 11:57:04 +0200 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp lmtp2nntp_msg.c Message-ID: <20020523115704.D22880@dev14.dev.de.cw.net> References: <20020523093427.C2C8276363@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20020523093427.C2C8276363@mail.ossp.org>; from thl@ossp.org on Thu, May 23, 2002 at 11:34:27AM +0200 Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Hallo, Does somebody have a short explanation of what is portable and what is not portable regarding memory allocation? Are calloc(3) and realloc(3) portable or desirable? Regards, Michael -- michael.schloh@cw.com Development Team, Application Services Cable & Wireless Deutschland GmbH On Thu, May 23, 2002 at 11:34:27AM +0200, Thomas Lotterer wrote: > - *cppOut = (char *)mallocex(0); //FIXME is this portable? ... > Log: > yes, at least on FreeBSD, LINUX and Solaris8 From ossp-dev-owner@ossp.org Thu May 23 13:26:10 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 2483B76360 for ; Thu, 23 May 2002 13:26:10 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1000) id 0F09A4CE743; Thu, 23 May 2002 13:26:10 +0200 (CEST) Date: Thu, 23 May 2002 13:26:10 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp lmtp2nntp_msg.c Message-ID: <20020523112609.GA70383@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: In article <20020523115704.D22880@dev14.dev.de.cw.net> you wrote: > Does somebody have a short explanation of what is portable and what is not > portable regarding memory allocation? Are calloc(3) and realloc(3) portable or > desirable? Both are POSIX and hence are portable by definition, yes. realloc(3) you can use freely, calloc(3) I do not recommend because it is usually always better and more secure to initialize a chunk of memory explicitly instead of using calloc(3). Remember that calloc(3) performs mainly a memset(..., 0, ...) meaning it sets the chunk of memory byte-wise to zero bytes. But if the chunk of memory contains floats, etc. this does _NOT_ mean that they are all 0.0, etc. So, use realloc(3) and avoid calloc(3). Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Thu May 23 13:47:23 2002 Received: from dev0.dev.de.cw.net (dev0.dev.de.cw.net [141.1.23.20]) by mail.ossp.org (Postfix) with ESMTP id E6EFC76360 for ; Thu, 23 May 2002 13:42:31 +0200 (CEST) Received: by dev0.dev.de.cw.net (Postfix, from userid 10009) id CE3DB8D860; Thu, 23 May 2002 13:42:31 +0200 (CEST) Date: Thu, 23 May 2002 13:42:31 +0200 From: Thomas Lotterer To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp lmtp2nntp_msg.c Message-ID: <20020523114231.GA63261@dev.de.cw.net> References: <20020523093427.C2C8276363@mail.ossp.org> <20020523115704.D22880@dev14.dev.de.cw.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20020523115704.D22880@dev14.dev.de.cw.net> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Thu, May 23, 2002, Michael Schloh von Bennewitz wrote: > Does somebody have a short explanation of what is portable and what is not > portable regarding memory allocation? [...] > Good question, Ralf already answered it. I want to point out that in my particular case the question of portability was not not related to which function is used, as mallocex() is just a wrapper around malloc(). My issue was the fact that zero bytes are requested. > On Thu, May 23, 2002 at 11:34:27AM +0200, Thomas Lotterer wrote: > > - *cppOut = (char *)mallocex(0); //FIXME is this portable? -- Thomas.Lotterer@cw.com Development Team, Application Services, Cable & Wireless Deutschland GmbH From ossp-dev-owner@ossp.org Sat May 25 16:01:02 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 0FE3976360 for ; Sat, 25 May 2002 16:01:02 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1000) id CF2CB4CE754; Sat, 25 May 2002 16:01:01 +0200 (CEST) Date: Sat, 25 May 2002 16:01:01 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp lmtp2nntp_msg.c Message-ID: <20020525140101.GA25132@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: In article <20020523114231.GA63261@dev.de.cw.net> you wrote: > On Thu, May 23, 2002, Michael Schloh von Bennewitz wrote: > >> Does somebody have a short explanation of what is portable and what is not >> portable regarding memory allocation? [...] >> > Good question, Ralf already answered it. I want to point out that in my > particular case the question of portability was not not related to which > function is used, as mallocex() is just a wrapper around malloc(). My > issue was the fact that zero bytes are requested. > >> On Thu, May 23, 2002 at 11:34:27AM +0200, Thomas Lotterer wrote: >> > - *cppOut = (char *)mallocex(0); //FIXME is this portable? Oh, sorry, I overlooked this part. No, this is not portable enough. Do not count on this and instead increase to mallocex(1) or do the increase in mallocex() itself. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Tue Jul 2 13:22:43 2002 Received: from sv1.dev.de.cw.net (sv1.dev.de.cw.net [141.1.23.20]) by mail.ossp.org (Postfix) with ESMTP id 6A41A763EB for ; Tue, 2 Jul 2002 13:22:43 +0200 (CEST) Received: from dev16 (mo2.dev.de.cw.net [141.1.23.116]) by sv1.dev.de.cw.net (Postfix) with SMTP id 2F2C08D75D for ; Tue, 2 Jul 2002 13:22:43 +0200 (CEST) Mime-Version: 1.0 Date: Tue, 2 Jul 2002 13:22:00 +0200 References: WmZ!!'K%#!QX^!!-gi"! Message-ID: <20020702T132235Z_2518000F0000@dev.de.cw.net> From: Thomas Lotterer Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp lmtp2nntp_config.c lmtp2nntp_main.c lmt... To: ossp-dev@ossp.org Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: >>> Ralf S. Engelschall 02.07.02 09:49:02 >>> >=20 Hi Ralf! Die meisten Aenderungen waren die C++ Kommentare, aber zweimal = hast du "rc" in "rc2" verwandelt. Vermutlich, weil es im Codeblock = darueber auch schon ein "rc" gab. Ist dieses shadowing nicht im ANSI-C = spezifiziert? -- Thomas.Lotterer@cw.com Development Team, Application Services, Cable & Wireless Deutschland GmbH From ossp-dev-owner@ossp.org Wed Jul 3 15:40:37 2002 Received: from dt4.dev.de.cw.net (dt4.dev.de.cw.net [141.1.23.115]) by mail.ossp.org (Postfix) with ESMTP id 62755763D2 for ; Wed, 3 Jul 2002 15:40:37 +0200 (CEST) Received: from dt4.dev.de.cw.net (localhost.dev.de.cw.net [127.0.0.1]) by dt4.dev.de.cw.net (8.12.5/8.12.2) with ESMTP id g63DebpS003474 for ; Wed, 3 Jul 2002 15:40:37 +0200 (CEST) (envelope-from ms@dt4.dev.de.cw.net) Received: (from ms@localhost) by dt4.dev.de.cw.net (8.12.5/8.12.5/Submit) id g63DebTW003473 for ossp-dev@ossp.org; Wed, 3 Jul 2002 15:40:37 +0200 (CEST) Date: Wed, 3 Jul 2002 15:40:37 +0200 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/cfg .cvsignore 00TODO Makefile cfg.h cfg.pod cfg_... Message-ID: <20020703134036.GC1464@dt4.dev.de.cw.net> References: <20020703132535.E825C767C1@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20020703132535.E825C767C1@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Wed, Jul 03, 2002, Ralf S. Engelschall wrote: > Log: > Add this first cut for the forthcoming OSSP cfg library to CVS. > This is work in progress and still not ready for use anywhere. > Wahoo, we finally have a configuration file parser. I will be the first to use it. M From ossp-dev-owner@ossp.org Thu Jul 4 09:53:32 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 7FA50767D7 for ; Thu, 4 Jul 2002 09:53:32 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1000) id 6693D4CE61C; Thu, 4 Jul 2002 09:53:32 +0200 (CEST) Date: Thu, 4 Jul 2002 09:53:32 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/cfg .cvsignore 00TODO Makefile cfg.h cfg.pod cfg_... Message-ID: <20020704075332.GA20914@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: In article <20020703134036.GC1464@dt4.dev.de.cw.net> you wrote: > On Wed, Jul 03, 2002, Ralf S. Engelschall wrote: >> Log: >> Add this first cut for the forthcoming OSSP cfg library to CVS. >> This is work in progress and still not ready for use anywhere. > > Wahoo, we finally have a configuration file parser. I will be the first to use it. Yes, it already parses our "C-style configuration files" and creates a node tree. But I need to add lot of more API stuff (tree traversal, syntax verification, etc) before we can use it in an application. But we are now finally on the road to the goal... Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Sat Jul 27 00:05:51 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 2773276447 for ; Sat, 27 Jul 2002 00:05:51 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1005) id F33F64CE729; Sat, 27 Jul 2002 00:05:50 +0200 (CEST) Received: by en1.engelschall.com (Postfix, from userid 10000) id 47ECC285C1; Fri, 26 Jul 2002 23:41:08 +0200 (CEST) Date: Fri, 26 Jul 2002 23:41:08 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Cc: peter.smej@de.cw.com Subject: Re: [CVS] OSSP: ossp-pkg/tabea tabea.html Message-ID: <20020726214108.GA4368@engelschall.com> References: <20020726150535.C273A76553@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20020726150535.C273A76553@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Fri, Jul 26, 2002, Peter Smej wrote: > Appended Center tag > [...] > > +
> >

OSSP tabea

> +
> %%BODY%% > > Be careful, the center has to be after , not before. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Tue Jul 30 20:29:54 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 0ABA676523 for ; Tue, 30 Jul 2002 20:29:54 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1000) id CDB864CE747; Tue, 30 Jul 2002 20:29:53 +0200 (CEST) Date: Tue, 30 Jul 2002 20:29:53 +0200 From: "Ralf S. Engelschall" To: pth-users@gnu.org Cc: ossp-dev@ossp.org Subject: Re: Is someone maintaining pth? Message-ID: <20020730182953.GA32391@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: In article <20020729134448.Z188@canonware.com> you wrote: > I've been subscribed to this list for several weeks now, and have seen no > indication that someone is actually maintaining pth. There have been at > least 4 bug reports, 3 of which included fixes. I'd like to know if > someone is keeping track of all the fixes people are providing, since I > recently added pth support to a piece of software I wrote. Pth is both part of the GNU and the OSSP project (where it is physically located and developed). Unfortunately it seems that I've written too much software over the last years ;), because there are lots of packages which I no longer seem to be able to update as fast as people expect it. Sorry, but I can do only as much as my time permits. Pth is definetely maintained by me and the OSSP project team (especially because it is an essential part of OSSP), but it is right that active development slowed down in the Pth area and that official releases occur less frequently. That is mostly because we are focusing currently on other parts of OSSP (see http://cvs.ossp.org/timeline) and Pth already works fine for us so far. But if you look at http://cvs.ossp.org/pkg/lib/pth/ChangeLog and the CVS files at http://cvs.ossp.org/pkg/lib/pth/ you will see that we're working on Pth and updating it, too. Additionally we have many prepared or contributed patches in the development queue, but most of them cannot be directly applied because they are either partly unfinished or not 100% correct. For instance look at the thread "Bug in pth_connect_ev" and the attached patch pth-1.4.1-nonblock.asp.patch: sure, one can say "hey, there are patches posted, but not included into Pth". But if you look closer you will see that it would be not reasonable to include them as is. Sure, this could be communicated better by us. Sorry for this. So, sorry for not beeing able to communicating with you as expected. But do not treat this like we are not interested or do not maintain Pth. We try our best with the OSSP project, but obviously we cannot focus all the time on all sub-projects. If you look at http://cvs.ossp.org/timeline regularily you will notice that we're very actively developing inside OSSP. Although, as explained, currently not in the Pth area. But this changes back and forth on demand. In case there are still any problems and/or patches around we still have not included into the CVS state of Pth (see http://cvs.ossp.org/pkg/lib/pth/), please do not hesitate to repost them here again. Perhaps they were just lost or overlooked. I'll try to make sure they are considered again. Finally, please notice that the following three URLs point you all the time to the physical home of GNU Pth, because it is a sub-project of the larger OSSP project: o http://www.ossp.org/pkg/lib/pth/ o http://cvs.ossp.org/pkg/lib/pth/ o ftp://ftp.ossp.org/pkg/lib/pth/ The GNU URLs.. o http://www.gnu.org/software/pth/ o ftp://ftp.gnu.org/gnu/pth/ ...are just copies of the OSSP data. Yours, Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Tue Jul 30 22:00:10 2002 Received: from canonware.com (dsl081-058-209.sfo1.dsl.speakeasy.net [64.81.58.209]) by mail.ossp.org (Postfix) with ESMTP id A7BFB765EF for ; Tue, 30 Jul 2002 21:58:54 +0200 (CEST) Received: by canonware.com (Postfix, from userid 1001) id F0E75C0; Tue, 30 Jul 2002 13:02:58 -0700 (PDT) Date: Tue, 30 Jul 2002 13:02:58 -0700 From: Jason Evans To: pth-users@gnu.org Cc: ossp-dev@ossp.org Subject: Re: Is someone maintaining pth? Message-ID: <20020730130258.A71796@canonware.com> References: <20020730182953.GA32391@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20020730182953.GA32391@engelschall.com>; from rse@engelschall.com on Tue, Jul 30, 2002 at 08:29:53PM +0200 Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Tue, Jul 30, 2002 at 08:29:53PM +0200, Ralf S. Engelschall wrote: > > In case there are still any problems and/or patches around > we still have not included into the CVS state of Pth (see > http://cvs.ossp.org/pkg/lib/pth/), please do not hesitate to repost them > here again. Perhaps they were just lost or overlooked. I'll try to > make sure they are considered again. Following is a patch that I posted, and it has not been committed. As noted in its explanation, it may not suite the needs of the maintainers, but if you provide some feedback, I'm perfectly willing to do the work to make it acceptable. Thanks, Jason -------------- Date: Sat, 22 Jun 2002 16:38:18 -0700 From: Jason Evans Subject: Problems with poll() To: bug-pth@gnu.org pth_poll_ev() does not provide any support for POLLRDNORM, POLLWRNORM, POLLRDBAND, or POLLWRBAND. This causes surprising errors when calling poll(), if pth is configured with the --enable-syscall-hard flag. The following patch is adequate to support the additional poll() flags, but it still does not solve the whole problem. On Linux, it is necessary to define _GNU_SOURCE or _XOPEN_SOURCE (other definitions may also work) in order for the additional poll() flags to be exposed. This means that pth should probably always be built with _XOPEN_SOURCE on Linux, so that if an application chooses to use the additional poll() flags, pth is able to accomodate the application. Always building pth like this won't hurt anything in the case that the application does not know about the additional poll() flags. A patch for the pth_poll_ev() problems follows. Thanks, Jason Evans --- pth-1.4.1.old/pth_high.c Sun Jan 27 05:14:36 2002 +++ pth-1.4.1/pth_high.c Sat Jun 22 16:18:12 2002 @@ -413,13 +413,42 @@ for(i = 0; i < nfd; i++) { if (!pth_util_fd_valid(pfd[i].fd)) return_errno(-1, EBADF); - if (pfd[i].events & POLLIN) + if (pfd[i].events & (POLLIN +#ifdef POLLRDNORM + | POLLRDNORM +#endif + )) FD_SET(pfd[i].fd, &rfds); - if (pfd[i].events & POLLOUT) + if (pfd[i].events & (POLLOUT +#ifdef POLLWRNORM + | POLLWRNORM +#endif +#ifdef POLLWRBAND + | POLLWRBAND +#endif + )) FD_SET(pfd[i].fd, &wfds); - if (pfd[i].events & POLLPRI) + if (pfd[i].events & (POLLPRI +#ifdef POLLRDBAND + | POLLRDBAND +#endif + )) FD_SET(pfd[i].fd, &efds); - if (pfd[i].fd >= maxfd && (pfd[i].events & (POLLIN|POLLOUT|POLLPRI))) + if (pfd[i].fd >= maxfd && (pfd[i].events & (POLLIN|POLLOUT|POLLPRI +#ifdef POLLRDNORM + | POLLRDNORM +#endif +#ifdef POLLWRNORM + | POLLWRNORM +#endif +#ifdef POLLWRBAND + | POLLWRBAND +#endif +#ifdef POLLRDBAND + | POLLRDBAND +#endif + + ))) maxfd = pfd[i].fd; } if (maxfd == -1) @@ -439,7 +468,12 @@ continue; } if (FD_ISSET(pfd[i].fd, &rfds)) { - pfd[i].revents |= POLLIN; + if (pfd[i].events & POLLIN) + pfd[i].revents |= POLLIN; +#ifdef POLLRDNORM + if (pfd[i].events & POLLRDNORM) + pfd[i].revents |= POLLRDNORM; +#endif ok++; /* support for POLLHUP */ if (recv(pfd[i].fd, data, 64, MSG_PEEK) == -1) { @@ -452,11 +486,25 @@ } } if (FD_ISSET(pfd[i].fd, &wfds)) { - pfd[i].revents |= POLLOUT; + if (pfd[i].events & POLLOUT) + pfd[i].revents |= POLLOUT; +#ifdef POLLWRNORM + if (pfd[i].events & POLLWRNORM) + pfd[i].revents |= POLLWRNORM; +#endif +#ifdef POLLWRBAND + if (pfd[i].events & POLLWRBAND) + pfd[i].revents |= POLLWRBAND; +#endif ok++; } if (FD_ISSET(pfd[i].fd, &efds)) { - pfd[i].revents |= POLLPRI; + if (pfd[i].events & POLLPRI) + pfd[i].revents |= POLLPRI; +#ifdef POLLRDBAND + if (pfd[i].events & POLLRDBAND) + pfd[i].revents |= POLLRDBAND; +#endif ok++; } if (ok) From ossp-dev-owner@ossp.org Wed Jul 31 13:17:26 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 87CAF765EF for ; Wed, 31 Jul 2002 13:17:26 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1005) id 5C10C4CE773; Wed, 31 Jul 2002 13:17:26 +0200 (CEST) Received: by en1.engelschall.com (Postfix, from userid 10000) id 1908B286FB; Wed, 31 Jul 2002 13:15:26 +0200 (CEST) Date: Wed, 31 Jul 2002 13:15:26 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/fsl TODO fsl.pod ossp-pkg/l2 l2_ch_fd.c Message-ID: <20020731111525.GA55964@engelschall.com> References: <20020731073921.BF890765EB@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20020731073921.BF890765EB@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Wed, Jul 31, 2002, Thomas Lotterer wrote: > renamed L2 fd() channel argument "filedescriptor" to "fd" Oh, yes, thanks. I forgot that we wanted this. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Thu Aug 1 18:02:15 2002 Received: from dt4.dev.de.cw.net (dt4.dev.de.cw.net [141.1.23.115]) by mail.ossp.org (Postfix) with ESMTP id E1684763D8 for ; Thu, 1 Aug 2002 18:02:14 +0200 (CEST) Received: from dt4.dev.de.cw.net (localhost.dev.de.cw.net [127.0.0.1]) by dt4.dev.de.cw.net (8.12.5/8.12.2) with ESMTP id g71G2E99025200 for ; Thu, 1 Aug 2002 18:02:14 +0200 (CEST) (envelope-from ms@dt4.dev.de.cw.net) Received: (from ms@localhost) by dt4.dev.de.cw.net (8.12.5/8.12.5/Submit) id g71G2Ebp025199 for ossp-dev@ossp.org; Thu, 1 Aug 2002 18:02:14 +0200 (CEST) Date: Thu, 1 Aug 2002 18:02:14 +0200 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-web/new news.txt ossp-web/pkg/lib/fsl index.wml ossp-... Message-ID: <20020801160214.GB776@dt4.dev.de.cw.net> References: <20020801154034.9F98A7645F@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="cvVnyQ+4j833TQvp" In-Reply-To: <20020801154034.9F98A7645F@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --cvVnyQ+4j833TQvp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 01, 2002, Ralf S. Engelschall wrote: > Index: ossp-web/pkg/lib/fsl/index.wml > > stable=3D"none" stable_date=3D"none" > - unstable=3D"0.9.0" unstable_date=3D"01-Aug-2002" > + unstable=3D"1.0.0" unstable_date=3D"01-Aug-2002" > done=3D100> > >

Source

> @@ -45,5 +45,5 @@ > url=3D$(FTP_ROOT_URL)/pkg/lib/fsl/ > directory=3D$(FTP_ROOT_DIR)/pkg/lib/fsl/ > files=3D"fsl-*.tar.gz"=20 > - stable=3D"none" unstable=3D"fsl-0.9.0.tar.gz"> > + stable=3D"fsl-1.0.0.tar.gz" unstable=3D"none"> > > Index: ossp-web/pkg/lib/index.wml > done=3D15 stable=3Dnone unstable=3Dnone> > desc=3D"Faked/Flexible Syslog" > - done=3D100 stable=3Dnone unstable=3D0.9.0> > + done=3D100 stable=3Dnone unstable=3D1.0.0> > > =20 Hmm. OSSP fsl v1.0.0 sources are listed as stable, but OSSP fsl v1.0.0 itse= lf is listed as unstable. Should we really release as 1.0.0 if the logic is not yet stable? If so, then lets release the sources and package as so. -- michael.schloh@cw.com Development Team, Application Services Cable & Wireless Deutschland GmbH --cvVnyQ+4j833TQvp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia iQCVAwUBPUlbhmzoR8ltz6JNAQH+9gP/UItTssEq2xyDlxLXQkAhULUvm/zpcOcc MhMxCpRocoJN+70qBPIJiYgAWQIWHp00R1ULIan5d1r8a0byXwYgrt2p8YB97Tge byOZypSXESkWzV2YSHDd3ISzWMUAPqJ74t/Os9iw5qY9lWW9l+zvhCUMlkE/UuN5 V/ICq0/xb/c= =0nza -----END PGP SIGNATURE----- --cvVnyQ+4j833TQvp-- From ossp-dev-owner@ossp.org Thu Aug 1 23:23:30 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id B25E876439 for ; Thu, 1 Aug 2002 23:23:29 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1000) id 7D1AC4CE69A; Thu, 1 Aug 2002 23:23:29 +0200 (CEST) Date: Thu, 1 Aug 2002 23:23:29 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-web/new news.txt ossp-web/pkg/lib/fsl index.wml ossp-... Message-ID: <20020801212329.GA65823@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: In article <20020801160214.GB776@dt4.dev.de.cw.net> you wrote: > [-- text/plain, encoding quoted-printable, 37 lines --] > >> Index: ossp-web/pkg/lib/fsl/index.wml >> >> > stable="none" stable_date="none" >> - unstable="0.9.0" unstable_date="01-Aug-2002" >> + unstable="1.0.0" unstable_date="01-Aug-2002" >> done=100> >> >>

Source

>> @@ -45,5 +45,5 @@ >> url=$(FTP_ROOT_URL)/pkg/lib/fsl/ >> directory=$(FTP_ROOT_DIR)/pkg/lib/fsl/ >> files="fsl-*.tar.gz" >> - stable="none" unstable="fsl-0.9.0.tar.gz"> >> + stable="fsl-1.0.0.tar.gz" unstable="none"> >> >> Index: ossp-web/pkg/lib/index.wml >> done=15 stable=none unstable=none> >> > desc="Faked/Flexible Syslog" >> - done=100 stable=none unstable=0.9.0> >> + done=100 stable=none unstable=1.0.0> >> >> > > Hmm. OSSP fsl v1.0.0 sources are listed as stable, but OSSP fsl v1.0.0 itself > is listed as unstable. Should we really release as 1.0.0 if the logic is not > yet stable? If so, then lets release the sources and package as so. Fixed. OSSP fsl is now stable, yes. Thanks for the hint. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Tue Aug 27 23:00:27 2002 Received: from mailman.packetdesign.com (dns.packetdesign.com [65.192.41.10]) by mail.ossp.org (Postfix) with ESMTP id 5BCBA769B9 for ; Tue, 27 Aug 2002 22:59:34 +0200 (CEST) Received: from packetdesign.com (bubba.packetdesign.com [192.168.0.223]) by mailman.packetdesign.com (8.11.6/8.11.6) with ESMTP id g7RKxLx53205; Tue, 27 Aug 2002 13:59:25 -0700 (PDT) (envelope-from archie@packetdesign.com) Message-ID: <3D6BE829.CEEA7B8C@packetdesign.com> Date: Tue, 27 Aug 2002 13:59:21 -0700 From: Archie Cobbs MIME-Version: 1.0 To: pth-users@gnu.org Cc: ossp-dev@ossp.org Subject: Re: Is someone maintaining pth? References: <20020730182953.GA32391@engelschall.com> <20020730130258.A71796@canonware.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Jason Evans wrote: > On Tue, Jul 30, 2002 at 08:29:53PM +0200, Ralf S. Engelschall wrote: > > In case there are still any problems and/or patches around > > we still have not included into the CVS state of Pth (see > > http://cvs.ossp.org/pkg/lib/pth/), please do not hesitate to repost them > > here again. Perhaps they were just lost or overlooked. I'll try to > > make sure they are considered again. > > Following is a patch that I posted, and it has not been committed. As > noted in its explanation, it may not suite the needs of the maintainers, > but if you provide some feedback, I'm perfectly willing to do the work to > make it acceptable. Hello Ralf and the list, I would like to kindly point out that there has been no response whatsoever (that I've seen) to Jason's email sent back on June 30, nor have the changes been incorporated into pth (according to the http://cvs.ossp.org/pkg/lib/pth/). This is somewhat ironic, given this particular thread... Cheers, -Archie __________________________________________________________________________ Archie Cobbs * Packet Design * http://www.packetdesign.com From ossp-dev-owner@ossp.org Wed Aug 28 18:19:18 2002 Received: from canonware.com (dsl081-058-209.sfo1.dsl.speakeasy.net [64.81.58.209]) by mail.ossp.org (Postfix) with ESMTP id 0D093769A9 for ; Wed, 28 Aug 2002 18:19:18 +0200 (CEST) Received: by canonware.com (Postfix, from userid 1001) id 30A9E129; Wed, 28 Aug 2002 09:19:08 -0700 (PDT) Date: Wed, 28 Aug 2002 09:19:07 -0700 From: Jason Evans To: pth-users@gnu.org Cc: ossp-dev@ossp.org Subject: Re: Is someone maintaining pth? Message-ID: <20020828091907.W2689@canonware.com> References: <20020730182953.GA32391@engelschall.com> <20020730130258.A71796@canonware.com> <3D6BE829.CEEA7B8C@packetdesign.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <3D6BE829.CEEA7B8C@packetdesign.com>; from archie@packetdesign.com on Tue, Aug 27, 2002 at 01:59:21PM -0700 Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Tue, Aug 27, 2002 at 01:59:21PM -0700, Archie Cobbs wrote: > Jason Evans wrote: > > On Tue, Jul 30, 2002 at 08:29:53PM +0200, Ralf S. Engelschall wrote: > > > In case there are still any problems and/or patches around > > > we still have not included into the CVS state of Pth (see > > > http://cvs.ossp.org/pkg/lib/pth/), please do not hesitate to repost them > > > here again. Perhaps they were just lost or overlooked. I'll try to > > > make sure they are considered again. > > > > Following is a patch that I posted, and it has not been committed. As > > noted in its explanation, it may not suite the needs of the maintainers, > > but if you provide some feedback, I'm perfectly willing to do the work to > > make it acceptable. > > Hello Ralf and the list, > > I would like to kindly point out that there has been no response > whatsoever (that I've seen) to Jason's email sent back on June 30, > nor have the changes been incorporated into pth (according to the > http://cvs.ossp.org/pkg/lib/pth/). > > This is somewhat ironic, given this particular thread... I also sent email directly to Ralf, and heard no response from that either. As things stand, I can't help but form the grudging opionion that pth is being squatted on. Pretending to maintain a project without actually doing so is worse than doing nothing at all, since it discourages others from filling the void. Jason From ossp-dev-owner@ossp.org Fri Oct 18 13:03:56 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 7FC1C765DF for ; Fri, 18 Oct 2002 13:03:56 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1005) id 60FCB4CE691; Fri, 18 Oct 2002 13:03:56 +0200 (CEST) Received: by en1.engelschall.com (Postfix, from userid 10000) id 310262869B; Fri, 18 Oct 2002 12:25:36 +0200 (CEST) Date: Fri, 18 Oct 2002 12:25:36 +0200 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/sio list.h Message-ID: <20021018102536.GA32312@engelschall.com> References: <20021018085735.3F6B5765DA@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20021018085735.3F6B5765DA@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Fri, Oct 18, 2002, Michael van Elst wrote: > [...] > extracted generic list macros from al.c > [...] I recommend to give those macros a common prefix like "LIST_" to indicate that they all correspond to the same macro set. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Fri Oct 18 14:35:28 2002 Received: from sv1.dev.de.cw.net (sv1.dev.de.cw.net [141.1.23.20]) by mail.ossp.org (Postfix) with ESMTP id 2028A765DF for ; Fri, 18 Oct 2002 14:33:37 +0200 (CEST) Received: by sv1.dev.de.cw.net (Postfix, from userid 10012) id A42D18D800; Fri, 18 Oct 2002 14:33:35 +0200 (CEST) Date: Fri, 18 Oct 2002 14:33:35 +0200 From: Michael van Elst To: "Ralf S. Engelschall" Cc: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/sio list.h Message-ID: <20021018123335.GA44125@sv1.dev.de.cw.net> References: <20021018085735.3F6B5765DA@mail.ossp.org> <20021018102536.GA32312@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20021018102536.GA32312@engelschall.com> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Fri, Oct 18, 2002, Ralf S. Engelschall wrote: > I recommend to give those macros a common prefix like "LIST_" > to indicate that they all correspond to the same macro set. If this becomes a public interface ... maybe, maybe optional. For now it is only shared internally between al and sio code and the non-prefixed names prevent the code from looking like XML. Michael From ossp-dev-owner@ossp.org Thu Nov 28 19:26:16 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 78EF77636C for ; Thu, 28 Nov 2002 19:26:16 +0100 (CET) Received: by visp.engelschall.com (Postfix, from userid 1005) id 4964C4CE69A; Thu, 28 Nov 2002 19:26:16 +0100 (CET) Received: by en1.engelschall.com (Postfix, from userid 10000) id BEAF4285E0; Thu, 28 Nov 2002 19:26:07 +0100 (CET) Date: Thu, 28 Nov 2002 19:26:07 +0100 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-web/pkg/tool/asgui index.wml ossp-web/pkg/tool index.... Message-ID: <20021128182607.GA19249@engelschall.com> References: <20021128175343.50178763C6@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20021128175343.50178763C6@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Thu, Nov 28, 2002, Michael Schloh wrote: > Created home page for project asgui. BTW, why "asgui" and not "titraq"? Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Mon Dec 16 15:15:20 2002 Received: from dt4.dev.de.cw.net (dt4.dev.de.cw.net [141.1.23.115]) by mail.ossp.org (Postfix) with ESMTP id 2EA9876310 for ; Mon, 16 Dec 2002 15:15:20 +0100 (CET) Received: from dt4.dev.de.cw.net (localhost.dev.de.cw.net [127.0.0.1]) by dt4.dev.de.cw.net (8.12.6/8.12.2) with ESMTP id gBGEFIcK047155 for ; Mon, 16 Dec 2002 15:15:18 +0100 (CET) (envelope-from ms@dt4.dev.de.cw.net) Received: (from ms@localhost) by dt4.dev.de.cw.net (8.12.6/8.12.5/Submit) id gBGEFI9L047154 for ossp-dev@ossp.org; Mon, 16 Dec 2002 15:15:18 +0100 (CET) Date: Mon, 16 Dec 2002 15:15:18 +0100 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/al al_test.c Message-ID: <20021216141518.GB39063@dt4.dev.de.cw.net> References: <20021216133324.90BB676310@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="vOmOzSkFvhd7u8Ms" In-Reply-To: <20021216133324.90BB676310@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --vOmOzSkFvhd7u8Ms Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 16, 2002, Michael van Elst wrote: > Modified files: > ossp-pkg/al al_test.c >=20 > Log: > make it work >=20 > -** THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED > +** THIS SOFTWARE IS PROVIDED ``AS IS"" AND ANY EXPRESSED OR IMPLIED > ** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES = OF Was it really broken before? It would be good if all our licenses had identical legal text, I think. --=20 michael.schloh@cw.com Development Team, Application Services Cable & Wireless Deutschland GmbH --vOmOzSkFvhd7u8Ms Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia+4K iQEVAgUBPf3f9VuYv80UoVTdAQGa/AgAroosyFlXI6eVW0oCs08joRvrxzjG7Mif YHl+PDLzJ8TZnfm3flY1Z/sBGmVT4M+oMm6iNEd9BvsmMpUHfmJbsE3DAskW/1O2 sgrC1FUAu6Z00HLoCIUrxIM3X9U3vltxP4afYJgV1CNDL3KaG/ZqP4DRLzKKWR+5 0sWMsew12+gtgdvYwmbqJWooZ0o6sYgnN+xuxV94ta24ANvKdGj4sDP083jSCGWl qUPDQgCnjVj8gOGkjkOiNmrkfgW2CMNdCxehkYd0J7peiGbhOUCR4ZL/H9Q+eRHV DyRGzIK4CKaS7Sm9RHIJgeUrJfjaKSTNRWNQktCgafjo5UJdHir5nQ== =ntuy -----END PGP SIGNATURE----- --vOmOzSkFvhd7u8Ms-- From ossp-dev-owner@ossp.org Wed Dec 18 10:33:11 2002 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 7404876304 for ; Wed, 18 Dec 2002 10:33:11 +0100 (CET) Received: by visp.engelschall.com (Postfix, from userid 1005) id 259B44CE78C; Wed, 18 Dec 2002 10:33:11 +0100 (CET) Received: by en1.engelschall.com (Postfix, from userid 10000) id 00C11286BF; Wed, 18 Dec 2002 10:18:40 +0100 (CET) Date: Wed, 18 Dec 2002 10:18:40 +0100 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/sio list.h Message-ID: <20021218091840.GA21578@engelschall.com> References: <20021218085028.D938176311@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20021218085028.D938176311@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Wed, Dec 18, 2002, Michael van Elst wrote: > make this copy "part of sio" > [...] > ** > -** This file is part of OSSP al, an abstract datatype of a data buffer > -** that can assemble, move and truncate data but avoids actual copying. > +## This file is part of OSSP sio, an abstract datatype of > +## a pair of half-duplex data pipes which can be found at > +## http://www.ossp.org/pkg/lib/sio/. > ** > ** Permission to use, copy, modify, and distribute this software for > ** any purpose with or without fee is hereby granted, provided that Ops, wrong prefix, although it still would compile, of course. ;-) Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Thu Feb 6 13:17:21 2003 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 307C4769D5 for ; Thu, 6 Feb 2003 13:17:21 +0100 (CET) Received: by visp.engelschall.com (Postfix, from userid 1000) id C9A834CE5ED; Thu, 6 Feb 2003 13:17:20 +0100 (CET) Date: Thu, 6 Feb 2003 13:17:20 +0100 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp/ lmtp2nntp_config.c Message-ID: <20030206121720.GA2074@engelschall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: In article <20030206105140.EE9EE76A06@mail.ossp.org> you wrote: > Log: > defeat double free(3) Hurray! Thanks. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Tue Feb 11 14:13:35 2003 Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id E3B567651B for ; Tue, 11 Feb 2003 14:13:34 +0100 (CET) Received: by visp.engelschall.com (Postfix, from userid 1005) id 992374CE55A; Tue, 11 Feb 2003 14:13:34 +0100 (CET) Received: by en1.engelschall.com (Postfix, from userid 10000) id 28B9B286B4; Tue, 11 Feb 2003 14:13:12 +0100 (CET) Date: Tue, 11 Feb 2003 14:13:11 +0100 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Cc: thl@dev.de.cw.net Subject: Re: [CVS] OSSP: ossp-pkg/lmtp2nntp/ lmtp2nntp_option.c Message-ID: <20030211131311.GA49792@engelschall.com> References: <20030211125533.665637651B@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20030211125533.665637651B@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Tue, Feb 11, 2003, Thomas Lotterer wrote: > work around memory leak in popt > > Summary: > Revision Changes Path > 1.30 +1 -0 ossp-pkg/lmtp2nntp/lmtp2nntp_option.c > ____________________________________________________________________________ > > patch -p0 <<'@@ .' > Index: ossp-pkg/lmtp2nntp/lmtp2nntp_option.c > ============================================================================ > $ cvs diff -u -r1.29 -r1.30 lmtp2nntp_option.c > --- ossp-pkg/lmtp2nntp/lmtp2nntp_option.c 11 Feb 2003 12:54:58 -0000 1.29 > +++ ossp-pkg/lmtp2nntp/lmtp2nntp_option.c 11 Feb 2003 12:55:31 -0000 1.30 > @@ -316,6 +316,7 @@ > } > if ((option_find(o, i, &ocp) == OPTION_OK) && (ocp->cb != NULL)) { > rv = ocp->cb(ocp, cp = (ocp->type == OPT_FLAG ? NULL : (char *)popt_getoptarg(poptCon)), ocp->cbctx); > + free(cp); /* TODO this should be the task of popt_freecontext but debugging showed popt does not free(3) */ > if (rc == OPTION_OK) > rc = rv; Two things: 1. In your code "cp" can be NULL as far as I see it ("ocp->type == OPT_FLAG") and then you're performing a free(NULL) which some platforms hate greatly. So an "if (cp != NULL) free(cp)" would be better. 2. OSSP popt is derived from original POPT, but already with some cleanups and bugfixes. So feel free to fix the problem directly in OSSP popt if you think you do not break any other POPT things. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Thu Feb 13 12:15:27 2003 Received: from dt4.dev.de.cw.net (dt4.dev.de.cw.net [141.1.23.69]) by mail.ossp.org (Postfix) with ESMTP id 2A1BD766A6 for ; Thu, 13 Feb 2003 12:15:27 +0100 (CET) Received: from dt4.dev.de.cw.net (localhost.dev.de.cw.net [127.0.0.1]) by dt4.dev.de.cw.net (8.12.6/8.12.2) with ESMTP id h1DBFPxF081215 for ; Thu, 13 Feb 2003 12:15:25 +0100 (CET) (envelope-from ms@dt4.dev.de.cw.net) Received: (from ms@localhost) by dt4.dev.de.cw.net (8.12.6/8.12.5/Submit) id h1DBFPVb081214 for ossp-dev@ossp.org; Thu, 13 Feb 2003 12:15:25 +0100 (CET) Date: Thu, 13 Feb 2003 12:15:25 +0100 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-web/new/ news.txt ossp-web/pkg/tool/ index.wml ossp-w... Message-ID: <20030213111524.GD6173@dt4.dev.de.cw.net> References: <20030213101237.951BE7660E@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="jL2BoiuKMElzg3CS" In-Reply-To: <20030213101237.951BE7660E@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --jL2BoiuKMElzg3CS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 13, 2003, Ralf S. Engelschall wrote: > Log: > release OSSP lmtp2nntp 1.2.0 >=20 Congratulations and thanks, Glueckwuensch und danke dir. --=20 michael.schloh@cw.com Development Team, Application Services Cable & Wireless Deutschland GmbH --jL2BoiuKMElzg3CS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia+4K iQEVAgUBPkt+TFuYv80UoVTdAQGQlwgAmv+J1+O7UAMxo2ogNfiOICMmgiWfmHC0 ys+P8ZRH6Snrgv0s8+O/ezuKQuDOFt83d++F13Epu6SfczOCn0ZR32qclIy/YrHw bfNbRDu8vrXTURndtMc1zIEHjVBKa14+BCtLjROktGhz7m15j2n+4GKw2q0Vt/37 1TeeB5F6r2om4ipWa8Ywch8KM5JaEDKZleYu6gXWMxCpmNdpr1qzaKxfmgVOxx/x lQXHFPp+Ut4SkS93yZsKHtWBXIZVC4Uu45KHt1xPGZiNM7uS5mrzJ53VJ3yF95PW +wXMHdxgUkkiMP6jAPkzX8JiHz7II+h17WhKtHl/6Q34ndAX9kFlYQ== =Toz0 -----END PGP SIGNATURE----- --jL2BoiuKMElzg3CS-- From ossp-dev-owner@ossp.org Fri May 9 12:59:25 2003 Received: from dt4.dev.de.cw.net (dt4.dev.de.cw.net [141.1.23.69]) by mail.ossp.org (Postfix) with ESMTP id BE9E176CE1 for ; Fri, 9 May 2003 12:59:24 +0200 (CEST) Received: from dt4.dev.de.cw.net (localhost.dev.de.cw.net [127.0.0.1]) by dt4.dev.de.cw.net (8.12.9/8.12.2) with ESMTP id h49AxLGP016679 for ; Fri, 9 May 2003 12:59:21 +0200 (CEST) (envelope-from ms@dt4.dev.de.cw.net) Received: (from ms@localhost) by dt4.dev.de.cw.net (8.12.9/8.12.5/Submit) id h49AxLi6016648 for ossp-dev@ossp.org; Fri, 9 May 2003 12:59:21 +0200 (CEST) Date: Fri, 9 May 2003 12:59:21 +0200 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/shtool/ ChangeLog README VERSION sh.mkln Message-ID: <20030509105921.GG22879@dt4.dev.de.cw.net> References: <20030509095014.CBA4476CE7@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="0z5c7mBtSy1wdr4F" In-Reply-To: <20030509095014.CBA4476CE7@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --0z5c7mBtSy1wdr4F Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 09, 2003, Ralf S. Engelschall wrote: > Modified files: > ossp-pkg/shtool ChangeLog README VERSION sh.mkln >=20 > Log: > Fix calculation of effective source path in "shtool mkln" command > for destination paths containing "/./" sequence and for source paths > consisting of no directory parts at all. > =20 > Discovered by: Michael Schloh v. Bennewitz >=20 Wow, that was fast. I didn't even have time to report the bug, or look at y= our code. Thanks for the (fast) help. --=20 michael.schloh@cw.com Development Team, Application Services Cable & Wireless Deutschland GmbH --0z5c7mBtSy1wdr4F Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia+4K iQEVAgUBPruKCVuYv80UoVTdAQGvugf+K5r0BgI3LITjzZ2g0I+Oek7crp5uU+Dq 6wzLYS9USm44kGg6T3mHwOloakkDtQE4PdSyMzBLVx1JDgNoXK+Z1WJPpendCqbY 77hC6YU02sUuHi6OU8Nc0uXWKP4ufq+4h1GdPixvyM/w/elGvQm83UFt+AyZlJ5O 7t8N6NXhfOYOXInb9hHVDpJBCBJOu58VgBrUhT/6vb5a457XJBoxGswh4GVaCb/H WJ8K2jz7840L87ik6chDHSU0FMQBTDtU1ZpQ8wVJSTbhEyiMMDonvnm8pmQBqxuo yWAgLKluqcB7j3hmTcpqsWGTJMnRCasqeGo1H7yZrAqr9BZQQOe1dw== =sP2R -----END PGP SIGNATURE----- --0z5c7mBtSy1wdr4F-- From ossp-dev-owner@ossp.org Thu May 29 12:10:25 2003 Received: by mail.ossp.org (Postfix, from userid 6001) id DC4FE76D0A; Thu, 29 May 2003 12:10:24 +0200 (CEST) Received: from visp.engelschall.com (master.ossp.org [195.27.176.149]) by mail.ossp.org (Postfix) with ESMTP id 5602E7638A for ; Thu, 29 May 2003 12:10:24 +0200 (CEST) Received: by visp.engelschall.com (Postfix, from userid 1005) id 9E5744CE591; Thu, 29 May 2003 12:10:23 +0200 (CEST) Received: by en1.engelschall.com (Postfix, from userid 10000) id EA5AA286CE; Thu, 29 May 2003 11:45:32 +0200 (CEST) Date: Thu, 29 May 2003 11:45:32 +0200 From: "Ralf S. Engelschall" To: ossp-cvs@ossp.org Subject: Re: [CVS] OSSP: X: ossp-pkg/xmldb/x/ team.html team.xmldb xmldb.cgi xmldb.... Message-ID: <20030529094532.GA34407@engelschall.com> References: <20030529093640.AFFDC76D0A@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20030529093640.AFFDC76D0A@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Thu, May 29, 2003, Ralf S. Engelschall wrote: > ossp-pkg/xmldb/x team.html team.xmldb xmldb.cgi xmldb.css > > Log: > [Release Tag: Y] Ops, this import was broken. Fixed on the filesystem. Just ignore. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Fri Oct 10 16:31:29 2003 Received: from dt4.dev.de.cw.net (dt4.dev.de.cw.net [141.1.23.69]) by mail.ossp.org (Postfix) with ESMTP id 8C581771E0 for ; Fri, 10 Oct 2003 16:31:28 +0200 (CEST) Received: from dt4.dev.de.cw.net (localhost.dev.de.cw.net [127.0.0.1]) by dt4.dev.de.cw.net (8.12.9/8.12.2) with ESMTP id h9AEVQwO084811; Fri, 10 Oct 2003 16:31:26 +0200 (CEST) (envelope-from ms@dt4.dev.de.cw.net) Received: (from ms@localhost) by dt4.dev.de.cw.net (8.12.9/8.12.5/Submit) id h9AEVQS5084810; Fri, 10 Oct 2003 16:31:26 +0200 (CEST) Date: Fri, 10 Oct 2003 16:31:26 +0200 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Cc: cschug@de.cw.com Subject: Re: [CVS] OSSP: ossp-pkg/fsl/ ChangeLog fsl.c Message-ID: <20031010143126.GA34386@dt4.dev.de.cw.net> References: <20031010140750.5CFBA771F7@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="tKW2IUtsqtDRztdT" In-Reply-To: <20031010140750.5CFBA771F7@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 10, 2003, Michael Schloh wrote: > Modified files: > ossp-pkg/fsl ChangeLog fsl.c > > Log: > Sort valid fsl filenames before adding their contents to the buffer. = This > mostly fixes the problem of the 'drifting' fsl configuration, by ensu= ring > that l2 sections from filenames with a postfix are placed last in the > identifier matching logic. >=20 >[...] > > + qsort((void *)filearr, (size_t)filecnt, sizeof(char *), fnamecmp); > + while (fileidx < filecnt) { /* loop once for every string in sorte= d array */ > + if (appendfiletobuffer(buffer, filearr[fileidx]) =3D=3D FSL_OK) > + rc =3D FSL_OK; > + free(filearr[fileidx]); > + filearr[fileidx] =3D NULL; > + fileidx++; > } > CU(rc); > This is a half solution, because the real problem is that FSL currently doesn't review its l2 sections for duplicate entries. Some additional possible improvements include: 1. Add logic to detect duplicate l2 sections (just compare the 'ident' tokens), and FSL will complain this to the debug log and possibly the channel corresponding to the l2 section that FSL choses to use. 2. Change the config process logic to use all the duplicate l2 sections equally, writing to their conflicting channels sequentially. 3. Write a new fsl-checkconf(8) that reads through its valid (according to cnfdir/FSL_PREFIX.*) config files, parses them but does nothing else. It returns detailed errors for problems such as duplicate l2 sections. I don't particularly like number three, because it depends on an admin being very cautious and already having experience with fsl and l2. This is almost never the case. What ya think? --=20 michael.schloh@cw.com Development Team, Operations Northern Europe Cable & Wireless Telecommunications Services GmbH --tKW2IUtsqtDRztdT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia+4K iQEVAgUBP4bCvVuYv80UoVTdAQHJfAgApTXZbJt0Xqp13PYp2TkJhNHOapLT+45e hlof1aQ70ymsxNJ10804229LSWGfKecLvAPanEdvXFUZHrDvmq2y64PRAYNRPWdn d5WyAlUHGOEdgVXgQbmasPHwVTtzss5jwuAAbxyjmwxxPv3lqDmunTUD0WTAD9c7 p4esiYK0CBHAbGZHDoFqeAzRRlNkZm9xVJtVeIkJG4Guoo69tg3E9BCDWlwYHe4O sKEAtRJ45/DGiVVhNK8/V45ck0BME+feQfxpdlMpYcY6h9Q2ewqU/ERxYzoHZQpB oaipkA0/6llmuClxpvzmuivpVhEm+P9NrWIH7WmuLcyNOCvEPQMR2w== =vkpp -----END PGP SIGNATURE----- --tKW2IUtsqtDRztdT-- From ossp-dev-owner@ossp.org Mon Oct 13 15:45:20 2003 Received: from sv1.dev.de.cw.net (sv1-2.dev.de.cw.net [141.1.23.20]) by mail.ossp.org (Postfix) with ESMTP id 375237721A for ; Mon, 13 Oct 2003 15:44:41 +0200 (CEST) Received: by sv1.dev.de.cw.net (Postfix, from userid 10009) id A97268DCF6; Mon, 13 Oct 2003 15:44:39 +0200 (CEST) Date: Mon, 13 Oct 2003 15:44:39 +0200 From: Thomas Lotterer To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/fsl/ ChangeLog fsl.c Message-ID: <20031013134439.GD85229@dev.de.cw.com> References: <20031010140750.5CFBA771F7@mail.ossp.org> <20031010143126.GA34386@dt4.dev.de.cw.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20031010143126.GA34386@dt4.dev.de.cw.net> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Fri, Oct 10, 2003, Michael Schloh von Bennewitz wrote: > [...] the real problem is that FSL currently > doesn't review its l2 sections for duplicate entries. Some additional > possible improvements include: > > 1. Add logic to detect duplicate l2 sections (just compare the 'ident' > tokens), and FSL will complain this to the debug log and possibly the > channel corresponding to the l2 section that FSL choses to use. > > 2. Change the config process logic to use all the duplicate l2 sections > equally, writing to their conflicting channels sequentially. > Option 2 describes how fsl was designed. If it behaves differently it's a bug. > 3. Write a new fsl-checkconf(8) that reads through its valid (according to > cnfdir/FSL_PREFIX.*) config files, parses them but does nothing else. > It returns detailed errors for problems such as duplicate l2 sections. > We should have a fsllogger(1) and a linter or config checker in the future. -- Thomas.Lotterer@cw.com, Cable & Wireless From ossp-dev-owner@ossp.org Mon Dec 1 18:19:12 2003 Received: from sv1.dev.de.cw.net (sv1-2.dev.de.cw.net [141.1.23.20]) by mail.ossp.org (Postfix) with ESMTP id BA2307736F for ; Mon, 1 Dec 2003 18:19:12 +0100 (CET) Received: from localhost (dt4.dev.de.cw.net [141.1.23.69]) by sv1.dev.de.cw.net (Postfix) with SMTP id 40B138D753 for ; Mon, 1 Dec 2003 18:19:12 +0100 (CET) Received: by localhost (sSMTP sendmail emulation); Mon, 1 Dec 2003 18:19:12 +0100 Date: Mon, 1 Dec 2003 18:19:12 +0100 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/as/as-doc/ accounts.txt Message-ID: <20031201171911.GC1709@dt4.dev.de.cw.net> References: <20031201171334.A893477384@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="Pk6IbRAofICFmK5e" In-Reply-To: <20031201171334.A893477384@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --Pk6IbRAofICFmK5e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 01, 2003, Michael Schloh wrote: > Modified files: > ossp-pkg/as/as-doc accounts.txt > > Log: > merge in new items discussed at Peter K's meeting > Ich habe dies noch nicht auf as.is.eu.cw.net geladet, weil es halt mehr Aufarbeit noch braucht. --=20 michael.schloh@cw.com Development Team, Operations Northern Europe Cable & Wireless Telecommunications Services GmbH --Pk6IbRAofICFmK5e Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia+4K iQEVAgUBP8t4D1uYv80UoVTdAQGoxQf/WgOxZaAACvHWfJEFJS2+o3jhqNdHeiJd N8w/wyb5VWynT61uc4K+R1LekUzyZZnhbAqgHsuAwj0TKPuQ4RRm5XZz/FO73N6P 7WSApyJFLy8khnQTnvkNID2kg6fDY05Qfx6Nfa3zEt6Bo9HyezGwdajfmPR7fsoa NsG2rQP6B9Pf86rW/Ibquc6AAxy3gD3265FPTues+Kp3JiNzUFoHjz79Id1CgfAl hDD3kDpiBzkuqQ2aY6leMLpuMlw8jc4JWLNsC+leinzjuFMS3rbaF5BsbbhPdvqk fpt2uW+11b7hwg7wqzCsVNVhpzSAHxQjvrxMBLpCX+1pcvvNQqQx7Q== =VhnD -----END PGP SIGNATURE----- --Pk6IbRAofICFmK5e-- From ossp-dev-owner@ossp.org Mon Dec 1 19:00:09 2003 Received: from visp.engelschall.com (visp.engelschall.com [195.27.176.148]) by mail.ossp.org (Postfix) with ESMTP id F14487736F for ; Mon, 1 Dec 2003 19:00:08 +0100 (CET) Received: by visp.engelschall.com (Postfix, from userid 1005) id A6BE34CE5A5; Mon, 1 Dec 2003 19:00:08 +0100 (CET) Received: by en1.engelschall.com (Postfix, from userid 10000) id 92651286B9; Mon, 1 Dec 2003 18:54:07 +0100 (CET) Date: Mon, 1 Dec 2003 18:54:07 +0100 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Cc: michael.schloh@de.cw.com Subject: Re: [CVS] OSSP: ossp-pkg/as/as-doc/ accounts.txt Message-ID: <20031201175407.GA33166@engelschall.com> References: <20031201171334.A893477384@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20031201171334.A893477384@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Mon, Dec 01, 2003, Michael Schloh wrote: > +# Customer Phonefile > +R /de/is/cus/phonefile # [E] Phonefile, General > +R /de/is/cus/phonefile/meeting # [E] Phonefile, Meeting > +R /de/is/cus/phonefile/offerings # [E] Phonefile, Offerings > +R /de/is/cus/phonefile/consulting # [E] Phonefile, Consulting > +R /de/is/cus/phonefile/evaluation # [E] Phonefile, Evaluation > +R /de/is/cus/phonefile/implementation # [E] Phonefile, Implementation > +R /de/is/cus/phonefile/troubleshooting # [E] Phonefile, Troubleshooting s/phonefile/phonofile/ Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Thu Jan 15 18:29:12 2004 Received: from sv1.dev.de.cw.net (sv1-2.dev.de.cw.net [141.1.23.20]) by mail.ossp.org (Postfix) with ESMTP id 0590177311 for ; Thu, 15 Jan 2004 18:29:12 +0100 (CET) Received: from localhost (dt4.dev.de.cw.net [141.1.23.69]) by sv1.dev.de.cw.net (Postfix) with SMTP id 3A0E58D728 for ; Thu, 15 Jan 2004 18:29:11 +0100 (CET) Received: by localhost (sSMTP sendmail emulation); Thu, 15 Jan 2004 18:29:11 +0100 Date: Thu, 15 Jan 2004 18:29:11 +0100 From: Michael Schloh von Bennewitz To: ossp-dev@ossp.org Subject: Re: [CVS] OSSP: ossp-pkg/uuid/ uuid.c Message-ID: <20040115172911.GB62517@dt4.dev.de.cw.net> References: <20040115172457.544087738F@mail.ossp.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="JYK4vJDZwFMowpUq" In-Reply-To: <20040115172457.544087738F@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: --JYK4vJDZwFMowpUq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 15, 2004, Michael Schloh wrote: > Modified files: > ossp-pkg/uuid uuid.c >=20 > Log: > Fix grammar and improve usage. >=20 > Summary: > Revision Changes Path > 1.29 +13 -13 ossp-pkg/uuid/uuid.c > Ich habe keine Formattierung durchgefuehrt. Bitte diese Aenderungen entweder ablehnen oder akzeptieren und die betrofenen Absaetze neu formattieren. --=20 michael.schloh@cw.com Development Team, Operations Northern Europe Cable & Wireless Telecommunications Services GmbH --JYK4vJDZwFMowpUq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia+4K iQEVAgUBQAbN5luYv80UoVTdAQH3zQf/dSSv6+oXV4WasJhyHmfreB3573OdKPek PaCmyvoDklG4ydAbB7sYMr70t9TF/105VxXbTwFBWGblXiWcVXmoe0Pz3UEFkgft u9fZi6riSBerIJj6ns1srMDSrfmbs3F3WVY63AXEd2cJ/XUOkH4JSnEMTiMivuYO AyP4si/fd47oef3Qti9SSgQ7hCcPiM3hKz4rFyI1dqa7ktNJWx/xuo325R79DylQ s7ef0oXZNuOGB1htG3YiXshtJNLUOkcac3BQkxB98NlRERcKqFAi5MYSUY3xzFiy lkhDOBGMgX4OUCoFinoipRtd5AgpL1zw4JIBuREq2KPh5eXvtQp1ew== =R1TO -----END PGP SIGNATURE----- --JYK4vJDZwFMowpUq-- From ossp-dev-owner@ossp.org Tue Mar 9 16:56:20 2004 Received: from visp.engelschall.com (visp.engelschall.com [195.27.176.148]) by mail.ossp.org (Postfix) with ESMTP id BE9DA763FF for ; Tue, 9 Mar 2004 16:56:19 +0100 (CET) Received: by visp.engelschall.com (Postfix, from userid 1005) id 9B68C4CE6A2; Tue, 9 Mar 2004 16:56:19 +0100 (CET) Received: by en1.engelschall.com (Postfix, from userid 10000) id 4B85A2866C; Tue, 9 Mar 2004 16:54:23 +0100 (CET) Date: Tue, 9 Mar 2004 16:54:23 +0100 From: "Ralf S. Engelschall" To: ossp-dev@ossp.org Cc: thl@dev.de.cw.net Subject: Re: [CVS] OSSP: ossp-pkg/petidomo/ Makefile.in README Message-ID: <20040309155423.GA86283@engelschall.com> References: <20040309131933.AB937776F0@mail.ossp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20040309131933.AB937776F0@mail.ossp.org> Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: On Tue, Mar 09, 2004, Thomas Lotterer wrote: > -LIBS = librfc822/librfc822.a libmpools/libmpools.a \ > +LIBS = @LIBS@ librfc822/librfc822.a libmpools/libmpools.a \ > liblists/liblists.a libargv/libargv.a \ > libconfigfile/libconfigfile.a libtext/libtext.a I think @LIBS@ should be at the _end_ of the LIBS definition, not at the beginning. Because usually the stuff in the sublibs want to use the stuff in @LIBS@ theirself. Ralf S. Engelschall rse@engelschall.com www.engelschall.com From ossp-dev-owner@ossp.org Thu Oct 18 14:25:08 2007 Received: by mail.ossp.org (Postfix, from userid 24100) id B4E54753044; Thu, 18 Oct 2007 14:25:08 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id A49A8753018; Thu, 18 Oct 2007 14:25:08 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20071018122508.A49A8753018@mail.ossp.org> Date: Thu, 18 Oct 2007 14:25:08 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 32B09AFA95BBBE8C 5E23F02D6F646DED This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Feb 12 13:19:30 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id AD2B07530FC; Tue, 12 Feb 2008 13:19:30 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 8188A7530DB; Tue, 12 Feb 2008 13:19:30 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080212121930.8188A7530DB@mail.ossp.org> Date: Tue, 12 Feb 2008 13:19:30 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string E960C3997BEECF0F 547466C661C98715 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue May 20 05:09:18 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id 3DBD27530F3; Tue, 20 May 2008 05:09:18 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 2D54A7530BA; Tue, 20 May 2008 05:09:18 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080520030918.2D54A7530BA@mail.ossp.org> Date: Tue, 20 May 2008 05:09:18 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 42F465F42A6A3652 442B473F25D2E7A1 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Jun 16 12:44:11 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id C171C753011; Mon, 16 Jun 2008 12:44:10 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080616104410.C171C753011@mail.ossp.org> Date: Mon, 16 Jun 2008 12:44:10 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 0F141F0C40E965C9 D85B911911BAB601 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jul 16 03:28:48 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id AEF56752905; Wed, 16 Jul 2008 03:28:48 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 8E70C7528F2; Wed, 16 Jul 2008 03:28:48 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080716012848.8E70C7528F2@mail.ossp.org> Date: Wed, 16 Jul 2008 03:28:48 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string ADB0DD09C1BF2BCE 663832038310953F This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jul 17 07:21:38 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id 6CDB3752980; Thu, 17 Jul 2008 07:21:38 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080717052138.6CDB3752980@mail.ossp.org> Date: Thu, 17 Jul 2008 07:21:38 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 485A296DC37A0324 12F990388C77F95D This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jul 17 07:21:38 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id 9CC627529EC; Thu, 17 Jul 2008 07:21:38 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 802287529DA; Thu, 17 Jul 2008 07:21:38 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080717052138.802287529DA@mail.ossp.org> Date: Thu, 17 Jul 2008 07:21:38 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 200B954F955FC7D8 11AD57247A706EF8 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Aug 1 00:28:37 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id 9883A752917; Fri, 1 Aug 2008 00:28:37 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 7D003752913; Fri, 1 Aug 2008 00:28:37 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080731222837.7D003752913@mail.ossp.org> Date: Fri, 1 Aug 2008 00:28:37 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 0BE8C2B386E3D937 D19E904A555D0EA9 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Aug 6 20:32:05 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id C145A7529DB; Wed, 6 Aug 2008 20:32:05 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id B5E157529C3; Wed, 6 Aug 2008 20:32:05 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080806183205.B5E157529C3@mail.ossp.org> Date: Wed, 6 Aug 2008 20:32:05 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 46CE960BB51D9807 DD96777D04992CBA This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Sep 5 16:21:36 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id 27E6B7528ED; Fri, 5 Sep 2008 16:21:36 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 1DAE77528E9; Fri, 5 Sep 2008 16:21:36 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080905142136.1DAE77528E9@mail.ossp.org> Date: Fri, 5 Sep 2008 16:21:36 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 52EB58DC22902E76 27481B1A2FEE4C5F This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Sep 9 19:46:01 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id CFA4A75291B; Tue, 9 Sep 2008 19:46:00 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 9541B752916; Tue, 9 Sep 2008 19:46:00 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20080909174600.9541B752916@mail.ossp.org> Date: Tue, 9 Sep 2008 19:46:00 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string C043AB7B94B580A9 69E70DF2F4B0C3E8 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Oct 30 10:26:49 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id 3DD4975289B; Thu, 30 Oct 2008 10:26:49 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20081030092649.3DD4975289B@mail.ossp.org> Date: Thu, 30 Oct 2008 10:26:49 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 7259563281260FF4 93E0F9E19985129A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Nov 18 10:18:58 2008 Received: by mail.ossp.org (Postfix, from userid 24100) id A5C5675285B; Tue, 18 Nov 2008 10:18:58 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20081118091858.A5C5675285B@mail.ossp.org> Date: Tue, 18 Nov 2008 10:18:58 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string CA440F8AE0BC3A2E 2AC5F5F2DA8A9F1F This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Jan 26 22:04:56 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id EE065752920; Mon, 26 Jan 2009 22:04:55 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id E6B3675291C; Mon, 26 Jan 2009 22:04:55 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090126210455.E6B3675291C@mail.ossp.org> Date: Mon, 26 Jan 2009 22:04:55 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 48DB524936698B4B 7584412C1D86AEB0 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Jan 26 22:05:22 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 843DD7528ED; Mon, 26 Jan 2009 22:05:22 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090126210522.843DD7528ED@mail.ossp.org> Date: Mon, 26 Jan 2009 22:05:22 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string B2DB4E85DFC4C888 A6CF8D12E19E886B This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Feb 14 12:49:12 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 5134375295A; Sat, 14 Feb 2009 12:49:12 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 47270752934; Sat, 14 Feb 2009 12:49:12 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090214114912.47270752934@mail.ossp.org> Date: Sat, 14 Feb 2009 12:49:12 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 37347EED1D2F5889 3E35E7B2B8323239 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Feb 14 12:49:16 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 723F27529EA; Sat, 14 Feb 2009 12:49:16 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090214114916.723F27529EA@mail.ossp.org> Date: Sat, 14 Feb 2009 12:49:16 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 94E94EB33EA9EF10 DF0296D2BB188789 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Feb 17 02:13:30 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 8103E752904; Tue, 17 Feb 2009 02:13:30 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 5C9167528E8; Tue, 17 Feb 2009 02:13:30 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090217011330.5C9167528E8@mail.ossp.org> Date: Tue, 17 Feb 2009 02:13:30 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 237E047EA3A8ABB1 2878F861358DED48 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Feb 26 11:18:11 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id BDFEC75293E; Thu, 26 Feb 2009 11:18:11 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id AED4E75292E; Thu, 26 Feb 2009 11:18:11 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090226101811.AED4E75292E@mail.ossp.org> Date: Thu, 26 Feb 2009 11:18:11 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string C88B2C45939B5D2F 029892594A0B41FD This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Feb 26 11:18:12 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 779017529DB; Thu, 26 Feb 2009 11:18:12 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090226101812.779017529DB@mail.ossp.org> Date: Thu, 26 Feb 2009 11:18:12 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string F8720388B0D2264E 2F6D05CF44D826E3 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Feb 26 14:54:06 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 4EEF8753011; Thu, 26 Feb 2009 14:54:06 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 3DDC275300E; Thu, 26 Feb 2009 14:54:06 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090226135406.3DDC275300E@mail.ossp.org> Date: Thu, 26 Feb 2009 14:54:06 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string BDCB38174D138454 1183F03B1A1AFF0C This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Feb 26 14:54:08 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 53C8675309B; Thu, 26 Feb 2009 14:54:08 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090226135408.53C8675309B@mail.ossp.org> Date: Thu, 26 Feb 2009 14:54:08 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 7CD998FA1733093A 38D173C2F4A3E1D2 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Mar 1 23:44:03 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 3F3677528EA; Sun, 1 Mar 2009 23:44:03 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 3488F7528E1; Sun, 1 Mar 2009 23:44:03 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090301224403.3488F7528E1@mail.ossp.org> Date: Sun, 1 Mar 2009 23:44:03 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string D1DDA4E86907040A 2B9E35EC151032AB This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Mar 1 23:44:08 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id EFA53752926; Sun, 1 Mar 2009 23:44:07 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090301224407.EFA53752926@mail.ossp.org> Date: Sun, 1 Mar 2009 23:44:07 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string B4B218E87D6DF578 0E92F1BF7A03EE09 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Mar 5 23:21:00 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 3A556752904; Thu, 5 Mar 2009 23:21:00 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 16AE57528EC; Thu, 5 Mar 2009 23:21:00 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090305222100.16AE57528EC@mail.ossp.org> Date: Thu, 5 Mar 2009 23:21:00 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string A39D299D1C332CC9 3462D1989800F96C This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jun 6 22:10:18 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id E3D3875304E; Sat, 6 Jun 2009 22:10:17 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090606201017.E3D3875304E@mail.ossp.org> Date: Sat, 6 Jun 2009 22:10:17 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 8C8DD1DDC989E737 CE44AD3AF056A35F This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jun 6 22:10:50 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 8EA8B7529DB; Sat, 6 Jun 2009 22:10:50 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 7D9F475292E; Sat, 6 Jun 2009 22:10:50 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090606201050.7D9F475292E@mail.ossp.org> Date: Sat, 6 Jun 2009 22:10:50 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 8944BCCF50A94D7B 77C7CCA2CF78B00B This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jun 25 07:36:45 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 36AAA752920; Thu, 25 Jun 2009 07:36:45 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090625053645.36AAA752920@mail.ossp.org> Date: Thu, 25 Jun 2009 07:36:45 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 69CED791C99B07D0 A140BBAA1FC73C37 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Jul 5 07:41:40 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 768357529C6; Sun, 5 Jul 2009 07:41:40 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 6D975752980; Sun, 5 Jul 2009 07:41:40 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090705054140.6D975752980@mail.ossp.org> Date: Sun, 5 Jul 2009 07:41:40 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 88A8D264FB4EB794 ED063CDBE4866CFB This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Jul 5 07:41:41 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 72DA675291F; Sun, 5 Jul 2009 07:41:41 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090705054141.72DA675291F@mail.ossp.org> Date: Sun, 5 Jul 2009 07:41:41 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 25FAFF8C91938CE3 54A0C666386C1211 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jul 30 18:07:03 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 9AC2C7529C6; Thu, 30 Jul 2009 18:07:03 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 92140752980; Thu, 30 Jul 2009 18:07:03 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090730160703.92140752980@mail.ossp.org> Date: Thu, 30 Jul 2009 18:07:03 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string D851DFC6FA74FBDA 60498321969A846B This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jul 30 18:07:10 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 204DB7529F9; Thu, 30 Jul 2009 18:07:10 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090730160710.204DB7529F9@mail.ossp.org> Date: Thu, 30 Jul 2009 18:07:10 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 3C29D2D3356E6883 2EC832A4E0DBD330 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Aug 2 16:44:18 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id B7F3A75293E; Sun, 2 Aug 2009 16:44:18 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id B0D0E75292E; Sun, 2 Aug 2009 16:44:18 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090802144418.B0D0E75292E@mail.ossp.org> Date: Sun, 2 Aug 2009 16:44:18 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 40B154788B7E08E3 C111E8A482DC10EB This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Aug 13 09:41:32 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 170907529EC; Thu, 13 Aug 2009 09:41:32 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 0BC007529DB; Thu, 13 Aug 2009 09:41:32 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090813074132.0BC007529DB@mail.ossp.org> Date: Thu, 13 Aug 2009 09:41:32 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 5E981277CE725D82 6D0769C50BB426F6 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Aug 13 09:41:32 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 0EC617529DC; Thu, 13 Aug 2009 09:41:32 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20090813074132.0EC617529DC@mail.ossp.org> Date: Thu, 13 Aug 2009 09:41:32 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 5D641DBCA4F80A98 65A13FC9B3920FEA This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Oct 13 15:08:04 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id CCA60752934; Tue, 13 Oct 2009 15:08:04 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id B985D752929; Tue, 13 Oct 2009 15:08:04 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20091013130804.B985D752929@mail.ossp.org> Date: Tue, 13 Oct 2009 15:08:04 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string CF1B54507005F1B8 BE9769C85FABC04C This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Oct 13 15:08:06 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id C1EAE75282B; Tue, 13 Oct 2009 15:08:06 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20091013130806.C1EAE75282B@mail.ossp.org> Date: Tue, 13 Oct 2009 15:08:06 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 9C6387B95917DAC3 38E7516F3847F0C9 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Dec 19 09:50:50 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 90E56752A10; Sat, 19 Dec 2009 09:50:50 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 87ADA752A09; Sat, 19 Dec 2009 09:50:50 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20091219085050.87ADA752A09@mail.ossp.org> Date: Sat, 19 Dec 2009 09:50:50 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 9AEBE5BE7C821773 09EE4B0CA8CEE451 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Dec 21 14:49:16 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 2D5BD75300D; Mon, 21 Dec 2009 14:49:16 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 258AA752FE3; Mon, 21 Dec 2009 14:49:16 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20091221134916.258AA752FE3@mail.ossp.org> Date: Mon, 21 Dec 2009 14:49:16 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 1A2E6D13FD63D8D0 A962747A2676CC10 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Dec 29 01:17:47 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id A234F752FC1; Tue, 29 Dec 2009 01:17:47 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 918DC752FBE; Tue, 29 Dec 2009 01:17:47 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20091229001747.918DC752FBE@mail.ossp.org> Date: Tue, 29 Dec 2009 01:17:47 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string A35082F709ADB7B5 C5DD56BCE6CCDF59 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Dec 29 22:15:09 2009 Received: by mail.ossp.org (Postfix, from userid 24100) id 8F02B752A10; Tue, 29 Dec 2009 22:15:09 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 78C44752A09; Tue, 29 Dec 2009 22:15:09 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20091229211509.78C44752A09@mail.ossp.org> Date: Tue, 29 Dec 2009 22:15:09 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 916E7539A5BA62AD 151B2792FB793E34 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Jan 3 14:12:56 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 823B4752FBA; Sun, 3 Jan 2010 14:12:56 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 706E3752FB6; Sun, 3 Jan 2010 14:12:56 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100103131256.706E3752FB6@mail.ossp.org> Date: Sun, 3 Jan 2010 14:12:56 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 09CFCA1A8381DBD7 1869AA0F584B490B This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Jan 3 14:13:01 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id BDBB9752A09; Sun, 3 Jan 2010 14:13:01 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100103131301.BDBB9752A09@mail.ossp.org> Date: Sun, 3 Jan 2010 14:13:01 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 90944480229398C5 2703AB901BB0966F This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jan 6 12:58:21 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id A826C752FC0; Wed, 6 Jan 2010 12:58:21 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 8AA2E752F8F; Wed, 6 Jan 2010 12:58:21 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100106115821.8AA2E752F8F@mail.ossp.org> Date: Wed, 6 Jan 2010 12:58:21 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 07D33DDFDDFBD10E B200DB4F4572B9C1 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jan 13 09:48:56 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id EFBB5752FA4; Wed, 13 Jan 2010 09:48:55 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id E263F752F82; Wed, 13 Jan 2010 09:48:55 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100113084855.E263F752F82@mail.ossp.org> Date: Wed, 13 Jan 2010 09:48:55 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 588ADDDEDFA35167 D4678EB15D8B5B1A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jan 13 09:48:57 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 06699752FC1; Wed, 13 Jan 2010 09:48:57 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100113084857.06699752FC1@mail.ossp.org> Date: Wed, 13 Jan 2010 09:48:57 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string C8C0CD7FADFD39A2 89BA9386DBB3F5CF This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jan 20 07:15:17 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id B12CE75300D; Wed, 20 Jan 2010 07:15:17 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 9F8ED752FE3; Wed, 20 Jan 2010 07:15:17 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100120061517.9F8ED752FE3@mail.ossp.org> Date: Wed, 20 Jan 2010 07:15:17 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string EBA2CFC4AC8EDEC2 B750BF76F0518731 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jan 21 16:33:58 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 72685752F8F; Thu, 21 Jan 2010 16:33:58 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 656FB752F7E; Thu, 21 Jan 2010 16:33:58 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100121153358.656FB752F7E@mail.ossp.org> Date: Thu, 21 Jan 2010 16:33:58 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 0750AD3404AAD305 9C7C463108FDB020 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Jan 25 02:22:26 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id A07C8752FE2; Mon, 25 Jan 2010 02:22:26 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 8B69D752FD6; Mon, 25 Jan 2010 02:22:26 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100125012226.8B69D752FD6@mail.ossp.org> Date: Mon, 25 Jan 2010 02:22:26 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 1DB1702C308BD90A A5206BD46074D813 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Jan 25 11:46:36 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 8534A752FBB; Mon, 25 Jan 2010 11:46:36 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100125104636.8534A752FBB@mail.ossp.org> Date: Mon, 25 Jan 2010 11:46:36 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string E0B8D2C6B63C1216 BC503C5C9365652A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Jan 25 11:47:07 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id DFFFD753132; Mon, 25 Jan 2010 11:47:07 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id D690375312E; Mon, 25 Jan 2010 11:47:07 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100125104707.D690375312E@mail.ossp.org> Date: Mon, 25 Jan 2010 11:47:07 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 19302CE6CA22CC84 BCDC90DC043182AD This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jan 27 16:20:27 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 90B4E75300D; Wed, 27 Jan 2010 16:20:27 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 3DA66752FBA; Wed, 27 Jan 2010 16:20:27 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100127152027.3DA66752FBA@mail.ossp.org> Date: Wed, 27 Jan 2010 16:20:27 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 49A1F20448ED4636 A9D565C9DB087CF6 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Feb 3 20:43:04 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id DF1D1752FBE; Wed, 3 Feb 2010 20:43:04 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id CAF6D752FBB; Wed, 3 Feb 2010 20:43:04 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100203194304.CAF6D752FBB@mail.ossp.org> Date: Wed, 3 Feb 2010 20:43:04 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 32C54D78FF091330 C2BE4F110614B1CD This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Feb 5 22:41:53 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 3D18F752FC3; Fri, 5 Feb 2010 22:41:53 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 2880C752FC0; Fri, 5 Feb 2010 22:41:53 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100205214153.2880C752FC0@mail.ossp.org> Date: Fri, 5 Feb 2010 22:41:53 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 7C830DFD4BF23D78 CF4FDA176C2F8858 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Feb 8 10:42:39 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 5954C752FC0; Mon, 8 Feb 2010 10:42:39 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 43921752FBD; Mon, 8 Feb 2010 10:42:39 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100208094239.43921752FBD@mail.ossp.org> Date: Mon, 8 Feb 2010 10:42:39 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 9FE00D5EC0F5D0C4 807B3421B7D7002A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Feb 9 11:30:53 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 11D29752FBE; Tue, 9 Feb 2010 11:30:53 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 0A461752FBB; Tue, 9 Feb 2010 11:30:53 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100209103053.0A461752FBB@mail.ossp.org> Date: Tue, 9 Feb 2010 11:30:53 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 4C1CCE0FDB5D8942 0D73A39BE31D4E9A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Feb 20 22:23:09 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 0C2AD752F7E; Sat, 20 Feb 2010 22:23:09 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id D5B20752A10; Sat, 20 Feb 2010 22:23:08 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100220212308.D5B20752A10@mail.ossp.org> Date: Sat, 20 Feb 2010 22:23:08 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 41E08FDDEEEAEECF DF72EDD1FE0E2368 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Feb 28 21:43:08 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 038E0752FBB; Sun, 28 Feb 2010 21:43:08 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id F0594752FB8; Sun, 28 Feb 2010 21:43:07 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100228204307.F0594752FB8@mail.ossp.org> Date: Sun, 28 Feb 2010 21:43:07 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string BA399C69A8312D3D B45F52F1D792DD2A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Mar 6 23:53:09 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id A328F752FBD; Sat, 6 Mar 2010 23:53:09 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 82370752FB6; Sat, 6 Mar 2010 23:53:09 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100306225309.82370752FB6@mail.ossp.org> Date: Sat, 6 Mar 2010 23:53:09 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string CB70D72F65BAA2EF E375A005E0246D73 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Mar 9 05:13:26 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 926F3752FBB; Tue, 9 Mar 2010 05:13:26 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 834CD752FB8; Tue, 9 Mar 2010 05:13:26 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100309041326.834CD752FB8@mail.ossp.org> Date: Tue, 9 Mar 2010 05:13:26 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 0A946251AA005B0A 94AB20411E46E395 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Mar 14 14:21:54 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id CE814752A13; Sun, 14 Mar 2010 14:21:54 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id B81EF752A0D; Sun, 14 Mar 2010 14:21:54 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100314132154.B81EF752A0D@mail.ossp.org> Date: Sun, 14 Mar 2010 14:21:54 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string CF1F45C6F16BE3BA 838342EC89770C24 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Mar 14 14:21:58 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id EDAFF752FB8; Sun, 14 Mar 2010 14:21:57 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100314132157.EDAFF752FB8@mail.ossp.org> Date: Sun, 14 Mar 2010 14:21:57 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 7DF79772AC3DA197 8FECBC586F01DFC6 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Mar 18 11:11:33 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id DBAEC752FBB; Thu, 18 Mar 2010 11:11:32 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id CB9B7752FB8; Thu, 18 Mar 2010 11:11:32 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100318101132.CB9B7752FB8@mail.ossp.org> Date: Thu, 18 Mar 2010 11:11:32 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string A8D1F047396292BE B0A867B17C5010B6 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Mar 21 21:39:11 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 08B47752FC0; Sun, 21 Mar 2010 21:39:11 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id E9D4D752FBD; Sun, 21 Mar 2010 21:39:10 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100321203910.E9D4D752FBD@mail.ossp.org> Date: Sun, 21 Mar 2010 21:39:10 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 266E2C81E83239E5 FDC81D3A006EEDC6 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Mar 21 21:45:13 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id E3229752FD6; Sun, 21 Mar 2010 21:45:13 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id C7D58752FC0; Sun, 21 Mar 2010 21:45:13 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100321204513.C7D58752FC0@mail.ossp.org> Date: Sun, 21 Mar 2010 21:45:13 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 53F283544DA5E3C2 E06CC5036DDC92A8 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Mar 24 11:55:34 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 8C10C752FC3; Wed, 24 Mar 2010 11:55:34 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 7666A752FC0; Wed, 24 Mar 2010 11:55:34 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100324105534.7666A752FC0@mail.ossp.org> Date: Wed, 24 Mar 2010 11:55:34 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 37559BD6BBE001F8 E1CFBBA174EAC376 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Mar 29 12:08:29 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 243FD752FBD; Mon, 29 Mar 2010 12:08:29 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 16043752A10; Mon, 29 Mar 2010 12:08:29 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100329100829.16043752A10@mail.ossp.org> Date: Mon, 29 Mar 2010 12:08:29 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 3C57900DF8BA8A6C 2D5751CA191BF338 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Mar 31 16:36:28 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id C9207752FBB; Wed, 31 Mar 2010 16:36:28 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id BEE92752FB8; Wed, 31 Mar 2010 16:36:28 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100331143628.BEE92752FB8@mail.ossp.org> Date: Wed, 31 Mar 2010 16:36:28 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 1F20C067615E4E69 02B347859C933174 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Apr 7 06:47:31 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 3A51575300D; Wed, 7 Apr 2010 06:47:31 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 2C43B752FE3; Wed, 7 Apr 2010 06:47:31 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100407044731.2C43B752FE3@mail.ossp.org> Date: Wed, 7 Apr 2010 06:47:31 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string FF194DE7AA9B91B3 4372645594196938 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Apr 19 14:40:48 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id D219D7529F9; Mon, 19 Apr 2010 14:40:48 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id B4E03752904; Mon, 19 Apr 2010 14:40:48 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100419124048.B4E03752904@mail.ossp.org> Date: Mon, 19 Apr 2010 14:40:48 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string D64BE38AC954C7FA 6E3036BEF5550377 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Apr 23 04:21:40 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 49078752FBE; Fri, 23 Apr 2010 04:21:40 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 30F31752FBB; Fri, 23 Apr 2010 04:21:40 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100423022140.30F31752FBB@mail.ossp.org> Date: Fri, 23 Apr 2010 04:21:40 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string F2DF9CC2B9794CDE D6538BF44B320CAB This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Apr 23 04:21:42 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 3FD5B753009; Fri, 23 Apr 2010 04:21:42 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100423022142.3FD5B753009@mail.ossp.org> Date: Fri, 23 Apr 2010 04:21:42 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string EB1FA33611BCAC3F 7638D00671E152D0 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jun 2 21:10:10 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 713EB752F72; Wed, 2 Jun 2010 21:10:10 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 624BE752F29; Wed, 2 Jun 2010 21:10:10 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100602191010.624BE752F29@mail.ossp.org> Date: Wed, 2 Jun 2010 21:10:10 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 68C2B649788AB9AA 755DA7AFB7376862 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jun 2 21:10:22 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 85E01752913; Wed, 2 Jun 2010 21:10:22 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100602191022.85E01752913@mail.ossp.org> Date: Wed, 2 Jun 2010 21:10:22 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 9885700B3EAADBFA 755FA197C18BC36D This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jun 3 14:34:07 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 37F3E7528E1; Thu, 3 Jun 2010 14:34:07 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 2C6057528AB; Thu, 3 Jun 2010 14:34:07 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100603123407.2C6057528AB@mail.ossp.org> Date: Thu, 3 Jun 2010 14:34:07 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string B02C008E183C1D91 4F926EC0BB7A6B9D This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jul 3 13:42:06 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id B9969752FE1; Sat, 3 Jul 2010 13:42:06 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id AB7A9752FC3; Sat, 3 Jul 2010 13:42:06 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100703114206.AB7A9752FC3@mail.ossp.org> Date: Sat, 3 Jul 2010 13:42:06 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string EECA1EA110DCD946 015E04A2AF10CAAA This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jul 3 13:42:07 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 24B8575300E; Sat, 3 Jul 2010 13:42:07 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100703114207.24B8575300E@mail.ossp.org> Date: Sat, 3 Jul 2010 13:42:07 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 43107A5FCE283FCB F5E5EC5CD034488A This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Jul 9 14:20:05 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 6AF6A752A0D; Fri, 9 Jul 2010 14:20:05 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 28D687529EF; Fri, 9 Jul 2010 14:20:05 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100709122005.28D687529EF@mail.ossp.org> Date: Fri, 9 Jul 2010 14:20:05 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 725819A821F3C3BF FF79CD1F4451A204 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jul 31 17:05:47 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 79BBF752A0D; Sat, 31 Jul 2010 17:05:47 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100731150547.79BBF752A0D@mail.ossp.org> Date: Sat, 31 Jul 2010 17:05:47 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 31E7B53D6F826CF9 4435730412C23413 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Aug 16 12:59:54 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id D6759752F29; Mon, 16 Aug 2010 12:59:54 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id BC5B4752A10; Mon, 16 Aug 2010 12:59:54 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100816105954.BC5B4752A10@mail.ossp.org> Date: Mon, 16 Aug 2010 12:59:54 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 4AE118430368FCA3 CAB169311B15E432 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Fri Aug 20 02:55:41 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id C78EA752F54; Fri, 20 Aug 2010 02:55:41 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id BC1C2752904; Fri, 20 Aug 2010 02:55:41 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100820005541.BC1C2752904@mail.ossp.org> Date: Fri, 20 Aug 2010 02:55:41 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 6A01F00A19F0251E D9AC22A27DA51992 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Aug 22 17:52:31 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 4CC627529EF; Sun, 22 Aug 2010 17:52:31 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 424BF75290F; Sun, 22 Aug 2010 17:52:31 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100822155231.424BF75290F@mail.ossp.org> Date: Sun, 22 Aug 2010 17:52:31 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 01DFB853C6FE04CF DE0992AF9DFB3C61 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Aug 24 13:10:39 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id C51647529FD; Tue, 24 Aug 2010 13:10:39 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id B81E97529EF; Tue, 24 Aug 2010 13:10:39 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100824111039.B81E97529EF@mail.ossp.org> Date: Tue, 24 Aug 2010 13:10:39 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string E31F881857902B2A 69F36BC7548D9938 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Sep 22 16:33:46 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 42139752FA4; Wed, 22 Sep 2010 16:33:46 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 3881C752F82; Wed, 22 Sep 2010 16:33:46 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100922143346.3881C752F82@mail.ossp.org> Date: Wed, 22 Sep 2010 16:33:46 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 3F838AFE69ADE0CD 63DA77D878F4A5BD This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Sep 22 16:33:59 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id C2968752A08; Wed, 22 Sep 2010 16:33:59 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id B8BD87528AB; Wed, 22 Sep 2010 16:33:59 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20100922143359.B8BD87528AB@mail.ossp.org> Date: Wed, 22 Sep 2010 16:33:59 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 6CE1650011A130A3 9D92FD80EE179823 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Dec 11 12:36:33 2010 Received: by mail.ossp.org (Postfix, from userid 24100) id 82E22753036; Sat, 11 Dec 2010 12:36:33 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20101211113633.82E22753036@mail.ossp.org> Date: Sat, 11 Dec 2010 12:36:33 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 2281AED0EB8A3324 1E4E4AE84193D7C7 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jul 9 08:00:58 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id B9A241C2EC; Sat, 9 Jul 2011 08:00:58 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20110709060058.B9A241C2EC@mail.ossp.org> Date: Sat, 9 Jul 2011 08:00:58 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string E9F54BB7FC03D8D5 A3D8617AF918E48E This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sat Jul 9 08:01:00 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id 7FBF91C2FA; Sat, 9 Jul 2011 08:01:00 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 780851C2F8; Sat, 9 Jul 2011 08:01:00 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20110709060100.780851C2F8@mail.ossp.org> Date: Sat, 9 Jul 2011 08:01:00 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 331534C0CFC4E15E DABE4025CE665F26 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jul 28 11:29:25 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id 7B26E1C7CE; Thu, 28 Jul 2011 11:29:25 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 72DFF1C7CC; Thu, 28 Jul 2011 11:29:25 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20110728092925.72DFF1C7CC@mail.ossp.org> Date: Thu, 28 Jul 2011 11:29:25 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string D0D0A23EB15303E9 934A2B78803C0E04 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Jul 28 11:29:27 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id 2B9131C7DB; Thu, 28 Jul 2011 11:29:27 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20110728092927.2B9131C7DB@mail.ossp.org> Date: Thu, 28 Jul 2011 11:29:27 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string CAFBAC30D5B9ED9F 543C3814FA9C173C This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Sep 19 05:17:27 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id D6447C947; Mon, 19 Sep 2011 05:17:27 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20110919031727.D6447C947@mail.ossp.org> Date: Mon, 19 Sep 2011 05:17:27 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 91CA124544BAD5B1 9808FF0C2925F2AB This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Mon Sep 19 05:17:30 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id E3D6AC954; Mon, 19 Sep 2011 05:17:30 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id DBF0BC952; Mon, 19 Sep 2011 05:17:30 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20110919031730.DBF0BC952@mail.ossp.org> Date: Mon, 19 Sep 2011 05:17:30 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 22C540F79FE3093B FFA6F8048322F239 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Thu Oct 13 02:36:36 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id A6C6B9809; Thu, 13 Oct 2011 02:36:36 +0200 (CEST) Received: by mail.ossp.org (Postfix, from userid 24100) id 9EED99807; Thu, 13 Oct 2011 02:36:36 +0200 (CEST) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20111013003636.9EED99807@mail.ossp.org> Date: Thu, 13 Oct 2011 02:36:36 +0200 (CEST) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 8C40DA9DF44FC5FE 645EA19365686EFA This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Dec 13 19:02:55 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id 90084CF72; Tue, 13 Dec 2011 19:02:55 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20111213180255.90084CF72@mail.ossp.org> Date: Tue, 13 Dec 2011 19:02:55 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 8BD5E95A3618FD2C 8F2CFA005D777747 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Tue Dec 13 19:02:55 2011 Received: by mail.ossp.org (Postfix, from userid 24100) id A7E2ECF7C; Tue, 13 Dec 2011 19:02:55 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id 9A87ECF75; Tue, 13 Dec 2011 19:02:55 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20111213180255.9A87ECF75@mail.ossp.org> Date: Tue, 13 Dec 2011 19:02:55 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string F692CE3D7C88CAE3 907328E78A4D1EF1 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Wed Jan 18 05:32:22 2012 Received: by mail.ossp.org (Postfix, from userid 24100) id A39A4157E9; Wed, 18 Jan 2012 05:32:22 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20120118043222.A39A4157E9@mail.ossp.org> Date: Wed, 18 Jan 2012 05:32:22 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 76FBDF2760799112 7EE6E78AB9EDEDB8 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Jan 29 15:41:41 2012 Received: by mail.ossp.org (Postfix, from userid 24100) id 0DDB4C29B; Sun, 29 Jan 2012 15:41:41 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-dev@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20120129144141.0DDB4C29B@mail.ossp.org> Date: Sun, 29 Jan 2012 15:41:41 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 843D88E0C1F3F81F 36D63F802A57C7C3 This validates your will to send and your will to read. You won't have to repeat that action in the future. From ossp-dev-owner@ossp.org Sun Jan 29 15:41:42 2012 Received: by mail.ossp.org (Postfix, from userid 24100) id DD6BBC2B2; Sun, 29 Jan 2012 15:41:42 +0100 (CET) Received: by mail.ossp.org (Postfix, from userid 24100) id D2B42C2B0; Sun, 29 Jan 2012 15:41:42 +0100 (CET) From: petidomo-approve@ossp.org (Petidomo Mailing List Server) To: ossp-cvs@ossp.org Subject: Petidomo: APPROVE ossp-dev@ossp.org: Your posting to list "ossp-dev" Message-Id: <20120129144142.D2B42C2B0@mail.ossp.org> Date: Sun, 29 Jan 2012 15:41:42 +0100 (CET) Reply-To: ossp-dev@ossp.org Sender: ossp-dev-owner@ossp.org Precedence: list List-Server: OSSP Petidomo/4.0 List-Owner: List-Archive: List-Post: List-Help: List-Subscribe: List-Unsubscribe: Your posting needs to be approved. Reply to this mail and concatenate the two following strings to one large string 055D98F43B288B71 841551D8962AD794 This validates your will to send and your will to read. You won't have to repeat that action in the future.