[PHP] Re: WebMail client

2006-10-02 Thread Man-wai Chang
 Do you have any suggestion on WebMail clients written in PHP that is good
 and easy to install?

do a search in http://freshmeat.net

-- 
  .~.   Might, Courage, Vision, SINCERITY. http://www.linux-sxs.org
 / v \  Simplicity is Beauty! May the Force and Farce be with you!
/( _ )\ (Ubuntu 6.06)  Linux 2.6.18
  ^ ^   18:53:01 up 11 days 21:18 0 users load average: 1.00 1.00 1.00
news://news.3home.net news://news.hkpcug.org news://news.newsgroup.com.hk

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: webmail without imap functions???

2002-09-03 Thread nicos

Hi,

There are many webmails that don't use imap but just POP3. You should check
at them.

--
Merci de nous avoir choisi. - Thanks you for your choice.
Nicos - CHAILLAN Nicolas
[EMAIL PROTECTED]
[EMAIL PROTECTED]
www.GroupAKT.com - Hébergement Group.
www.WorldAKT.com - Hébergement de sites Internet
[EMAIL PROTECTED] a écrit dans le message de news:
[EMAIL PROTECTED]
 Hi NG

 Is it possible to make a webmail without enabled imap functions on the
 running version of .php? As far as I can see on
 http://www.php.net/manual/en/ref.imap.php it is the various imap functions
I
 should use.

 I'd like to make a webinterface to my various POP3 email accounts, but my
 isp does not support the imap functions  :(  So... What do I do?

 thnx
 Ask



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Re: webmail without imap functions???

2002-09-03 Thread ask

Thnx - could you please guide me to an example, all I can find use the 
imap_open() like: 

$mbox = imap_open ({localhost/pop3:110}INBOX, user_id, password);

But my ISP does not support these imap functions.



[EMAIL PROTECTED] said:

 Hi,
 
 There are many webmails that don't use imap but just POP3. You should check
 at them.
 
 --
 Merci de nous avoir choisi. - Thanks you for your choice.
 Nicos - CHAILLAN Nicolas
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 www.GroupAKT.com - Hébergement Group.
 www.WorldAKT.com - Hébergement de sites Internet
 [EMAIL PROTECTED] a écrit dans le message de news:
 [EMAIL PROTECTED]
  Hi NG
 
  Is it possible to make a webmail without enabled imap functions on the
  running version of .php? As far as I can see on
  http://www.php.net/manual/en/ref.imap.php it is the various imap functions
 I
  should use.
 
  I'd like to make a webinterface to my various POP3 email accounts, but my
  isp does not support the imap functions  :(  So... What do I do?
 
  thnx
  Ask
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 



-- 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Webmail

2002-03-05 Thread Mike Eheler

It's really quite simple. Here's a quick script that will dump all
variables sent in a form to an email address:

$email = '[EMAIL PROTECTED]';
$subject = 'Form Posted on ' . date('r');
$from = 'Your Website [EMAIL PROTECTED]';
$message = '';

// PHP up to 4.0.6
foreach ($HTTP_POST_VARS as $key = $value) {
$message .= $key: $value\n;
}

// PHP 4.1.0+
foreach ($_REQUEST as $key = $value) {
$message .= $key: $value\n;
}

mail($email, $subject, $message, From: $from);

More information can be found at
http://www.php.net/manual/en/function.mail.php

Mike

On Tue, 05 Mar 2002 12:48:29 -0800, Webmaster - Myonlinesite.Co.Uk And
.Com wrote:

 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
 
 [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] RE: WebMail Client

2001-10-02 Thread Andrew Chase

You might want to take a look at Netmania. (http://www.netmania.org)
Caveats:  I helped  install Netmania at a former employer back in February
2001, and with the then-current distribution we had all kinds of trouble
setting it up until we realized that it depended on having *all* error
handling turned off (even warnings) - with errors disabled it worked like a
dream, although we had to wonder why they would have released code known to
cause warning messages.

I think a new version has come out since then, and maybe they've addressed
some of those problems.  Once set up it's a very impressive system both in
appearance and functionality - it does use a lot of Javascript, so there
might be issues between Netscape/IE/Konqueror/Mozilla/Mac/Windows/Linux.
YMMV :)  It requires Unix/Linux, Apache 1.3 and MySQL.

-Andy


 -Original Message-
 From: Rosen [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, October 02, 2001 5:17 AM
 To: [EMAIL PROTECTED]
 Subject: WebMail Client


 Hi,
 Can someone recommend me some free php script for WebMail client
 (like Squerriemail) ?

 Thanks,
 Rosen





-- 
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] Re: webmail

2001-07-10 Thread Adrian D'Costa

Hi,

Thanks.  I found it and installed it.  Maybe I need to hack around it to
add more functions such as address book and attachement like squirrelmail.

Adrian

On Mon, 9 Jul 2001, Bleue wrote:

 There is a really good simple pop email client called rymo. Im not sure
 where I found it, but it shouldn't be hard to find. It is a very good
 base to start with and will help you with the functions and stuff. If
 you cant find it, let me know and I will send you a copy.
  
 Shawn
 


-- 
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]