[PHP] vertical word match
hello, any regex gurus? i'm trying to match words put into a that are in the form of a\np\np\l\e or any combination of new lines in between, before or after. $answer = "hello\na\np\np\nl\ne\n"; /*from textarea in form*/ $word = "apple"; $word = preg_replace("/(.)/","(.?|\s+|\n+|)$1(.?|\s+|\n+|)",$word); preg_match("/".$word."/im",$answer,$match) works. but if $word = "red apple"; $answer = "r\ne\nd\n\na\np\np\nl\e"; it doesn't match. thanks in advance, joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] preg_replace on digit word boundry in 2 lines how about 1?
i can do this if i do it in two line..i'm wondering if it can be done in 1 line. the two lines: $replace = preg_replace("/(\d)(\D)/","\\1,\\2",$digiword); $replace = preg_replace("/(\D)(\d)/","\\1,\\2",$replace); tia, joe Joe Rice([EMAIL PROTECTED])@Mon, Mar 18, 2002 at 12:39:17PM -0600: > > hi, > i'm trying to replace ever digit nondigit boundary with a "," > in a string. i'm trying to get \d\D to be replaced with \d,\D > and the reverse \D\d with \D,\d ... i'm not having any luck. > > $digiword = "123joe123" > $replace = preg_replace("/(\d)(\D)/","\\1,\\2",$digiword); > > this ends up with $replace being 123,joe456 > > how can i also catch the joe456 to end up with > > 123,joe,456 > > > any help would appreciated. > > thanks, > joe > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > -- How do i get rid of those words in my screen that are coming from you? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] preg_replace on digit word boundry help
hi, i'm trying to replace ever digit nondigit boundary with a "," in a string. i'm trying to get \d\D to be replaced with \d,\D and the reverse \D\d with \D,\d ... i'm not having any luck. $digiword = "123joe123" $replace = preg_replace("/(\d)(\D)/","\\1,\\2",$digiword); this ends up with $replace being 123,joe456 how can i also catch the joe456 to end up with 123,joe,456 any help would appreciated. thanks, joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Q: sessions in a switch block not working
Hello, I'm hoping to get some help with a sessions problem i've ran into. track_vars is enabled and register_globals is off. i'm using PHP 4.0.6 and custom session handlers with ADODB connecting to mysql. at the top: session_start(); if (!isset($HTTP_SESSION_VARS["old_folder"])) { echo "NOT SET\n"; $HTTP_SESSION_VARS["old_folder"] = 1;; } else { echo "IT IS SET: {$HTTP_SESSION_VARS["old_folder"]}\n"; } - in the middle of a switch statement: $nasty_folder = $HTTP_GET_VARS["folder"]; $HTTP_SESSION_VARS["old_folder"] = $HTTP_SESSION_VARS["old_folder"] + 444; if (isset($HTTP_SESSION_VARS["old_folder"])) { echo "ADDED 444: {$HTTP_SESSION_VARS["old_folder"]}\n"; } else { echo "FAILED TO ADD\n"; } --- first time through it prints "NOT SET". second time, without finding my way into the switch it prints "IT IS SET: 1". third time, before going into the case with + 444, it prints "IT IS SET: 1", then i make it into the case and promptly prints "ADDED 444: 445" as the next line. fourth time, i would expect "IT IS SET: 445" without worrying about where i wonder in the switch. can anyone tell me why this isn't working? i do have many lines of code in between but, none deals with HTTP_SESSION_VARS. the only other use i'm making of sessions is setting $uID = $HTTP_SESSION_VARS["uID"] well before the switch statement. $HTTP_SESSION_VARS["uID"] gets set many pages and other PHP scripts before and i just reuse it (as sessions were intended). any help would be greatly appreciated. thanks, joe -- How do i get rid of those words in my screen that are coming from you? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Q: array intersection problem
hi, i have two arrays that i would like to find the intersection and at this intersection alter the value. $invalid = array("1","3","9"); $questions = array("1","2","3","4","5","6","7","8","9"); and i would like the result to be an new array that looks like this: $new_questions = array("1", "2", "3", "4","5","6","7","8", "4"); thank you in advance, joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] session handler class
i would love to see this too, i think it was stripped. thanks, joe www.bigidea.com scott [gts]([EMAIL PROTECTED])@Mon, Jul 02, 2001 at 04:54:26PM -0400: > it's attached to the email. > > did you get the attachment, or was it stripped off somewhere? > > i can upload the files to a server and provide > a link if you didn't get the email attachment. > > > -Original Message- > > From: Aral Balkan [mailto:[EMAIL PROTECTED]] > > Sent: Monday, July 02, 2001 4:26 PM > > To: scott [gts]; php > > Subject: Re: [PHP] session handler class > > > > > > Hi Scott, > > > > I'd love to see the class you made but couldn't find a link in your email. > > Could you let me know where to find it? > > > > Thanks :) > > > > Aral > > __ > > ([EMAIL PROTECTED]) > > New Media Producer, Kismia, Inc. > > ([EMAIL PROTECTED]) > > Adj. Prof., American University > > ¯¯ > > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] Slightly OT - PHP Mileage from Zip Code Calculator
I've also been interested in knowing how this is done. If you are willing to share, please post the source to your page. Thanks, joe bill([EMAIL PROTECTED])@Fri, May 11, 2001 at 09:07:26AM -0400: > Not sure what you're asking exactly, but I have a "Find a Dealer" page where > a person puts in their zip code and selects how far they want to look. > http://earthcomfort.com/find_a_dealer.html > > Is that what you're looking for? > > > > Todd Pillars wrote: > > > I found a site that had a commercial PHP version of a zip code mileage > > calculator, but the site owners have not responded to my request. > > > > Does anyone know of a calculator written in PHP that will allow users to > > enter their zip code and select the amount of miles radius of their home? > > > > Commercial versions are okay, Free would be better ;) > > > > Thank you for your help and patience. > > Todd > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] help: ldap ext not working.
Hi, I'm trying to configure in --with-ldap. i have the iPlanet ldapsdk installed in /usr/local/include /usr/local/lib php configures and compiles with out any complaints. the problem happens when i try to start apache. Syntax error on line 23 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/libexec/libphp4.so into server: ld.so.1: /usr/local/apache/bin/httpd: fatal: relocation error: file /usr/local/apache/libexec/libphp4.so: symbol ldap_unbind_s: referenced symbol not found /usr/local/apache/bin/apachectl start: httpd could not be started I don't know what this means. line 23 of /usr/local/apache/conf/httpd.conf is; LoadModule php4_modulelibexec/libphp4.so any help or direction would be appreciated. Thanks, joe rice web admin www.bigidea.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] Q: php.ini
sorry for the lame question, that was what i needed to do. Thanks, joe Jon Rosenberg([EMAIL PROTECTED])@Wed, Mar 28, 2001 at 11:38:19AM -0500: > You need to restart your web server (apache, most likely). > > Jon > > > - Original Message ----- > From: "Joe Rice" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, March 28, 2001 11:34 AM > Subject: [PHP] Q: php.ini > > > > > > > > Hi, > > I made a change to my php.ini and > > phpinfo() doesn't reflect the change? > > > > i set > > sendmail_path = "/usr/lib/sendmail -OIgnoreDots -t" > > > > and phpinfo() still shows the default > > sendmail_path = "/usr/lib/sendmail -t -i" > > > > > > how can i get this to work correctly? > > > > Thanks, > > joe > > > > Web Admin > > www.bigidea.com > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Q: php.ini
Hi, I made a change to my php.ini and phpinfo() doesn't reflect the change? i set sendmail_path = "/usr/lib/sendmail -OIgnoreDots -t" and phpinfo() still shows the default sendmail_path = "/usr/lib/sendmail -t -i" how can i get this to work correctly? Thanks, joe Web Admin www.bigidea.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] Another problem installing PHP under Solaris 8.0
you need ar. my solaris 8 install has it in /usr/ccs/bin if you have it there, make sure /usr/ccs/bin is in your PATH. if you need to know what package ar is part of let me know. joe Emiliano Marmonti([EMAIL PROTECTED])@Mon, Mar 26, 2001 at 03:12:00PM -0300: > > Dear Friends: > > I have had another problem, after succesfully find flex package > installed > in this machine and make a link to a folder that is included in PATH. > After ./configure, after the message that PHP was configured OK, following > the instructions I write: make. > > This is the error that appears > > Making all in Zend > make[1]: Entering directory '/usr/local/php-4.0.4pl1/Zend' > /bin/sh../libtool --silent --mode=link gcc -g -02 -o libZend_c.la > zend_language_scanner.lo zend_ini_scanner.lo > ../libtool: ar: not found > make[1]: *** [libZend_c.la] Error 1 > leaving directory > make[1]: *** [all- recursive] Error 1 > > I have looked at /php folder and exists a file called libtool. Anybody > knows what is the problem? > > Thank you very much > Emiliano. > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] Environment Variables
i figured it out...thanks. putenv() Joe Rice([EMAIL PROTECTED])@Thu, Mar 22, 2001 at 03:16:35PM -0600: > > > how do you sent a Environment Variables for the php script > to execute in? i need to set INFORMIXSERVER so i can > use the informix php functions. This is going live tomorrow > and we don't have it working yet...PLEASE HELP! > > thanks, > joe rice > Web Admin > www.bigidea.com > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Environment Variables
how do you sent a Environment Variables for the php script to execute in? i need to set INFORMIXSERVER so i can use the informix php functions. This is going live tomorrow and we don't have it working yet...PLEASE HELP! thanks, joe rice Web Admin www.bigidea.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] A problem under Solaris
If you have the "Bonus Software" pack that came with Solaris8, there is a CD call "Companion". That CD has everything you need form the GNU world. Loads of GNU solaris packages. joe Emiliano Marmonti([EMAIL PROTECTED])@Thu, Mar 22, 2001 at 02:43:25PM -0600: > Thank you Sebastian, > but I want to know what is flex (and I don´t know where could I obtain it). > > Thanks again. > Emiliano. > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] Q: Informix + PHP + Apache + Solaris 8
What ended up working for me is; LD_RUN_PATH=$INFORMIXDIR/lib then i recompiled php and when i started apache everything seemed to work. I didn't go the LD_LIBRARY_PATH way because of http://www.visi.com/~barr/ldpath.html titled "Why LD_LIBRARY_PATH is bad" Thanks for all the help, joe web admin www.bigidea.com Chris Fry([EMAIL PROTECTED])@Thu, Mar 22, 2001 at 10:43:33AM +1100: > Joe, > > The answer is you need to set the following in your profile:- > > LD_LIBRARY_PATH=$INFORMIXDIR/lib:$INFORMIXDIR/lib/esql:/usr/lib > > or: > > SHLIB_PATH=$INFORMIXDIR/lib:$INFORMIXDIR/lib/esql:/usr/lib > > I have both set on mine - not sure which one works. > > Chris > > Joe Rice wrote: > > > i ended up downloading the SDK for solaris 7 and it seems to have work...well, > > kind of. It compiled, but i can't start apache. apache is trying to > > find libifsql.so which isn't anywhere on my system. Do you have this > > file? is it part of the ESQL SDK or is part of php? any help would > > be greatly appreciated. > > > > Thanks, > > joe > > > > Chris Fry([EMAIL PROTECTED])@Thu, Mar 22, 2001 at 09:45:14AM +1100: > > > For SCO I had to download the ESQL package separately - I think you have to do >the > > > same (if it's available). > > > > > > Chris > > > > > > Joe Rice wrote: > > > > > > > Hi, > > > > I'm trying to get this combo to work "Informix + PHP + Apache + Solaris 8". > > > > But, i'm having some trouble compiling php4.0.4p1. ./configure fails when > > > > trying to run esql to test for version and lib dir. I have the latest > > > > version of IDS 2000 which supports solaris 8. From the IDS 2000 CD i installed > > > > IConnect (which i'm guessing is the new name for the SDK Client and esql >stuff). > > > > I guess my question is, has anyone done this setup? and if so, how? > > > > > > > > IConnect doesn't install a $INFORMIXDIR/incl directory. i grabbed it from > > > > the IDS install. the ./configure script is looking for $INFORMIXDIR/bin/esql > > > > which isn't installed by IConnect either. > > > > > > > > Thanks, > > > > joe rice > > > > Web Admin > > > > www.bigidea.com > > > > > > > > -- > > > > PHP General Mailing List (http://www.php.net/) > > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > > -- > > > Chris Fry > > > Quillsoft Pty Ltd > > > Specialists in Secure Internet Services and E-Commerce Solutions > > > 10 Gray Street > > > Kogarah > > > NSW 2217 > > > Australia > > > > > > Phone: +61 2 9553 1691 > > > Fax: +61 2 9553 1692 > > > Mobile: 0419 414 323 > > > eMail: [EMAIL PROTECTED] > > > http://www.quillsoft.com.au > > > > > > You can download our Public CA Certificate from:- > > > https://ca.secureanywhere.com/htdocs/cacert.crt > > > > > > ** > > > > > > This information contains confidential information intended only for > > > the use of the authorised recipient. If you are not an authorised > > > recipient of this e-mail, please contact Quillsoft Pty Ltd by return > > > e-mail. > > > In this case, you should not read, print, re-transmit, store or act > > > in reliance on this e-mail or any attachments, and should destroy all > > > copies of them. > > > This e-mail and any attachments may also contain copyright material > > > belonging to Quillsoft Pty Ltd. > > > The views expressed in this e-mail or attachments are the views of > > > the author and not the views of Quillsoft Pty Ltd. > > > You should only deal with the material contained in this e-mail if > > > you are authorised to do so. > > > > > > This notice should not be removed. > > > > > > > > > > > > -- > > > PHP General Mailing List (http://www.php.net/) > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > -- > Chris Fry > Quillsoft Pty Ltd > Specialists in Secure Inte
Re: [PHP] Q: Informix + PHP + Apache + Solaris 8
i ended up downloading the SDK for solaris 7 and it seems to have work...well, kind of. It compiled, but i can't start apache. apache is trying to find libifsql.so which isn't anywhere on my system. Do you have this file? is it part of the ESQL SDK or is part of php? any help would be greatly appreciated. Thanks, joe Chris Fry([EMAIL PROTECTED])@Thu, Mar 22, 2001 at 09:45:14AM +1100: > For SCO I had to download the ESQL package separately - I think you have to do the > same (if it's available). > > Chris > > Joe Rice wrote: > > > Hi, > > I'm trying to get this combo to work "Informix + PHP + Apache + Solaris 8". > > But, i'm having some trouble compiling php4.0.4p1. ./configure fails when > > trying to run esql to test for version and lib dir. I have the latest > > version of IDS 2000 which supports solaris 8. From the IDS 2000 CD i installed > > IConnect (which i'm guessing is the new name for the SDK Client and esql stuff). > > I guess my question is, has anyone done this setup? and if so, how? > > > > IConnect doesn't install a $INFORMIXDIR/incl directory. i grabbed it from > > the IDS install. the ./configure script is looking for $INFORMIXDIR/bin/esql > > which isn't installed by IConnect either. > > > > Thanks, > > joe rice > > Web Admin > > www.bigidea.com > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- > Chris Fry > Quillsoft Pty Ltd > Specialists in Secure Internet Services and E-Commerce Solutions > 10 Gray Street > Kogarah > NSW 2217 > Australia > > Phone: +61 2 9553 1691 > Fax: +61 2 9553 1692 > Mobile: 0419 414 323 > eMail: [EMAIL PROTECTED] > http://www.quillsoft.com.au > > You can download our Public CA Certificate from:- > https://ca.secureanywhere.com/htdocs/cacert.crt > > ** > > This information contains confidential information intended only for > the use of the authorised recipient. If you are not an authorised > recipient of this e-mail, please contact Quillsoft Pty Ltd by return > e-mail. > In this case, you should not read, print, re-transmit, store or act > in reliance on this e-mail or any attachments, and should destroy all > copies of them. > This e-mail and any attachments may also contain copyright material > belonging to Quillsoft Pty Ltd. > The views expressed in this e-mail or attachments are the views of > the author and not the views of Quillsoft Pty Ltd. > You should only deal with the material contained in this e-mail if > you are authorised to do so. > > This notice should not be removed. > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Q: Informix + PHP + Apache + Solaris 8
Hi, I'm trying to get this combo to work "Informix + PHP + Apache + Solaris 8". But, i'm having some trouble compiling php4.0.4p1. ./configure fails when trying to run esql to test for version and lib dir. I have the latest version of IDS 2000 which supports solaris 8. From the IDS 2000 CD i installed IConnect (which i'm guessing is the new name for the SDK Client and esql stuff). I guess my question is, has anyone done this setup? and if so, how? IConnect doesn't install a $INFORMIXDIR/incl directory. i grabbed it from the IDS install. the ./configure script is looking for $INFORMIXDIR/bin/esql which isn't installed by IConnect either. Thanks, joe rice Web Admin www.bigidea.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Q: NSAPI support
Hi, I have a funny situation where i can't use apache due Macromedia's ARIA software and lack of it's support for apache. So, i'm stuck with using iPlanet. My question is how stable,fast,usable is the PHP4 NSAPI support? Thanks, joe rice Web Admin www.bigidea.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] Q: php4,cache,performance,mod_perl,zend cache, APC
Hi, As you might gather from the subject, i'm trying to make a decision. Before that i'm doing research to find out what best fits. My question is; >From what i've read php4 does post-compilation caching, is this right? If so, what is the point of Zend Cache or APC (Alternative PHP Cache)? I know from experience that mod_perl does copy and run from a compiled version of the script into memory. From the description of Zend Cache and APC they sound like the equivalent for php4. I guess what i'm getting at is is php4 as fast as mod_perl or do i need something like zend cache? also, is there anywhere with stated benchmarks that i can see to compare? Thanks, joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]