Re: [PHP] webmail or script for giga mail

2008-09-11 Thread Richard Heyes
Hi, i'm looking for a webmail or script project with giga attachment features Giga attachment features? Wossat? -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] WebMail client

2006-10-04 Thread Christopher Weldon
Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? http://hastymail.sourceforge.net/ -- Christopher Weldon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] WebMail client

2006-10-04 Thread Glenn Richmond
http://www.roundcube.net/ I can't say enough good things about the roundcube project. Ajax-based, like a desktop email client in a browser. Still got some minor bugs, but works pretty well. Note that it's still a Beta at this point. Cheers, Glenn. Christopher Weldon wrote: Peter Lauri wrote:

Re: [PHP] WebMail client

2006-10-04 Thread Google Kreme
On 04 Oct 2006, at 19:28 , Glenn Richmond wrote: http://www.roundcube.net/ I can't say enough good things about the roundcube project. Ajax- based, like a desktop email client in a browser. Still got some minor bugs, but works pretty well. Note that it's still a Beta at this point.

Re: [PHP] WebMail client

2006-10-02 Thread Jyrki Laurila
http://www.roundcube.net/ On 10/2/06, Peter Lauri [EMAIL PROTECTED] wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? /Peter -- PHP

Re: [PHP] WebMail client

2006-10-02 Thread clive
Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? roundcube /Peter -- Regards, Clive -- PHP General

Re: [PHP] WebMail client

2006-10-02 Thread Børge Holen
openwebmail. a slimlined and easy goin' without hassle On Monday 02 October 2006 10:30, Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting

Re: [PHP] WebMail client

2006-10-02 Thread Google Kreme
On 02 Oct 2006, at 02:57 , Jyrki Laurila wrote: http://www.roundcube.net/ That's pretty nice. Is there a mailing list for it? -- You know, in a world in which Bush and Blair can be nominated for the Nobel Peace Prize, for having dared to take the necessary decision to launch a war on

Re: [PHP] WebMail client

2006-10-02 Thread Jyrki Laurila
http://lists.roundcube.net/ On 10/2/06, Google Kreme [EMAIL PROTECTED] wrote: On 02 Oct 2006, at 02:57 , Jyrki Laurila wrote: http://www.roundcube.net/ That's pretty nice. Is there a mailing list for it? -- You know, in a world in which Bush and Blair can be nominated for the Nobel Peace

Re: [PHP] WebMail client

2006-10-02 Thread Martin Marques
On Mon, 2 Oct 2006, Peter Lauri wrote: Are there any AJAX supporting client? RoundCube webmail, but it's in development still. -- 21:50:04 up 2 days, 9:07, 0 users, load average: 0.92, 0.37, 0.18 - Lic. Martín Marqués |

Re: [PHP] WebMail client

2006-10-02 Thread Jim Jagielski
www.telaen.org On Oct 2, 2006, at 4:30 AM, Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? Horde IMP and SquirrelMail is two that I found. Are there any AJAX supporting client? /Peter -- PHP General

Re: [PHP] WebMail client

2006-10-02 Thread Richard Lynch
On Mon, October 2, 2006 9:14 am, Jim Jagielski wrote: http://php.net/imap :-) PS Hey, does anybody know why none of these guys are smart enough to show me the To: line in that listing of email in my Inbox?... Cuz I could save myself a heck of a lot of time if I just knew for sure for sure

Re: [PHP] Webmail and mime

2005-02-22 Thread Christophe Chisogne
Emil a écrit : I'm creating a webmail interface for a pop3-server Why not use one of the many webmail apps? Ex written in PHP/Perl, with no particular order: Neomail http://neocodesolutions.com/software/neomail/ Openwebmail http://openwebmail.org/ IMP (horde) http://horde.org/imp/ IlohaMail

RE: [PHP] WebMail server question

2002-04-07 Thread Chris Kay
Not sure which one you are referring to but I been told SquirrelMail is really good http://sourceforge.net/projects/squirrelmail/ --- Chris Kay, Eleet Internet Services [EMAIL PROTECTED] --- -Original Message- From: Patrick Ni [mailto:[EMAIL PROTECTED]] Sent: Sunday, 7 April

RE: [PHP] WebMail server question

2002-04-07 Thread Michael Geier
You are probably thinking about IMP (http://www.horde.org) This message is actually being sent from an IMP 3.0 installation and our company is very pleased with the product. -- Michael Geier CDM Sports, Inc. - Systems Administrator email: [EMAIL PROTECTED] Quoting Chris Kay [EMAIL

Re: [PHP] WebMail server question

2002-04-07 Thread Patrick Ni
Thank you Michael. It is IMP and horde that I was after. I only remembered that M or N is part of the name. Also Thanks to Chris. Patrick Michael Geier [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... You are probably thinking about IMP (http://www.horde.org)

Re: [PHP] Webmail

2002-03-05 Thread Josh Trutwin
Hi can anyone quickly run through how to use php to send the contents of a form via e-mail using sendmail? How do you begin? thanks I use this (omitting error checking): $message = Name: $name\nAddress: $address\n; mail([EMAIL PROTECTED], Message Subject, $message, From: $email); This

RE: [PHP] Webmail with Attach

2002-01-08 Thread Jason Murray
I need that that my webmail can send mail with many attach. How can I do it? You could either ask the user how many attachments they want, and present that number of INPUT TYPE=FILE fields, or you can grab the file attachment from the user, store it in a uniquely-named temporary directory,

RE: [PHP] Webmail with Attach

2002-01-08 Thread Martin Towell
you just need to loop this part of the code: $msg_body .= \n\n--Message-Boundary\n; $msg_body .= Content-type: $attach_type; name=\$attach_name\\n; $msg_body .= Content-Transfer-Encoding: BASE64\n; $msg_body .= Content-disposition: attachment; filename=\$attach_name\\n\n; $msg_body .=

Re: [PHP] WebMail Client

2001-10-02 Thread Michael A. Peters
Basilix. I'm using it right now- configured to use Apple's imap server (iTools) Anyway, Basilix is incredibly good, allows for https if user wishes, easy to configure. Requires imap functionallity in your php, and only works with imap servers. The imap server it connects to need not be on the

Re: RE: [PHP] webmail

2001-07-10 Thread Adrian D'Costa
Hi, On Mon, 9 Jul 2001 [EMAIL PROTECTED] wrote: In addition, here's a POP3 class from the PHP Classes Repository... Where :) I did not get anything. Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] webmail

2001-07-10 Thread Adrian D'Costa
On Mon, 9 Jul 2001, Max Pyziur wrote: Thanks, but my specs are PHP4 and POP3 Adrian The one which I use which matches your requirements (non-PHP, perl-module driven) is NS WebMail, one which I use and gives basic webmail capablities, though missing some desired functionality (sort on

Re: [PHP] webmail

2001-07-09 Thread Max Pyziur
On Mon, 9 Jul 2001, Adrian D'Costa wrote: Hi, I am trying to write a web-based email client for my site (or are there any samples) using php4 and POP3. I have a book on professional PHP but that sample uses IMAP which is not installed on my system. Could anyone tell me where I can get

Re: [PHP] webmail

2001-07-09 Thread kath
- Original Message - From: Max Pyziur [EMAIL PROTECTED] To: Adrian D'Costa [EMAIL PROTECTED] Cc: php general list [EMAIL PROTECTED] Sent: Monday, July 09, 2001 7:07 AM Subject: Re: [PHP] webmail On Mon, 9 Jul 2001, Adrian D'Costa wrote: Hi, I am trying to write a web-based email client

RE: [PHP] webmail

2001-07-09 Thread Mark Roedel
-Original Message- From: Adrian D'Costa [mailto:[EMAIL PROTECTED]] Sent: Monday, July 09, 2001 12:34 AM To: php general list Subject: [PHP] webmail I am trying to write a web-based email client for my site (or are there any samples) using php4 and POP3. There are a few

Re: RE: [PHP] webmail

2001-07-09 Thread olsonric
In addition, here's a POP3 class from the PHP Classes Repository... -- 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] WebMail client

2001-06-19 Thread Greg K
Try squirremail at http://www.squirrelmail.org Rosen [EMAIL PROTECTED] wrote in message 9gnf7f$dsk$[EMAIL PROTECTED]">news:9gnf7f$dsk$[EMAIL PROTECTED]... Hi, I want to find some Web Mail script in PHP with possibilities to create mail accounts directly on Linux Mail server. Thanks Rosen

Re: [PHP] WebMail client

2001-06-19 Thread Andreas D. Landmark
At 19.06.2001 14:56, you wrote: Try squirremail at http://www.squirrelmail.org Rosen [EMAIL PROTECTED] wrote in message 9gnf7f$dsk$[EMAIL PROTECTED]">news:9gnf7f$dsk$[EMAIL PROTECTED]... Hi, I want to find some Web Mail script in PHP with possibilities to create mail accounts directly on