Networking Forums

Networking Forums > Computer Networking > Linux Networking > Any good WebMail client for Linux/FreeBSD?

Reply
Thread Tools Display Modes

Any good WebMail client for Linux/FreeBSD?

 
 
Spammay Blockay
Guest
Posts: n/a

 
      07-15-2004, 08:20 AM
I'm looking for a free WebMail client, written in C, that
understands mbox-format mailboxes, and can read them from the
filesystem (i.e. doesn't depend upon connecting with a POP or
IMAP server).

Does anyone know if such an animal exists? I've seen a bunch
of Perl- and PHP-based projects, but I would like something simple,
written in C, to do this.

Any suggestions?

- Tim

--

 
Reply With Quote
 
 
 
 
mjt
Guest
Posts: n/a

 
      07-15-2004, 10:47 AM
Spammay Blockay wrote:

> I'm looking for a free WebMail client, written in C, that
> understands mbox-format mailboxes, and can read them from the
> filesystem (i.e. doesn't depend upon connecting with a POP or
> IMAP server).


.... a "webmail client"? are you wanting to say "email client"?
if so, try sylpheed or sylpheed-claws - it understands MBOX as
default. it's both an email and nntp client
..
--
<< http://michaeljtobler.homelinux.com/ >>
Bender: He's gay.
Leela: How do you know?
Bender: I have this thing called gaydar.

 
Reply With Quote
 
/dev/scott0
Guest
Posts: n/a

 
      07-15-2004, 03:07 PM
The only way I think a C webmail client would work would be to have a
Perl or PHP web-app call the C program. That however, is more steps than
needs to be done.
This is not a PHP group, however, if you mbox files are on a server with
Apache+PHP you can modify/write a program to run an "exec" like:

<?
echo exec('cat /var/spool/bob/bob.mbox');
?>

http://us2.php.net/function.exec

--Scott

Spammay Blockay wrote:
> I'm looking for a free WebMail client, written in C, that
> understands mbox-format mailboxes, and can read them from the
> filesystem (i.e. doesn't depend upon connecting with a POP or
> IMAP server).
>
> Does anyone know if such an animal exists? I've seen a bunch
> of Perl- and PHP-based projects, but I would like something simple,
> written in C, to do this.
>
> Any suggestions?
>
> - Tim
>

 
Reply With Quote
 
Jeffrey Froman
Guest
Posts: n/a

 
      07-15-2004, 03:20 PM
/dev/scott0 wrote:

> The only way I think a C webmail client would work would be to have a
> Perl or PHP web-app call the C program. That however, is more steps than
> needs*to*be*done.


A C program could do anything PHP can, and in fact I used to create CGI
applications in C for "fun" (and for any other hardcore masochists out
there -- I recommend this exercise.)

Tim, I believe SQWebmail is written in C, but it only talks to a POP/IMAP
server. I don't personally know of any webmail projects that do not, and
I'm not sure why it would matter: imapd is simple enough to run alongside
your webmail app.

Jeffrey


 
Reply With Quote
 
John-Paul Stewart
Guest
Posts: n/a

 
      07-15-2004, 03:39 PM
/dev/scott0 wrote:
> The only way I think a C webmail client would work would be to have a
> Perl or PHP web-app call the C program.


Nah, a "web-app" can be written in any language (even a shell script).
It's not uncommon for high-volume sites to use C for CGI to avoid the
overhead of a Perl or PHP interpreter.
 
Reply With Quote
 
Spammay Blockay
Guest
Posts: n/a

 
      07-15-2004, 05:34 PM
In article <LgtJc.3648$(E-Mail Removed) et>,
mjt <mjtobler@removethis_mail.ru> wrote:
>Spammay Blockay wrote:
>
>> I'm looking for a free WebMail client, written in C, that
>> understands mbox-format mailboxes, and can read them from the
>> filesystem (i.e. doesn't depend upon connecting with a POP or
>> IMAP server).

>
>... a "webmail client"? are you wanting to say "email client"?
>if so, try sylpheed or sylpheed-claws - it understands MBOX as
>default. it's both an email and nntp client


Perhaps I should clarify -- a web-based email client.
That is, the client software resides on my ISP's machine
(I have a shell account), and I connect to it via HTTP/CGI.

- Tim

--

 
Reply With Quote
 
Grant Edwards
Guest
Posts: n/a

 
      07-15-2004, 05:37 PM
On 2004-07-15, /dev/scott0 <(E-Mail Removed)> wrote:

> The only way I think a C webmail client would work would be to have a
> Perl or PHP web-app call the C program. That however, is more steps than
> needs to be done.


Huh?

That's news to those of us that have written cgi programs in C.

--
Grant Edwards grante Yow! Are we on STRIKE yet?
at
visi.com
 
Reply With Quote
 
Spammay Blockay
Guest
Posts: n/a

 
      07-15-2004, 05:37 PM
In article <(E-Mail Removed)>,
Jeffrey Froman <(E-Mail Removed)> wrote:
>/dev/scott0 wrote:
>
>> The only way I think a C webmail client would work would be to have a
>> Perl or PHP web-app call the C program. That however, is more steps than
>> needs*to*be*done.

>
>A C program could do anything PHP can, and in fact I used to create CGI
>applications in C for "fun" (and for any other hardcore masochists out
>there -- I recommend this exercise.)
>
>Tim, I believe SQWebmail is written in C, but it only talks to a POP/IMAP
>server. I don't personally know of any webmail projects that do not, and
>I'm not sure why it would matter: imapd is simple enough to run alongside
>your webmail app.


The problem is, this has to run on my ISP's linux box, and they
don't allow daemons, but only CGI-based apps. And my disk space
is limited, and the Perl-based clients I saw were pretty huge.
I saw a few small C-based ones, but they depended on POP and IMAP
servers. Thus my question. :-)

- Tim

--

 
Reply With Quote
 
Spammay Blockay
Guest
Posts: n/a

 
      07-15-2004, 05:38 PM
In article <(E-Mail Removed)>,
John-Paul Stewart <(E-Mail Removed)> wrote:
>/dev/scott0 wrote:
>> The only way I think a C webmail client would work would be to have a
>> Perl or PHP web-app call the C program.

>
>Nah, a "web-app" can be written in any language (even a shell script).
>It's not uncommon for high-volume sites to use C for CGI to avoid the
>overhead of a Perl or PHP interpreter.


Exactly. My long programming experience has led me to prefer
natively-compiled programs for web apps (altho' I use Java all the
time, too, but my ISP doesn't support Servlets, otherwise I'd write my
own little email gateway).

- Tim

--

 
Reply With Quote
 
Michael Heiming
Guest
Posts: n/a

 
      07-15-2004, 06:12 PM
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
NotDashEscaped: You need GnuPG to verify this message

In comp.os.linux.misc John-Paul Stewart <(E-Mail Removed)> suggested:
> /dev/scott0 wrote:
>> The only way I think a C webmail client would work would be to have a
>> Perl or PHP web-app call the C program.


> Nah, a "web-app" can be written in any language (even a shell script).
> It's not uncommon for high-volume sites to use C for CGI to avoid the
> overhead of a Perl or PHP interpreter.


IMHO it depends on the people programming the stuff and/or the
customers (if any) demands, presuming a halfway decent setup . If
you look at slashdot.org, a high traffic site can be run at
amazing speed with perl (apache + mod_perl) and AFAIR some Mysql
back-end.

--
Michael Heiming (GPG-Key ID: 0xEDD27B94)
mail: echo (E-Mail Removed) | perl -pe 'y/a-z/n-za-m/'
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQFA9skPAkPEju3Se5QRAk4AAKDYX+B9PhTmU88AQLCGgq yM/SN2tACgztxi
7tnbtBZLb1oGQJN7kWRGOdk=
=epvp
-----END PGP SIGNATURE-----
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange NFS problems with recent Linux kernels and FreeBSD Joerg Morbitzer Linux Networking 0 09-13-2006 01:07 PM
Good FTP client for Linux Henrik Amundsen Linux Networking 9 03-06-2004 04:39 PM
Netstat -r in Linux Vs FreeBSD Buck Turgidson Linux Networking 2 12-26-2003 07:51 AM
freeBSD NIS-sever - LINUX(RH-9) NIS-client LOGIN/AUTH probs Thomas Zauner Linux Networking 0 08-01-2003 10:43 AM
Re: Q: SiteCom WIreless LAN Access POint WL-006 with FreeBSD or Linux Jan-Mark Wams Wireless Internet 0 07-20-2003 01:16 PM



1 2 3 4 5 6 7 8 9 10 11