diff options
author | nobody <nobody@localhost> | 2002-11-01 23:06:20 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-11-01 23:06:20 +0800 |
commit | a1c8686f1640de127c01cb344be118c24a253d70 (patch) | |
tree | 112fdd1c1308eff2630d6e381ed55bb0b4ee3071 /camel/tests/data/getaddr.pl | |
parent | 29f8799d6648986b85447ffebfd496ed6f3f7b63 (diff) | |
download | gsoc2013-evolution-GNOME_VFS_2_1_3.tar.gz gsoc2013-evolution-GNOME_VFS_2_1_3.tar.zst gsoc2013-evolution-GNOME_VFS_2_1_3.zip |
This commit was manufactured by cvs2svn to create tagGNOME_VFS_2_1_3
'GNOME_VFS_2_1_3'.
svn path=/tags/GNOME_VFS_2_1_3/; revision=18486
Diffstat (limited to 'camel/tests/data/getaddr.pl')
-rwxr-xr-x | camel/tests/data/getaddr.pl | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/camel/tests/data/getaddr.pl b/camel/tests/data/getaddr.pl deleted file mode 100755 index 74a8a81f74..0000000000 --- a/camel/tests/data/getaddr.pl +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/perl - -# get addresses out of messages - -if ($#ARGV < 0) { - print "Usage: $0 message(s) mbox(es)\n"; - exit 1; -} - -foreach $name (@ARGV) { - open IN,"<$name"; - while (<IN>) { - if (/^From: (.*)/i - || /^To: (.*)/i - || /^Cc: (.*)/i) { - $base = $1; - while (<IN>) { - if (/^\s+(.*)/) { - $base .= " ".$1; - } else { - last; - } - } - $uniq{$base} = 1; - } - } - close IN; -} - -foreach $key (sort keys %uniq) { - print $key."\n"; -} |