Correo combines Mozilla email functionality with tight OS X integration


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Correo combines Mozilla email functionality with tight OS X integration
# 1  
Old 01-28-2008
Correo combines Mozilla email functionality with tight OS X integration

Mon, 28 Jan 2008 21:00:00 GMT
Just as Camino offers Mozilla Web browsing capability tightly integrated with OS X system services, its new sibling, Correo, aims to bridge the same gap for email. The open source email reader is based on Mozilla technology, but unlike Thunderbird it ties in to core Mac OS libraries in order to better the end user experience.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Combines all lines in two files

The below awk combines the target.txt with the out_parse.txt and the output is GJ-53.txt (all attached). If there are multiple lines in out_parse how can they both be writing to GJ-53.txt? For example, in out_parse.txt there are two lines: 13 20763612 20763612 C T... (2 Replies)
Discussion started by: cmccabe
2 Replies

2. Shell Programming and Scripting

Adding the email functionality

I have make an menu in which first option is to start and second is to stop the services echo "Please enter the appropriate choice for doing the operations" echo " 1) STOP Services 2) START Services case $choice in 1) ... (4 Replies)
Discussion started by: punpun66
4 Replies

3. Post Here to Contact Site Administrators and Moderators

Linux forums a bit tight ?

Hi, I had done a long post here about the PCLinuxOS distribution but when I clicked on "submit" I got a message saying the post was too short : coming back has shown that my message disappeared : would you check how this forum is setup ? Thanks Mélodie (5 Replies)
Discussion started by: melodie
5 Replies

4. UNIX for Dummies Questions & Answers

tight vnc problem

Hi every one please help to find a way for remote connect to a graphical sco unix Xsession whit tight vnc i had installed tightvnc on sco unix 5.0.6 and i connect to new session with tight vnc client but i want to connect to started X session and control it xstartup file ... (0 Replies)
Discussion started by: kaydream
0 Replies

5. AIX

aix email integration with exchange

Hi All, I realized now that the root email is integrated with exchange. All the email of root is now being sent also to the aliases of aixadmin or to my email. I would like to know how is AIX integrated to exchange. What would be modified on AIX? Probably modify these files: /etc/hosts,... (0 Replies)
Discussion started by: itik
0 Replies

6. UNIX for Dummies Questions & Answers

Shell Script that identifies changes between 2 files and then combines them

Hi, I've been trying to figure out a script that would enable me to find the changes made from an original file say x then to a duplicate called y then revert those changes. Simple, but I'm already cracking my head over this one, Can someone help me out? say file x:- abc1 def2 ghi3... (7 Replies)
Discussion started by: rahzzbietel
7 Replies
Login or Register to Ask a Question
Log::Dispatch::Email(3) 				User Contributed Perl Documentation				   Log::Dispatch::Email(3)

NAME
Log::Dispatch::Email - Base class for objects that send log messages via email SYNOPSIS
package Log::Dispatch::Email::MySender use Log::Dispatch::Email; use base qw( Log::Dispatch::Email ); sub send_email { my $self = shift; my %p = @_; # Send email somehow. Message is in $p{message} } DESCRIPTION
This module should be used as a base class to implement Log::Dispatch::* objects that send their log messages via email. Implementing a subclass simply requires the code shown in the SYNOPSIS with a real implementation of the "send_email()" method. CONSTRUCTOR
The constructor takes the following parameters in addition to the standard parameters documented in Log::Dispatch::Output: o subject ($) The subject of the email messages which are sent. Defaults to "$0: log email" o to ($ or @) Either a string or a list reference of strings containing email addresses. Required. o from ($) A string containing an email address. This is optional and may not work with all mail sending methods. o buffered (0 or 1) This determines whether the object sends one email per message it is given or whether it stores them up and sends them all at once. The default is to buffer messages. METHODS
o send_email(%p) This is the method that must be subclassed. For now the only parameter in the hash is 'message'. o flush If the object is buffered, then this method will call the "send_email()" method to send the contents of the buffer and then clear the buffer. o DESTROY On destruction, the object will call "flush()" to send any pending email. AUTHOR
Dave Rolsky, <autarch@urth.org> perl v5.12.1 2009-09-22 Log::Dispatch::Email(3)