PGP/MIME -> RFC2015 - Standard seit 1996!
Florian Lohoff
flo at rfc822.org
Fri Feb 28 19:55:02 CET 2003
On Fri, Feb 28, 2003 at 07:11:13PM +0100, ingo at fargonauten.de wrote:
> Langer Rede, kurzer Sinn: PGP/MIME ist schön, aber unrealistisch und
> man sollte sich wirklich nicht wundern, dass es kaum unterstützt wird.
Die Leute die es interessiert sind in der lage es zu lesen/verarbeiten
und genau das reicht. Es gibt genuegend MUAs die es koennen um jeden
das zur verfuegung zu stellen.
Hier eine Statistik ueber die MUAs von Mails die ich in 2002 bekommen habe
(Ohne Mailinglisten):
22755 (100.00) total
7895 ( 34.70) Mutt
3510 ( 15.43) Unknown
2583 ( 11.35) Mozilla
2063 ( 9.07) Microsoft Outlook Express
1582 ( 6.95) Internet Mail Service (Exchange/Outlook?)
1299 ( 5.71) Microsoft Outlook
929 ( 4.08) KMail
826 ( 3.63) Evolution
603 ( 2.65) Eudora
305 ( 1.34) Gnus
232 ( 1.02) Sylpheed
209 ( 0.92) AOL
209 ( 0.92) ELM
195 ( 0.86) Apple Mail
88 ( 0.39) Lotus Notes
55 ( 0.24) Novell Groupwise
47 ( 0.21) Opera
38 ( 0.17) Mulberry
31 ( 0.14) Eudora Pro
25 ( 0.11) CrossPoint
25 ( 0.11) FoxMail
6 ( 0.03) T-Online eMail
D.h. 35% meiner Kommunikationspartner sind in der Lage mir verschluesselte
Mails zu schreiben bzw meine zu entschluesseln oder die signatur zu
ueberpruefen wenn sie denn wollten. Das ist weit mehr als ich erwartet habe.
Wenn man noch Gnus, Mozilla/Fortify, KMail hinzuzieht sind wir schon
bei ~50%.
Angehaengt das perl script mit der ich die statistik gebaut habe. Nicht
perfekt aber tut was es soll.
Flo
--
Florian Lohoff flo at rfc822.org +49-5201-669912
Heisenberg may have been here.
-------------- next part --------------
#!/usr/bin/perl
use strict;
my $debug=1;
my %mt;
while(<>) {
if (my ($hdr, $mua) = /^(User-Agent: |X-Mailer: )(.*)/) {
my $muat="Unknown";
if ($mua =~ /^Mutt/) {
$muat="Mutt";
} elsif ($mua =~ /^Microsoft Outlook Express|^OutLook Express/i) {
$muat="Microsoft Outlook Express";
} elsif ($mua =~ /^Microsoft Outlook/) {
$muat="Microsoft Outlook";
} elsif ($mua =~ /^Internet Mail Service/) {
$muat="Internet Mail Service (Exchange/Outlook?)";
} elsif ($mua =~ /^Ximian Evolution|^Evolution/) {
$muat="Evolution";
} elsif ($mua =~ /^Mozilla/) {
$muat="Mozilla";
} elsif ($mua =~ /^AOL|^7.0 for Windows/) {
$muat="AOL";
} elsif ($mua =~ /^ELM/) {
$muat="ELM";
} elsif ($mua =~ /^Novell GroupWise/) {
$muat="Novell Groupwise";
} elsif ($mua =~ /^Gnus\//) {
$muat="Gnus";
} elsif ($mua =~ /Eudora Pro/) {
$muat="Eudora Pro";
} elsif ($mua =~ /Eudora/) {
$muat="Eudora";
} elsif ($mua =~ /^Sylpheed/) {
$muat="Sylpheed";
} elsif ($mua =~ /^Mulberry/) {
$muat="Mulberry";
} elsif ($mua =~ /Apple Mail/) {
$muat="Apple Mail";
} elsif ($mua =~ /KMail/) {
$muat="KMail";
} elsif ($mua =~ /Opera/) {
$muat="Opera";
} elsif ($mua =~ /^Lotus Notes/) {
$muat="Lotus Notes";
} elsif ($mua =~ /^T-Online eMail/) {
$muat="T-Online eMail";
} elsif ($mua =~ /^FoxMail/i) {
$muat="FoxMail";
} elsif ($mua =~ /^CrossPoint/) {
$muat="CrossPoint";
} elsif ($debug) {
printf("Unknown MUA %s (Hdr: %s)\n", $mua, $hdr);
}
$mt{$muat}++;
$mt{total}++;
}
}
foreach my $muat ( sort { $mt{$b} <=> $mt{$a} } keys %mt ) {
printf("%6d (%6.2f) %-s\n",
$mt{$muat},
$mt{$muat}/$mt{total}*100,
$muat);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 232 bytes
Desc: not available
URL: <http://lug-owl.de/pipermail/linux/attachments/20030228/a37ab795/attachment.sig>
More information about the Linux
mailing list