Evolution is the integrated mail, calendar and address book distributed suite from Ximian, Inc. See http://www.ximian.com/apps/evolution.php3 for more information. Note that Evolution is still beta. This means it may delete all of your mail if you give it the chance. If you are using Evolution, you should subscribe to the Evolution mailing list. If you are interested in hacking on it, you should subscribe to the Evolution Hackers mailing list. Send mail to "evolution-request@ximian.com" or "evolution-hackers-request@ximian.com" with the word "subscribe" in the body of the message. If you are planning to work on any part of Evolution, please send mail to the mailing list first, to avoid duplicated effort (and to make sure that you aren't basing your work on interfaces that are expected to change). There are mailing list archives available at http://lists.ximian.com/archives/public/evolution/ and http://lists.ximian.com/archives/public/evolution-hackers/ There is also an #evolution IRC channel on irc.gnome.org. IF IT DOESN'T WORK ------------------ Did you read the "How to build" section below? If the configure script complains that you don't have a library that you know you have installed, it usually means either that you've installed things into multiple prefixes (see the bits on GNOME_PATH below) or (if you're on Linux) that you installed the "foo" package but forgot the "foo-devel" package. HOW TO BUILD EVOLUTION ---------------------- *** READ THIS BEFORE YOU START BUILDING ANYTHING! *** Evolution depends on a large number of unreleased and rapidly-changing libraries. Some of these libraries in turn depend on other unreleased and rapidly-changing libraries. Building Evolution is HARD, and it's going to stay hard until all of the libraries it depends on stabilize, and there's nothing we can do to make it any easier until then. General Principles ------------------ First you have to decide whether you want to install Evolution (and its dependencies) into the same prefix as the rest of your GNOME install, or into a new prefix. Installing everything into the same prefix as the rest of your GNOME install will make it much easier to build and run programs, and easier to switch between using packages and building it yourself, but it may also make it harder to uninstall later. If you want to install into the same prefix as the rest of GNOME, type: gnome-config --prefix gnome-config --sysconfdir and remember the answers, and pass them to "configure" or "autogen.sh" when building the other packages you need. Eg: ./configure --prefix=/usr --sysconfdir=/etc If you build in another prefix instead, you will need to set the GNOME_PATH environment variable (and ACLOCAL_FLAGS as well if building from CVS) to include the prefix you install into. Eg: export GNOME_PATH=/usr/local export ACLOCAL_FLAGS="-I /usr/local/share/aclocal" (Assuming your shell is bash, and you installed into /usr/local.) You need to set GNOME_PATH both during compiling AND when you run evolution. Remember also that if you're installing into an odd prefix such as /evolution, that you also need to make sure to put ${prefix}/bin in your PATH and ${prefix}/lib in your LD_LIBRARY_PATH. Dependencies ------------ All of these libraries are available in GNOME CVS, under the given names. Most (but not all) of them are also available as tarballs on ftp.gnome.org. The (*)ed packages are available in Ximian GNOME (http://www.ximian.com/desktop/) Other packages may be available from the Ximian GNOME evolution preview mirror. If installing from packages, remember that you need both the runtime and -devel packages for each library. - xml-i18n-tools - lates from xml-i18n-tools-stable-1-x branch in GNOME CVS (0.8.2 is too old) - gnome-xml - 1.8.10 or later in the 1.0 series, but not from the 2.0 series (If you get this from GNOME CVS, use the tag "LIB_XML_1_BRANCH".) (*) - gnome-print - 0.25 or later (*) - gdk-pixbuf - 0.9.0 or later (*) - ORBit - 0.5.8 or later (*) (If you get this from GNOME CVS, use the tag "orbit-stable-0-5".) - oaf - 0.6.2 or later (If you get this from GNOME CVS, use the tag "oaf-stable-0-6") *** If you are using oaf from CVS, you should use the flag *** "--disable-more-warnings" when configure, or it may fail to *** build. - gconf - 0.6 or later. - gnome-vfs - 1.0.0 or later (If you get this from GNOME CVS, use the tag "gnome-vfs-1-0") *** If you are using gnome-vfs from CVS, you should use the flag *** "--disable-more-warnings" when configuring, or it may fail to *** build. - libglade - 0.14 or later - bonobo - 1.0.3 or later *** Note that bonobo must be installed with the same --prefix as *** either gnome-libs or evolution for the Makefiles to work *** properly. - gal (GNOME Application Library) - 0.7.99.3 or later - gtkhtml - later than 0.9.3 - Berkeley's libdb - 3.1.17 db3 is available from www.sleepycat.com. Make sure to get 3.1.17, it isn't the newest version. *** Note that db3 installs by default in /usr/local/BerkeleyDB.3.1 *** so you may need to specify evolution to look in this directory *** for it. We will add a check for this directory later. If you want support for PalmPilot syncing (currently experimental so please back up your pilot) you will also need to do the following: 1) pilot-link cvs -d :pserver:anonymous@cvs.gnu-designs.com:/cvs/pilot-link login The password is just . cvs -d :pserver:anonymous@cvs.gnu-designs.com:/cvs/pilot-link co pilot-link ./configure --prefix= --with-perl=no --with-java=no --with-tcl=no --with-python=no make make install 2) gnome-pilot cvs -z3 co gnome-pilot ./autogen.sh --prefix= --with-pisock= make make install 3) evolution in your evo source dir do ./autogen.sh --prefix= --with-pisock= --enable-pilot-conduits=yes make make install If you want support SSL (and someday S/MIME), you will also need libnspr4 and libnss3 which can be found at http://www.mozilla.org. Once you have libnspr4 and libnss3 (and their respective includes) installed, in your evolution source dir do: ./autogen.sh --prefix= --with-nspr-includes= --with-nspr-libs= --with-nss-includes= --with-nss-libs= You'll need to `cp ~/.mozilla/default/*.db ~/evolution` on you've installed Evolution in order to get a functional SSL-enabled Evolution. The layout of the source tree is: addressbook: the Address Book UI art: graphics used by evolution calendar: the Calendar UI camel: libcamel, a messaging library used by the mailer. Camel is inspired by Sun's JavaMail (http://java.sun.com/products/javamail/) and the IMAPv4 spec (RFC 2060). composer: the message composer UI data: the .desktop file for Evolution default_user: initial Evolution config files for new users devel-docs: entirely inadequate documentation doc: more adequate documentation e-util: utility code used by various parts of Evolution filter: libfilter, a mail filtering library libibex: an indexing library used by the mailer libical: a library for the iCalendar format (RFC 2445-2446) libversit: a library for the vCard (RFC 2425-2426) and vCalendar (http://www.imc.org/pdi/vcal-10.txt) formats mail: the mail display UI shell: the Evolution shell (the main program that launches the other components) tests: some test programs tools: utilities, notably "killev", a script to kill of all of the Evolution components widgets: widgets used by Evolution, including the shortcut bar wombat: Has source code that will load in the addressbook and calendar backend, and will form the server process we'll be using td> * Add an accelerator for "FileClose".Ettore Perazzoli2002-07-122-1/+5 * Add accelerator for "Print Preview", "Delete".Ettore Perazzoli2002-07-113-3/+13 * s/Edit as New Message/Resend - this was confusing people. Also moved it toJeffrey Stedfast2002-07-102-2/+4 * s/Edit as New Message/Resend - this was confusing people.Jeffrey Stedfast2002-07-102-1/+6 * s/now// for "Send this message now" tooltipJeffrey Stedfast2002-07-061-1/+1 * Removed the Send Later verb.Jeffrey Stedfast2002-07-062-4/+4 * Added a bunch of tooltips.Ettore Perazzoli2002-07-022-3/+13 * add a 'stop' menu item (fixes ximian #17242)jacob berkman2002-06-073-0/+8 * Put the search menu in a SearchPlaceholder.Ettore Perazzoli2002-05-232-3/+6 * Add a toolbar item for ActionScheduleMeeting.Ettore Perazzoli2002-05-213-1/+20 * Replaced q binding with ` for hiding/showing the message view pane.Christopher James Lahey2002-05-143-11/+34 * Add FileOpenOtherUsersFolder.Ettore Perazzoli2002-05-112-0/+9 * Fix bad xml.Dan Winship2002-04-092-1/+5 * Added missing </submenu> tag. Remove bogus "Dump" menu item.Ettore Perazzoli2002-04-042-161/+162 * eek, we don't want 2 seps in a rowJeffrey Stedfast2002-03-281-2/+0 * Removed the "Mail Settings" stuff.Jeffrey Stedfast2002-03-283-8/+10 * Move the ComponentActionsPlaceholder into the Actions menu, instead of theEttore Perazzoli2002-03-219-45/+65 * [Start implementing the new Search Bar design.]Ettore Perazzoli2002-03-162-0/+6 * Remove "Settings" item.Ettore Perazzoli2002-03-152-12/+4 * oops.JP Rosevear2002-03-151-1/+2 * remove duplicate new items in the file and action menusJP Rosevear2002-03-152-15/+4 * remove duplicate new items in the file and action menusJP Rosevear2002-03-152-29/+5 * Remove the "Tasks Settings..." menu item.Ettore Perazzoli2002-03-144-21/+10 * Add an entry to invoke the new unified config dialog.Ettore Perazzoli2002-03-132-6/+17 * doh. In my previous commit, a whole bunch of changes that were supposed toAnna Marie Dirks2002-03-122-60/+8 * moved format menu, avoided two separatorsRadek Doulik2002-03-092-13/+14 * added FormatHTMLRadek Doulik2002-03-092-0/+12 * Fixed tiny typo ("Addressbook", not "Address book"), and cleaned upAnna Marie Dirks2002-03-082-12/+76 * added save & close on toolbar, added C-s shortcutRadek Doulik2002-03-082-1/+7 * added Print & PrintPreview stuff.Damon Chaplin2002-03-052-0/+19 * Add NewComboButton and a separator.Ettore Perazzoli2002-02-226-26/+18 * Added Copy to Folder and Move to Folder in the Actions menu here.Christopher James Lahey2002-02-142-1/+15 * Added pixbufs to MarkAsImportant, MarkAsRead and MarkAsUnread. Also addedJeffrey Stedfast2002-02-132-11/+34 * add new meeting item to Actions and File->NewJP Rosevear2002-02-082-1/+10 * Changed "Forward As" to "Forward" to improve grammar ("Forward As" impliesAnna Marie Dirks2002-02-062-6/+10 * Add MessageRedirect.Jeffrey Stedfast2002-01-302-0/+10 * From addressbook/ChangeLog:Christopher James Lahey2002-01-182-0/+11 * Remove "Dump" menu item.Ettore Perazzoli2002-01-172-1/+4 * for all separators, add a unique (per xml file) name to each separator, soMichael Meeks2002-01-1616-81/+100 * add a mark as complete itemJP Rosevear2002-01-042-2/+10 * make spacing consistent with calendar xml file, add expunge command andJP Rosevear2002-01-043-62/+82 * Add an "Add Sender to Address Book" menu item.Jeffrey Stedfast2001-12-072-0/+12 * Merging changes:Christopher James Lahey2001-12-012-10/+12 * Renamed the cut/copy/paste/delete command/item/verb names to beFederico Mena Quintero2001-10-312-10/+14 * change Save into Save and close, don't break the string freeze in theLarry Ewing2001-10-313-18/+38 * Added an EncodingPlaceholder, shuffled around the items for the Edit menuEttore Perazzoli2001-10-302-2/+10 * Remove separator from the end of the "View" menu.Ettore Perazzoli2001-10-302-2/+5 * Fix the verb names for the pixmaps in the Edit menu; they were out ofFederico Mena Quintero2001-10-301-16/+11 * Comment out the "Action" submenu, which isn't hooked up to anything in theJon Trowbridge2001-10-282-0/+8 * add separator before text size menuLarry Ewing2001-10-262-4/+10 * ChangeLog fix.Chris Lahey2001-10-241-1/+1 * Added Delete and BackSpace keybindings here.Christopher James Lahey2001-10-242-0/+10 * Added an accelerator (H_TML) to the Format->Html menu item.Anna Marie Dirks2001-10-232-1/+6 * add text size menu.Larry Ewing2001-10-212-0/+23 * removed hidden Debug submenu, it was causing empty little popup menuRadek Doulik2001-10-013-11/+8 * Change the import labelIain Holmes2001-09-292-2/+6 * Move the Tools menu outside the ComponentToolsPlaceholder. Likewise.Ettore Perazzoli2001-09-289-48/+68 * Don't allow the default toolbar to be configurable.Ettore Perazzoli2001-09-081-1/+0 * Don't allow the default toolbar to be configurable.Ettore Perazzoli2001-09-082-1/+6 * Changed "Save" to "Save and Close"Anna Marie Dirks2001-09-072-5/+16 * [Fix #5503, Edit menu is empty and should be removed.]Ettore Perazzoli2001-09-069-68/+96 * s/Evolution/Ximian Evolution/.Ettore Perazzoli2001-09-062-4/+8 * Change "Copy to Folder" to be Ctrl-Shift-Y so we are more like O* andEttore Perazzoli2001-09-052-1/+7 * Add an F9 accelerator for the "Send/Receive" item.Ettore Perazzoli2001-09-052-1/+6 * Add an accel for Search Message.Jeffrey Stedfast2001-09-052-0/+5 * in mail:Peter Williams2001-08-302-1/+7 * added ... to Search Message to indicate that it pops up a dialog.Larry Ewing2001-08-242-1/+6 * Added tip for 'New Task'.Damon Chaplin2001-08-222-2/+4 * 'All-Day' -> 'All Day' to be consistent everywhere.Damon Chaplin2001-08-222-1/+6 * Move the ChangeFolderProperties into the ComponentPlaceholder. Add aEttore Perazzoli2001-08-213-2/+10 * control-return for save and closeJP Rosevear2001-08-212-2/+6 * remove print preview from toolbarJP Rosevear2001-08-212-3/+6 * remove print setup option for consistencyJP Rosevear2001-08-212-5/+4 * set MessageDelete pixtype to pixbuf.Damon Chaplin2001-08-202-1/+4 * set Delete pixtype to pixbuf.Damon Chaplin2001-08-202-1/+2 * use bigger Save icon for toolbar.Damon Chaplin2001-08-204-3/+11 * changed Goto icon to pixbuf.Damon Chaplin2001-08-202-1/+5 * use new Delete icon for menu.Damon Chaplin2001-08-202-1/+5 * added Delete command to menu and toolbar.Damon Chaplin2001-08-202-0/+7 * added Cut/Copy/Paste items to toolbar, though I'm not sure they are veryDamon Chaplin2001-08-202-0/+14 * use new delete icons in menu & toolbar.Damon Chaplin2001-08-202-3/+7 * use Cut/Copy/Paste icons.Damon Chaplin2001-08-202-3/+7 * don't use old stock icon for the menu, to be consistent with otherDamon Chaplin2001-08-202-3/+8 * use new Cut/Copy/Paste/Save/Search icons.Damon Chaplin2001-08-202-9/+19 * Added Cut/Copy/Paste underline thingies.Jeffrey Stedfast2001-08-203-4/+9 * used the new Cut/Copy/Paste icons. Removed the Save As/Print/Print PreviewDamon Chaplin2001-08-194-50/+28 * Set the pixtype for "ContactEditorDelete" to "pixbuf". Likewise. Likewise.Ettore Perazzoli2001-08-194-19/+11 * Remove "Control-W" accelerator for closing the window.Ettore Perazzoli2001-08-192-1/+6 * Change pixtype of "MessageDelete" to "pixbuf".Ettore Perazzoli2001-08-192-1/+6 * changed goto icon from stock icon to pixbuf for the toolbar. Note that theDamon Chaplin2001-08-182-5/+18 * changed print icon types to pixbuf.Damon Chaplin2001-08-182-2/+7 * changed 'Search for Contacts'.Damon Chaplin2001-08-182-1/+5 * changed 'Send contact to other' to 'Forward Contact' and capitalized 'SendDamon Chaplin2001-08-183-4/+13 * Changed the order of the toolbar icons (moved "New Message" (formerlyAnna Marie Dirks2001-08-183-5/+14 * Changed "Import file..." to "Import File..." Fixed a few lack ofAnna Marie Dirks2001-08-173-6/+13 * Stop search message from conflicting with expunge.Peter Williams2001-08-172-2/+5 * add save menu itemJP Rosevear2001-08-172-3/+11 * rename menu item to Assign Task and tidyJP Rosevear2001-08-172-5/+10 * removed the Print Setup menu item, and changed Print Message to Print forAnna Marie Dirks2001-08-172-3/+13 * Add a "BuiltMenuItems" placeholder in the "Help" menu so we can do theEttore Perazzoli2001-08-172-19/+6 * *evolution-calendar.xml : Changed "print calendar" to "print".Anna Marie Dirks2001-08-162-1/+7 * s/My Evolution/Summary/Iain Holmes2001-08-162-4/+8 * Add Tigert's new icons for Prev and Next.Federico Mena Quintero2001-08-152-4/+8 * Rearranged this Edit menu to fit the standards.Christopher James Lahey2001-08-142-1/+8 * Added accelerators here.Christopher James Lahey2001-08-143-9/+14 * removed the redundant view-switching menu items from the bottom of theAnna Marie Dirks2001-08-142-8/+6 * Reload buttonIain Holmes2001-08-142-1/+10 * applied Neil Conway's <nconway@klamath.dyndns.org> menu-improvement patch.Anna Marie Dirks2001-08-143-4/+11 * Prioritise the label for printIain Holmes2001-08-142-1/+5 * Remove a separator after the "Subscribe to Folders" item.Ettore Perazzoli2001-08-142-2/+5 * Add labels for the ShowDayView, ShowWorkWeekView, ShowWeekView,Ettore Perazzoli2001-08-142-8/+13 * Changed the tooltips for several toolbar icons to make all tooltipsAnna Marie Dirks2001-08-142-8/+15 * [Fix #7069, New - Missing name for "Tools" menu.]Kjartan Maraas2001-08-122-5/+12 * Make the label for the resending menu item read "Edit as New Message...",Jason Leach2001-08-122-1/+6 * [Fix #7608, New - Phantom menu entry in Tasks.]Ettore Perazzoli2001-08-122-6/+11 * End a placeholder block with </placeholder> instead of <placeholder/>Jason Leach2001-08-112-1/+6 * in mail:Peter Williams2001-08-102-0/+7 * Remove all the "New ... FIXME" items.Ettore Perazzoli2001-08-102-18/+4 * Remove "Tools" and "Actions" menus. Create a "ComponentActionsPlaceholder"Ettore Perazzoli2001-08-093-18/+18 * Put the "Tools" and "Actions" menus in the "ComponentToolsPlaceholder" andEttore Perazzoli2001-08-096-48/+58 * Changed the "Show All" menu item to be "Show Hidden Messages".Anna Marie Dirks2001-08-092-2/+7 * improvements, make it look more like the event editor.Chris Toshok2001-08-094-198/+39 * Fixes Clahey bug #2200 :-)Nat Friedman2001-08-082-0/+10 * Remove "Customize toolbar" item. Here too. Here too.Ettore Perazzoli2001-08-084-20/+7 * Rename "Manage Subscriptons" to "Subscribe to Folders" as per Aaron'sPeter Williams2001-08-072-1/+7 * Update the updated Save, Save As, and Print icons for menus and theJason Leach2001-08-032-22/+19 * Added ContactsSaveAsVCard, ContactsSendContactToOther, andChristopher James Lahey2001-08-022-6/+37 * More updates to icons, this time the Save, Save As, and Search icons forJacob Leach2001-08-014-9/+18 * ui:Peter Williams2001-08-012-1/+12 * Added Next/Previous menu items under Actions/GoTo.Jeffrey Stedfast2001-08-012-0/+15 * Add a pixmap to the Tasks Settings option to make it consistent with theFederico Mena Quintero2001-08-012-5/+9 * Use the new Send and Send Later icons for the toolbar and menus in theJacob Leach2001-07-312-6/+13 * use the new print icons.Damon Chaplin2001-07-312-8/+16 * Correct the tooltip for the Print button. Bug #5801.Jason Leach2001-07-302-1/+6 * renamed "Tasks Preferences" to "Tasks Settings" to be consistent with theDamon Chaplin2001-07-282-1/+6 * removed Edit & Help menus. Fixes #5500.Damon Chaplin2001-07-282-12/+4 * Consistency fixes, and reindented the goddamn thing.Federico Mena Quintero2001-07-282-142/+118 * Removed the unused "Settings" submenu, because it creates an extra blankJason Leach2001-07-282-5/+6 * changed "Settings" to "Calendar Settings". Fixes bug #5498.Damon Chaplin2001-07-262-1/+6 * Move Insert File from the File menu into the Insert Menu. Change thePeter Williams2001-07-252-4/+9 * Add "Compose New Message" to the Actions menu as suggested in bug #866.Peter Williams2001-07-252-2/+8 * Add the "Mark as Unimportant" cmd and menu item to the Edit menu. BugJason Leach2001-07-242-3/+12 * typo in changelog.Jacob Leach2001-07-221-1/+1 * Capitalize "messgaes" in "Hide Read messages" menu item label. Bug #5091.Jason Leach2001-07-222-1/+6 * Removed the "Redirect" menu since this is now a future feature.Jeffrey Stedfast2001-07-212-5/+5 * update to use new print icon.Damon Chaplin2001-07-203-11/+14 * Add closing dots to the "Filter on..." items for consistency with theEttore Perazzoli2001-07-172-4/+9 * Remove Print commands and toolbar/menu items. Also, use "list" instead ofChris Toshok2001-07-112-26/+9 * remove FileSaveInFolder menu item. rename Insert->File toLarry Ewing2001-07-102-2/+7 * Change the folder right-click "Properties..." menu item handling soEttore Perazzoli2001-07-062-7/+2 * Get the File -> Folder -> Properties menu item work again for theEttore Perazzoli2001-07-053-11/+9 * set "pixname" value only if pixbuf was loaded successfully. OtherwiseGediminas Paulauskas2001-07-052-1/+6 * Fix bug #3612: Accelerator for attach file in composer.Jacob Leach2001-07-042-0/+8 * Finish off #809 by committing the menu and right click thingies forJacob Leach2001-07-042-0/+9 * Add a seperate pixbuf for the print buttonIain Holmes2001-07-042-1/+6 * Add publish free/busy itemJP Rosevear2001-07-032-0/+11 * make the 'Task Preferences' menu item appear as the first item in theRodrigo Moya2001-07-032-3/+14 * Set it up to have an e-charset-picker bonobo-ui menu attached to the EditJeffrey Stedfast2001-07-032-74/+48 * Rename "New -> Evolution bar shortcut" into "New -> Shortcut".Ettore Perazzoli2001-07-022-1/+6 * add a separate dockitem for the search entry.Chris Toshok2001-07-022-5/+12 * Enable the label next to the "Attach" toolbar button, and get rid of theEttore Perazzoli2001-07-022-7/+6 * Implemented the `File -> New -> Shortcut' command.Ettore Perazzoli2001-07-012-1/+5 * Use Tuomas' next-message, previous-message and print icons in theEttore Perazzoli2001-07-012-3/+8 * Add the preferences thingIain Holmes2001-07-011-0/+11 * fixed typosRodrigo Moya2001-06-302-5/+9 * new fileRadek Doulik2001-06-293-0/+76 * Small typoRodrigo Moya2001-06-281-2/+1 * added cut/copy/paste entries to the main menuRodrigo Moya2001-06-282-0/+14 * added cut/copy/paste entries to the main menuRodrigo Moya2001-06-282-0/+18 * remove FIXME from FileInsertFile.Larry Ewing2001-06-282-1/+6 * Updated to use TigerT's attachment icon.Jeffrey Stedfast2001-06-282-2/+5 * Copy and Move to Folder now require the Shift key.Jeffrey Stedfast2001-06-282-2/+5 * Changed the Expunge accel to ^E instead of ^X since ^X is Cut andJeffrey Stedfast2001-06-282-7/+13 * Mail:Peter Williams2001-06-277-468/+650 * add a preview toggle itemjacob berkman2001-06-262-0/+9 * Added Cut/Copy/Paste menu items.Jeffrey Stedfast2001-06-262-0/+22 * add cmd for ContactNewList and ContactsPrintPreview. Also, correct the tipChris Toshok2001-06-251-0/+90 * add cmd for ContactNewList and ContactsPrintPreview. Also, correct the tipChris Toshok2001-06-253-8/+27 * Get rid of the nasty Bonobo status bar.Ettore Perazzoli2001-06-232-6/+4 * new commandsJP Rosevear2001-06-232-0/+21 * add toolbarJP Rosevear2001-06-222-1/+24 * collapse print commands hereJP Rosevear2001-06-214-51/+20 * Fix typo. s/Cancel then meeting/ Cancel the meeting/.Kjartan Maraas2001-06-202-1/+6 * split out commands from toolitems/menuitems.Chris Toshok2001-06-202-29/+55 * ui xml for task editorJP Rosevear2001-06-204-256/+56 * change to event specific operationsJP Rosevear2001-06-204-184/+100 * Added a Reply-to-list menu item.Jeffrey Stedfast2001-06-152-0/+10 * Committing the new My Evolution.Iain Holmes2001-06-09