From: Thorsten Maerz Date: Tue, 17 Dec 2002 21:25:49 +0000 (+0000) Subject: Added "search for message-id" script and doc X-Git-Tag: rel_0_8_7~23 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f3e77b6651d6833e7308b92d3faadda13ace3cc5 Added "search for message-id" script and doc --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 5a4d2118d..c820fc536 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,10 @@ +2002-12-14 [thorsten] 0.8.6claws113 + + * tools/Makefile.am + tools/README + tools/google_msgid.pl ** NEW FILE ** + Added "search for message-id" script and doc + 2002-12-14 [thorsten] 0.8.6claws112 * po/hu.po diff --git a/configure.in b/configure.in index 810896ad6..57c5d0101 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws112 +EXTRA_VERSION=claws113 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/tools/Makefile.am b/tools/Makefile.am index 15772ec23..a61d9a739 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -5,6 +5,7 @@ EXTRA_TOOLS = \ filter_conv.pl \ gif2xface.pl \ gpg-sign-syl \ + google_msgid.pl \ kmail2sylpheed.pl \ kmail2sylpheed_v2.pl \ newscache_clean.pl \ diff --git a/tools/README b/tools/README index 68741e60d..bf066f9c6 100644 --- a/tools/README +++ b/tools/README @@ -1,3 +1,60 @@ + +Contents of the tools directory: +----------------------------------------------------------------------- + +Action scripts: + gpg-sign-syl Clear-sign current selection + google_msgid.pl Lookup selected message-id in google + uudec Decode and display uuencoded images + +Addressbook conversion: + eud2gc.py Convert Eudora addressbook to Gnomecard + kmail2sylpheed.pl Import a Kmail addressbook + kmail2sylpheed_v2.pl Import an exported Kmail addressbook csv file + outlook2sylpheed.pl Import an Outlook generated contact list + tb2sylpheed Import The Bat! address books + +Mailbox conversion: + calypso_convert.pl Import mbox files with attachments from Calypso + +Other tools: + gif2xface.pl Convert a 48x48 GIF file to an X-Face header + OOo2sylpheed.pl Send documents from OpenOffice.org + sylprint.pl Printing engine, explained in README.sylprint + +Sylpheed specific tools: + filter_conv.pl Convert old-style filters to new filtering + newscache_clean.pl Clean up news directory + sylpheed-switcher Run either sylpheed or claws (separate configs) + update-po Update the .po files named on the command line. + + +Detailed Descriptions: +----------------------------------------------------------------------- + +Action scripts: + +* gpg-sign-syl + WORKS ON: selection, whole message + COMMAND: |gpg-sign-syl| + Clear-sign current selection using gpg. + +* google_msgid.pl + WORKS ON: selection + COMMAND: |google_msgid.pl + Lookup selected message-id in google using mozilla. Edit the script to use + different browsers. + +* uudec + WORKS ON: current message (or part of multipart message) + COMMAND: uudec %f& + Decode and display uuencoded images using uudecode. + +* More action examples can be found at + http://melvin.hadasht.free.fr/home/sylpheed/actions/ + +----------------------------------------------------------------------- + * calypso_convert.pl WHAT IT DOES diff --git a/tools/google_msgid.pl b/tools/google_msgid.pl new file mode 100644 index 000000000..40cf12e81 --- /dev/null +++ b/tools/google_msgid.pl @@ -0,0 +1,7 @@ +#!/usr/bin/perl +my $browser = 'mozilla'; +my $google_id = 'http://groups.google.com/groups?as_umsgid'; +$_ = <>; +chomp; +s/<|>//eg; +system("$browser '$google_id=$_' &");