You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-22 12:06:28
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: Nasir S. <na...@or...> - 2003-07-16 03:10:27
|
> > 1. Improving PHP4 compatibility > > Have you committed some other compatibility modifications than I did ? Yes. You can checkout the codes > > 3. function filterMsg() works > > there is function already, but it does not works, dont know why. > > What kind of filtering do you mean ? Mail organising, spam protection or > something else ? right now, just filter according to rules/simple rules, just check header TO or CC, and if match, the only action is to move it to folder that have been speficied in the filter rules. The rules of a user is stored in profile of user( INI file format) > > 4. Create new Folder > > * add new IMAP function for adding new folder in imap.lib.php > > * create WML page for it > > This is a really good feature :-) > > BR, Tero > > |
From: Tero R. <te...@ri...> - 2003-07-14 09:00:03
|
Hello Nasir, Sorry for this delay. >> Have you merget your personal changes you told me about to the >> repository >> already ? > Yes. I just commit my modified codes. Roger. > this is TODO for version 1.0 : > > 1. Improving PHP4 compatibility Have you committed some other compatibility modifications than I did ? > 3. function filterMsg() works > there is function already, but it does not works, dont know why. What kind of filtering do you mean ? Mail organising, spam protection or something else ? > 4. Create new Folder > * add new IMAP function for adding new folder in imap.lib.php > * create WML page for it This is a really good feature :-) BR, Tero |
From: Nasir S. <na...@3w...> - 2003-07-10 07:26:54
|
> Have you merget your personal changes you told me about to the repository > already ? Yes. I just commit my modified codes. this is TODO for version 1.0 : 1. Improving PHP4 compatibility 2. Use [User preference] in the Inifile for header FROM in function messageRFC822 ($from). Dont need parameter $from anymore, will get it from Inifile. 3. function filterMsg() works there is function already, but it does not works, dont know why. 4. Create new Folder * add new IMAP function for adding new folder in imap.lib.php * create WML page for it 5. Filter Setting * add a new function for adding filter rules in INIFILE * create WML page for it What else do you think? Nasir |
From: Tero R. <te...@ri...> - 2003-07-10 05:58:50
|
Hello Nasir, > I rebuild cvs repository. We use the latest codes as a base developtmen= t > for version 1.0 . Sounds good ! I will close my repository now. > You can now do CVS stuff in the repository. Have you merget your personal changes you told me about to the repository already ? Tero |
From: Nasir S. <na...@3w...> - 2003-07-10 03:33:20
|
Hi Tero, I rebuild cvs repository. We use the latest codes as a base developtment for version 1.0 . You can now do CVS stuff in the repository. CVSROOT = use...@cv...:/cvsroot/jwapmail moduleName = Jwapmail |
From: Nasir S. <na...@3w...> - 2003-07-09 09:28:40
|
I have did some. This is my wapmail site http://debian.3wsi.net/Jwapmail/ server = goliath.3wsi.net username = wa...@3w... password = w4kaj I got 1. function jIsloggedin doesnot work in mine. It always failed to check that user have already logged in. Have you experience it too? But I have simplified the line codes of the functions. It works now. function jIsloggedin () { global $wmlout; // if (! isset ($_GET['username']) || (isset ($_GET['username']) && // empty ($_GET['username']) && ! isset ($_SESSION))) { if (! is_set_and_not_empty($_GET['username']) && ! is_set_and_not_empty($_SESSION['username'])) { wmlLoginform (1, 'login', 'Log in Wapmail'); jExit (); } } On Wednesday 09 July 2003 15:18, Tero Ripattila wrote:in > Hi Nasir, > > Did you check my version of the source already ? > > //Tero > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps > _______________________________________________ > Jwapmail-developers mailing list > Jwa...@li... > https://lists.sourceforge.net/lists/listinfo/jwapmail-developers ------------------------------------------------------- |
From: Nasir S. <na...@3w...> - 2003-07-09 09:19:10
|
---------- Forwarded Message ---------- Subject: Re: [Jwapmail-developers] Merging sources Date: Wednesday 09 July 2003 15:59 From: Nasir Simbolon <na...@or...> To: te...@ri... I have did some. This is my wapmail site http://debian.3wsi.net/Jwapmail/ server = goliath.3wsi.net username = wa...@3w... password = w4kaj I got 1. function jIsloggedin doesnot work in mine. It always failed to check that user have already logged in. Have you experience it too? But I have simplified the line codes of the functions. It works now. function jIsloggedin () { global $wmlout; // if (! isset ($_GET['username']) || (isset ($_GET['username']) && // empty ($_GET['username']) && ! isset ($_SESSION))) { if (! is_set_and_not_empty($_GET['username']) && ! is_set_and_not_empty($_SESSION['username'])) { wmlLoginform (1, 'login', 'Log in Wapmail'); jExit (); } } On Wednesday 09 July 2003 15:18, Tero Ripattila wrote:in > Hi Nasir, > > Did you check my version of the source already ? > > //Tero > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Parasoft > Error proof Web apps, automate testing & more. > Download & eval WebKing and get a free book. > www.parasoft.com/bulletproofapps > _______________________________________________ > Jwapmail-developers mailing list > Jwa...@li... > https://lists.sourceforge.net/lists/listinfo/jwapmail-developers ------------------------------------------------------- |
From: Tero R. <te...@ri...> - 2003-07-09 08:19:08
|
Hi Nasir, Did you check my version of the source already ? //Tero |