You can subscribe to this list here.
2003 |
Jan
|
Feb
(160) |
Mar
(119) |
Apr
(111) |
May
(118) |
Jun
(101) |
Jul
(304) |
Aug
(113) |
Sep
(140) |
Oct
(137) |
Nov
(87) |
Dec
(122) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(78) |
Feb
(125) |
Mar
(131) |
Apr
(59) |
May
(121) |
Jun
(166) |
Jul
(150) |
Aug
(137) |
Sep
(73) |
Oct
(58) |
Nov
(27) |
Dec
(60) |
2005 |
Jan
(131) |
Feb
(84) |
Mar
(36) |
Apr
(8) |
May
(28) |
Jun
(20) |
Jul
(10) |
Aug
(72) |
Sep
(76) |
Oct
(34) |
Nov
(3) |
Dec
(29) |
2006 |
Jan
(13) |
Feb
(92) |
Mar
(7) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(4) |
Aug
(17) |
Sep
(5) |
Oct
(2) |
Nov
(8) |
Dec
(12) |
2007 |
Jan
(28) |
Feb
(15) |
Mar
|
Apr
|
May
(8) |
Jun
(4) |
Jul
(5) |
Aug
(8) |
Sep
(20) |
Oct
(38) |
Nov
(65) |
Dec
(92) |
2008 |
Jan
(21) |
Feb
(56) |
Mar
(27) |
Apr
(174) |
May
(25) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <jgr...@us...> - 2003-05-22 17:00:23
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1:/tmp/cvs-serv31605/UI Modified Files: HTML.pm HTTP.pm Log Message: Fix http_error_ bug (not being called correctly) and make logging of connection acceptance verbose to help debug connection problems. Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.157 retrieving revision 1.158 diff -C2 -d -r1.157 -r1.158 *** HTML.pm 22 May 2003 05:17:06 -0000 1.157 --- HTML.pm 22 May 2003 17:00:19 -0000 1.158 *************** *** 382,386 **** } ! http_error_($self, $client, 404); return 1; } --- 382,386 ---- } ! $self->http_error_($client, 404); return 1; } Index: HTTP.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTTP.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HTTP.pm 26 Apr 2003 10:22:23 -0000 1.2 --- HTTP.pm 22 May 2003 17:00:20 -0000 1.3 *************** *** 107,118 **** --- 107,129 ---- # Handle HTTP requests for the UI if ( ( defined( $ready ) ) && ( $ready == $self->{server_} ) ) { + + $self->log_( "Connection pending on HTTP socket" ); + if ( my $client = $self->{server_}->accept() ) { + + $self->log_( "Accepted connection on HTTP socket" ); + # Check that this is a connection from the local machine, if it's not then we drop it immediately # without any further processing. We don't want to allow remote users to admin POPFile + my ( $remote_port, $remote_host ) = sockaddr_in( $client->peername() ); + $self->log_( "Got a connection from " . inet_ntoa( $remote_host ) . " on port $remote_port" ); + if ( ( $self->config_( 'local' ) == 0 ) || ( $remote_host eq inet_aton( "127.0.0.1" ) ) ) { + $self->log_( "Ready to receive HTTP command" ); + # Read the request line (GET or POST) from the client and if we manage to do that # then read the rest of the HTTP headers grabbing the Content-Length and using *************** *** 123,130 **** --- 134,145 ---- my $content; + $self->log_( "Received HTTP command $request" ); + while ( <$client> ) { $content_length = $1 if ( /Content-Length: (\d+)/i ); last if ( !/[A-Z]/i ); } + + $self->log_( "Content length $content_length" ); if ( $content_length > 0 ) { |
From: <ssc...@us...> - 2003-05-22 09:25:07
|
Update of /cvsroot/popfile/engine/Proxy In directory sc8-pr-cvs1:/tmp/cvs-serv8000 Modified Files: SMTP.pm Log Message: some cleanup Index: SMTP.pm =================================================================== RCS file: /cvsroot/popfile/engine/Proxy/SMTP.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** SMTP.pm 15 Apr 2003 14:48:09 -0000 1.10 --- SMTP.pm 22 May 2003 09:25:03 -0000 1.11 *************** *** 165,174 **** $count += 1; ! my $class = $self->{classifier__}->classify_and_modify( $client, $mail, $download_count, $count, 0, '' ); ! # Tell the parent that we just handled a mail ! print $pipe "$class$eol"; ! my $response = <$mail>; $self->tee_( $client, $response ); $self->flush_extra_( $mail, $client, 0 ); --- 165,174 ---- $count += 1; ! my $class = $self->{classifier__}->classify_and_modify( $client, $mail, $download_count, $count, 0, '' ); ! # Tell the parent that we just handled a mail ! print $pipe "$class$eol"; ! my $response = <$mail>; $self->tee_( $client, $response ); $self->flush_extra_( $mail, $client, 0 ); *************** *** 176,180 **** } } ! # The mail client wants to stop using the server, so send that message through to the # real mail server, echo the response back up to the client and exit the while. We will --- 176,180 ---- } } ! # The mail client wants to stop using the server, so send that message through to the # real mail server, echo the response back up to the client and exit the while. We will *************** *** 227,231 **** my $response = $self->get_response_( $mail, $client, $command ); ! if ( $response =~ /^[23]\d\d-/ ) { $self->echo_to_regexp_($mail, $client, qr/^\d\d\d /, 1); } --- 227,231 ---- my $response = $self->get_response_( $mail, $client, $command ); ! if ( $response =~ /^\d\d\d-/ ) { $self->echo_to_regexp_($mail, $client, qr/^\d\d\d /, 1); } |
From: <sta...@us...> - 2003-05-22 05:17:10
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1:/tmp/cvs-serv5889 Modified Files: HTML.pm Log Message: added title attrib. to buckets color picker -- tooltip now pops up in Mozilla - Opera still problematic Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.156 retrieving revision 1.157 diff -C2 -d -r1.156 -r1.157 *** HTML.pm 20 May 2003 20:20:33 -0000 1.156 --- HTML.pm 22 May 2003 05:17:06 -0000 1.157 *************** *** 1807,1811 **** $body .= "<td> </td>\n<td align=\"left\">\n<table class=\"colorChooserTable\" cellpadding=\"0\" cellspacing=\"1\" summary=\"\">\n<tr>\n"; my $color = $self->{classifier__}->get_bucket_color($bucket); ! $body .= "<td bgcolor=\"$color\">\n<img class=\"colorChooserImg\" border=\"0\" alt='" . sprintf( $self->{language__}{Bucket_CurrentColor}, $bucket, $color ) . "' src=\"pix.gif\" width=\"10\" height=\"20\" /></td>\n<td> </td>\n"; for my $i ( 0 .. $#{$self->{classifier__}->{possible_colors__}} ) { my $color = $self->{classifier__}->{possible_colors__}[$i]; --- 1807,1811 ---- $body .= "<td> </td>\n<td align=\"left\">\n<table class=\"colorChooserTable\" cellpadding=\"0\" cellspacing=\"1\" summary=\"\">\n<tr>\n"; my $color = $self->{classifier__}->get_bucket_color($bucket); ! $body .= "<td bgcolor=\"$color\" title='" . sprintf( $self->{language__}{Bucket_CurrentColor}, $bucket, $color ) . "'>\n<img class=\"colorChooserImg\" border=\"0\" alt='" . sprintf( $self->{language__}{Bucket_CurrentColor}, $bucket, $color ) . "' src=\"pix.gif\" width=\"10\" height=\"20\" /></td>\n<td> </td>\n"; for my $i ( 0 .. $#{$self->{classifier__}->{possible_colors__}} ) { my $color = $self->{classifier__}->{possible_colors__}[$i]; |
From: <jgr...@us...> - 2003-05-21 16:05:40
|
Update of /cvsroot/popfile/engine/skins In directory sc8-pr-cvs1:/tmp/cvs-serv2080/skins Modified Files: SimplyBlue.css Log Message: Fix problem where email addresses were not showing up in colored display Index: SimplyBlue.css =================================================================== RCS file: /cvsroot/popfile/engine/skins/SimplyBlue.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SimplyBlue.css 26 Feb 2003 00:26:04 -0000 1.5 --- SimplyBlue.css 21 May 2003 16:05:36 -0000 1.6 *************** *** 42,46 **** color: #000000; background-color: #bcd5ea; - /*order: 3px #88b5dd solid; */ border: 2px #ffffff groove; margin: 0; --- 42,45 ---- |
From: <jgr...@us...> - 2003-05-21 16:05:40
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1:/tmp/cvs-serv2080/Classifier Modified Files: MailParse.pm Log Message: Fix problem where email addresses were not showing up in colored display Index: MailParse.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/MailParse.pm,v retrieving revision 1.128 retrieving revision 1.129 diff -C2 -d -r1.128 -r1.129 *** MailParse.pm 14 May 2003 09:12:10 -0000 1.128 --- MailParse.pm 21 May 2003 16:05:36 -0000 1.129 *************** *** 1176,1180 **** my $color = $self->{bayes__}->get_color( "header:$header" ); ! $self->{ut__} = "<b><font color=\"$color\">$header</font></b>: $argument\015\012"; } --- 1176,1184 ---- my $color = $self->{bayes__}->get_color( "header:$header" ); ! my $fix_argument = $argument; ! $fix_argument =~ s/</</g; ! $fix_argument =~ s/>/>/g; ! ! $self->{ut__} = "<b><font color=\"$color\">$header</font></b>: $fix_argument\015\012"; } |
From: <xue...@us...> - 2003-05-21 00:47:38
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv29425a Modified Files: remove.ico Log Message: Updated to use 256 colours and therefore match the new popfile.ico file (NSIS insists that the installer and uninstaller icons use the same structure). Index: remove.ico =================================================================== RCS file: /cvsroot/popfile/windows/remove.ico,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsbJpBDd and /tmp/cvssc8W2g differ |
From: <jgr...@us...> - 2003-05-20 21:00:05
|
Update of /cvsroot/popfile/windows/POPFileIcon In directory sc8-pr-cvs1:/tmp/cvs-serv12211/windows/POPFileIcon Modified Files: icon.suo popfile.ico Log Message: Updated to use Tom Voss POPFile Otto icon Index: icon.suo =================================================================== RCS file: /cvsroot/popfile/windows/POPFileIcon/icon.suo,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsaGYsU8 and /tmp/cvsy8Q3u7 differ Index: popfile.ico =================================================================== RCS file: /cvsroot/popfile/windows/POPFileIcon/popfile.ico,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs5lHMlh and /tmp/cvsehutwo differ |
From: <jgr...@us...> - 2003-05-20 21:00:04
|
Update of /cvsroot/popfile/engine/Platform In directory sc8-pr-cvs1:/tmp/cvs-serv12211/engine/Platform Modified Files: POPFileIcon.dll popfile.ico Log Message: Updated to use Tom Voss POPFile Otto icon Index: POPFileIcon.dll =================================================================== RCS file: /cvsroot/popfile/engine/Platform/POPFileIcon.dll,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsSYbhsV and /tmp/cvsILcHvG differ Index: popfile.ico =================================================================== RCS file: /cvsroot/popfile/engine/Platform/popfile.ico,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsfhlLoY and /tmp/cvsGzK7vM differ |
From: <jgr...@us...> - 2003-05-20 21:00:04
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv12211/engine Modified Files: popfile.ico Log Message: Updated to use Tom Voss POPFile Otto icon Index: popfile.ico =================================================================== RCS file: /cvsroot/popfile/engine/popfile.ico,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsHMbneF and /tmp/cvskcvzfa differ |
From: <jgr...@us...> - 2003-05-20 20:20:37
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1:/tmp/cvs-serv27372a/UI Modified Files: HTML.pm Log Message: Fix inconsistent language referring to stop_word vs stopword Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.155 retrieving revision 1.156 diff -C2 -d -r1.155 -r1.156 *** HTML.pm 20 May 2003 20:15:03 -0000 1.155 --- HTML.pm 20 May 2003 20:20:33 -0000 1.156 *************** *** 1174,1178 **** my $groupSize = 5; my $firstRow = 1; ! for my $word (sort keys %{$self->{classifier__}->get_stop_word_list()}) { $word =~ /^(.)/; if ( $1 ne $last ) { --- 1174,1178 ---- my $groupSize = 5; my $firstRow = 1; ! for my $word (sort keys %{$self->{classifier__}->get_stopword_list()}) { $word =~ /^(.)/; if ( $1 ne $last ) { |
From: <jgr...@us...> - 2003-05-20 20:20:36
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1:/tmp/cvs-serv27372a/Classifier Modified Files: Bayes.pm WordMangle.pm Log Message: Fix inconsistent language referring to stop_word vs stopword Index: Bayes.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v retrieving revision 1.145 retrieving revision 1.146 diff -C2 -d -r1.145 -r1.146 *** Bayes.pm 20 May 2003 20:15:02 -0000 1.145 --- Bayes.pm 20 May 2003 20:20:32 -0000 1.146 *************** *** 1610,1614 **** # --------------------------------------------------------------------------------------------- # ! # get_stop_word_list # # Gets the complete list of stop words --- 1610,1614 ---- # --------------------------------------------------------------------------------------------- # ! # get_stopword_list # # Gets the complete list of stop words *************** *** 1616,1620 **** # --------------------------------------------------------------------------------------------- ! sub get_stop_word_list { my ( $self ) = @_; --- 1616,1620 ---- # --------------------------------------------------------------------------------------------- ! sub get_stopword_list { my ( $self ) = @_; Index: WordMangle.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/WordMangle.pm,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** WordMangle.pm 7 Apr 2003 17:55:48 -0000 1.22 --- WordMangle.pm 20 May 2003 20:20:33 -0000 1.23 *************** *** 28,32 **** bless $self, $type; ! $self->load_stop_words(); return $self; --- 28,32 ---- bless $self, $type; ! $self->load_stopwords(); return $self; *************** *** 35,42 **** # --------------------------------------------------------------------------------------------- # ! # load_stop_words, save_stop_words - load and save the stop word list in the stopwords file # # --------------------------------------------------------------------------------------------- ! sub load_stop_words { my ($self) = @_; --- 35,42 ---- # --------------------------------------------------------------------------------------------- # ! # load_stopwords, save_stopwords - load and save the stop word list in the stopwords file # # --------------------------------------------------------------------------------------------- ! sub load_stopwords { my ($self) = @_; *************** *** 53,57 **** } ! sub save_stop_words { my ($self) = @_; --- 53,57 ---- } ! sub save_stopwords { my ($self) = @_; *************** *** 136,140 **** if ( $stopword ne '' ) { $self->{stop__}{$stopword} = 1; ! $self->save_stop_words(); return 1; --- 136,140 ---- if ( $stopword ne '' ) { $self->{stop__}{$stopword} = 1; ! $self->save_stopwords(); return 1; *************** *** 152,156 **** if ( $stopword ne '' ) { delete $self->{stop__}{$stopword}; ! $self->save_stop_words(); return 1; --- 152,156 ---- if ( $stopword ne '' ) { delete $self->{stop__}{$stopword}; ! $self->save_stopwords(); return 1; |
From: <jgr...@us...> - 2003-05-20 20:18:31
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1:/tmp/cvs-serv26648 Modified Files: English.msg Log Message: Change wording on magnets to support Cc Index: English.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/English.msg,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** English.msg 14 May 2003 09:12:15 -0000 1.34 --- English.msg 20 May 2003 20:18:28 -0000 1.35 *************** *** 190,194 **** Magnet_Message1 The following magnets cause mail to always be classified into the specified bucket. Magnet_CreateNew Create New Magnet ! Magnet_Explanation Three types of magnets are available:</b> <ul><li><b>From address or name:</b> For example: jo...@co... to match a specific address, <br />company.com to match everyone who sends from company.com, <br />John Doe to match a specific person, John to match all Johns</li><li><b>To address or name:</b> Like a From: magnet but for the To: address in a message</li> <li><b>Subject words:</b> For example: hello to match all messages with hello in the subject</li></ul> Magnet_MagnetType Magnet type Magnet_Value Value --- 190,194 ---- Magnet_Message1 The following magnets cause mail to always be classified into the specified bucket. Magnet_CreateNew Create New Magnet ! Magnet_Explanation These types of magnets are available:</b> <ul><li><b>From address or name:</b> For example: jo...@co... to match a specific address, <br />company.com to match everyone who sends from company.com, <br />John Doe to match a specific person, John to match all Johns</li><li><b>To/Cc address or name:</b> Like a From: magnet but for the To:/Cc: address in a message</li> <li><b>Subject words:</b> For example: hello to match all messages with hello in the subject</li></ul> Magnet_MagnetType Magnet type Magnet_Value Value |
From: <jgr...@us...> - 2003-05-20 20:15:09
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1:/tmp/cvs-serv25248/UI Modified Files: HTML.pm Log Message: Fix rounding problem with word counts and add new API get_count_for_word Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.154 retrieving revision 1.155 diff -C2 -d -r1.154 -r1.155 *** HTML.pm 20 May 2003 17:51:34 -0000 1.154 --- HTML.pm 20 May 2003 20:15:03 -0000 1.155 *************** *** 1538,1542 **** while ( $j =~ m/\G\|(.*?) L?\-?[\.\d]+\|/g ) { my $word = $1; ! $temp{$word} = int( exp( $self->{classifier__}->get_value_( $self->{form_}{showbucket}, $word ) ) * $bucket_count + 1 ); } --- 1538,1542 ---- while ( $j =~ m/\G\|(.*?) L?\-?[\.\d]+\|/g ) { my $word = $1; ! $temp{$word} = $self->{classifier__}->get_count_for_word( $self->{form_}{showbucket}, $word ); } |
From: <jgr...@us...> - 2003-05-20 20:15:06
|
Update of /cvsroot/popfile/engine/Classifier In directory sc8-pr-cvs1:/tmp/cvs-serv25248/Classifier Modified Files: Bayes.pm Log Message: Fix rounding problem with word counts and add new API get_count_for_word Index: Bayes.pm =================================================================== RCS file: /cvsroot/popfile/engine/Classifier/Bayes.pm,v retrieving revision 1.144 retrieving revision 1.145 diff -C2 -d -r1.144 -r1.145 *** Bayes.pm 14 May 2003 09:12:10 -0000 1.144 --- Bayes.pm 20 May 2003 20:15:02 -0000 1.145 *************** *** 1112,1115 **** --- 1112,1135 ---- # --------------------------------------------------------------------------------------------- # + # get_count_for_word + # + # Returns the number of times the word occurs in a bucket + # + # $bucket The bucket we are asking about + # $word The word we are asking about + # + # --------------------------------------------------------------------------------------------- + + sub get_count_for_word + { + my ( $self, $bucket, $word ) = @_; + + my $value = $self->get_value_( $bucket, $word ); + + return int( exp( $value ) * $self->get_bucket_word_count( $bucket ) + 0.5 ); + } + + # --------------------------------------------------------------------------------------------- + # # get_bucket_unique_count # |
From: <jgr...@us...> - 2003-05-20 20:10:24
|
Update of /cvsroot/popfile/engine/languages In directory sc8-pr-cvs1:/tmp/cvs-serv16055 Modified Files: Suomi.msg Log Message: Updated Finnish Index: Suomi.msg =================================================================== RCS file: /cvsroot/popfile/engine/languages/Suomi.msg,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Suomi.msg 23 Feb 2003 21:02:00 -0000 1.6 --- Suomi.msg 20 May 2003 20:01:17 -0000 1.7 *************** *** 1,232 **** ! # Copyright (c) 2001-2003 John Graham-Cumming ! ! # Identify the language and character set used for the interface ! LanguageCode fi ! LanguageCharset ISO-8859-15 ! ! # This is used to get the appropriate subdirectory for the manual ! ManualLanguage fi ! ! # Common words that are used on their own all over the interface ! Apply Käytä ! On Päällä ! Off Pois päältä ! TurnOn Laita päälle ! TurnOff Laita pois päältä ! Add Lisää ! Remove Poista ! Previous Edellinen ! Next Seuraava ! From Lähettäjä ! Subject Aihe ! Classification Luokitus ! Reclassify Luokittele uudelleen ! Undo Peru ! Close Sulje ! Find Etsi ! Filter Suodata ! Yes Kyllä ! No Ei ! ChangeToYes Vaihda ! ChangeToNo Vaihda ! Bucket Sanko ! Magnet Magneetti ! Delete Poista ! Create Luo ! To Vastaanottaja ! Total Yhteensä ! Rename Nimeä uudelleen ! Frequency Esiintymistiheys ! Probability Todennäköisyys ! Score Pistemäärä ! Lookup Etsi ! ! # The header and footer that appear on every UI page ! Header_Title POPFile hallinta ! Header_Shutdown Sulje POPFile ! Header_History Viestihistoria ! Header_Buckets Sangot ! Header_Configuration Asetukset ! Header_Advanced Erikoisasetukset ! Header_Security Turvallisuusasetukset ! Header_Magnets Magneetit ! ! Footer_HomePage POPFilen kotisivu ! Footer_Manual Käyttöohjeet ! Footer_Forums Keskustelualueet ! Footer_FeedMe Ruoki minua! ! Footer_RequestFeature Pyydä ominaisuutta ! Footer_MailingList Postituslista ! ! Configuration_Error1 Erotusmerkin pitää olla yksittäinen merkki ! Configuration_Error2 Käyttöliittymän porttinumero pitää olla 1:n ja 65535:n väliltä ! Configuration_Error3 POP3 kuunteluportin numero pitää olla 1:n ja 65535:n väliltä ! Configuration_Error4 Sivun koon pitää olla 1:n ja 1000:n väliltä ! Configuration_Error5 Historian päivien määrä pitää olla 1:n ja 366:n väliltä ! Configuration_Error6 TCP odotusajan pitää olla 10:n ja 300:n väliltä ! Configuration_POP3Port POP3 kuunteluportti ! Configuration_POP3Update POP3-portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_Separator Erotusmerkki ! Configuration_SepUpdate Erotusmerkiksi vaihdettu %s ! Configuration_UI Käyttöliittymän porttinumero ! Configuration_UIUpdate Käyttöliittymän porttinumeroksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_History Viestien määrä sivua kohti ! Configuration_HistoryUpdate Viestien määräksi sivua kohti asetettu %s viestiä ! Configuration_Days Viestihistorian päivien lukumäärä ! Configuration_DaysUpdate Viestihistorian päivien lukumääräksi asetettu %s päivää ! Configuration_UserInterface Käyttöliittymä ! Configuration_Skins Ulkonäköasetukset ! Configuration_SkinsChoose Valitse ulkonäkö ! Configuration_Language Kieliasetukset ! Configuration_LanguageChoose Valitse kieli ! Configuration_ListenPorts Kuunnellut portit ! Configuration_HistoryView Viestihistoria ! Configuration_TCPTimeout TCP-yhteyden odotusaika ! Configuration_TCPTimeoutSecs TCP-yhteyden odotusaika sekunteina ! Configuration_TCPTimeoutUpdate TCP-yhteyden odotusajaksi asetettu %s sekuntia ! Configuration_ClassificationInsertion Luokituksen näkyvyys ! Configuration_SubjectLine Aiherivin muuttaminen ! Configuration_XTCInsertion X-Text-Classification -otsikon lisäys ! Configuration_XPLInsertion X-POPFile-Link -otsikon lisäys ! Configuration_Logging Loki ! Configuration_None Pois päältä ! Configuration_ToScreen Ruudulle ! Configuration_ToFile Tiedostoon ! Configuration_ToScreenFile Ruudulle ja tiedostoon ! Configuration_LoggerOutput Kirjaus ! Configuration_GeneralSkins Skins ! Configuration_SmallSkins Small Skins ! Configuration_TinySkins Tiny Skins ! ! Advanced_Error1 Sana '%s' on jo huomiotta jätettävien sanojen listassa ! Advanced_Error2 Huomiotta jätettävät sanat voivat sisältää vain kirjaimia ja numeroita sekä seuraavia merkkejä: "._-@" ! Advanced_Error3 Sana '%s' lisätty huomiotta jätettävien sanojen listaan ! Advanced_Error4 Sana '%s' ei ole huomiotta jätettävien sanojen listassa ! Advanced_Error5 Sana '%s' poistettu huomiotta jätettävien sanojen listasta ! Advanced_StopWords Huomiotta jätettävät sanat ! Advanced_Message1 Seuraavia sanoja ei oteta huomioon viestien luokittelussa siksi koska ne esiintyvät niin usein. ! Advanced_AddWord Lisää sana ! Advanced_RemoveWord Poista sana ! ! History_Filter (Näkyvissä vain sangon <font color="%s">%s</font> sisältö) ! History_FilterBy Filter By ! History_Search (Etsitty aihetta %s) ! History_Title Viimeaikaiset viestit ! History_Jump Siirry viestiin ! History_ShowAll Näytä kaikki ! History_ShouldBe Pitäisi olla ! History_NoFrom Ei lähettäjätietoa ! History_NoSubject Ei aihetta ! History_ClassifyAs Luokittele ! History_MagnetUsed Käytetty magneettia ! History_ChangedTo Luokitukseksi vaihdettu <font color="%s">%s ! History_Already Viesti on jo uudelleenluokiteltu sankoon <font color="%s">%s</font> ! History_RemoveAll Poista kaikki ! History_RemovePage Poista sivu ! History_Remove Paina tästä poistaaksesi nämä viestit viestihistoriasta ! History_SearchMessage Etsi lähettäjien ja aiheiden joukosta ! History_NoMessages Ei viestejä ! History_ShowMagnet Magneeteilla luokitellut ! History_Magnet (Näkyvissä vain magneeteilla luokitellut viestit) ! History_ResetSearch Peruuta ! ! Password_Title Salasana ! Password_Enter Syötä salasana ! Password_Go Hyväksy ! Password_Error1 Väärä salasana ! ! Security_Error1 Suojattun portti pitää olla 1:n ja 65535:n väliltä ! Security_Stealth Piilotila/Palvelintoiminta ! Security_NoStealthMode Ei (Piilotila) ! Security_ExplainStats Kun tämä asetus on päällä, POPFile lähettää kerran päivässä seuraavat kolme arvoa osoitteeseen www.usetehsource.com: bc (sankojen kokonaismäärä), mc (POPFilen luokittelemien viestien määrä) ja ec (luokitteluvirheiden määrä). Näitä tietoja käytetään POPFilen käyttötavoista ja toimintatarkkuudesta kertovien tilastojen laatimiseen. Webpalvelin säilyttää lokitiedostoja noin 5:n päivän ajan, jonka jälkeen ne poistetaan. Minkäänlaista tietoa tilastojen ja IP-osoitteiden välillä ei säilytetä. ! Security_ExplainUpdate Kun tämä asetus on päällä, POPFile lähettää kerran päivässä seuraavat kolme arvoa osoitteeseen www.usetehsource.com: ma (POPFilen iso versionumero), mi (POPFilen pieni versionumero) ja bn (POPFilen käännösnumero). POPFile saa vastauksen kuvana, joka näkyy sivun ylälaidassa, kun uusi versio on saatavilla. Webpalvelin säilyttää lokitiedostoja noin 5:n päivän ajan, jonka jälkeen ne poistetaan. Minkäänlaista tietoa päivitystarkistusten ja IP-osoitteiden välillä ei säilytetä. ! Security_PasswordTitle Käyttöliittymän salasana ! Security_Password Salasana ! Security_PasswordUpdate Salasanaksi vaihdettu %s ! Security_AUTHTitle Suojattu tunnistus/AUTH ! Security_SecureServer Suojattu palvelin ! Security_SecureServerUpdate Suojatuksi palvelimeksi asetettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Security_SecurePort Suojattu portti ! Security_SecurePortUpdate Portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Security_POP3 Hyväksy POP3-yhteydet muilta koneilta ! Security_UI Hyväksy HTTP-yhteydet (POPFilen hallinta) muilta koneilta ! Security_UpdateTitle Automaattinen päivitystarkistus ! Security_Update Tarkista päivittäin onko POPFilestä tullut uutta versiota. ! Security_StatsTitle Tilastotietojen raportointi ! Security_Stats Lähetä päivittäin tilastotietoja Johnille. ! ! Magnet_Error1 Magneetti '%s' on jo sangossa '%s' ! Magnet_Error2 Uusi magneeetti '%s' on ristiriidassa magneetin '%s' kanssa sangossa '%s' ja voisi aiheuttaa ristiriitaisia tuloksia. Magneettia ei lisätty. ! Magnet_Error3 Uusi magneetti, '%s', luotu sankoon '%s'. ! Magnet_CurrentMagnets Tämänhetkiset magneetit ! Magnet_Message1 Seuraavat magneetit aiheuttavat sen, että viestit luokitellaan aina määriteltyyn sankoon. ! Magnet_CreateNew Luo uusi magneetti ! Magnet_Explanation On kolmenlaisia magneetteja:</b> <ul><li><b>Lähettäjän osoite tai nimi:</b> esimerkiksi "er...@es..." yksittäistä osoitetta varten, <br />"esimerkki.fi" kaikkia niitä varten, joiden osoite päättyy "esimerkki.fi", <br />"Erkki Esimerkki" yksittäistä henkilöä varten ja "Erkki" kaikkia Erkkejä varten</li><li><b>Vastaanottajan osoite tai nimi:</b> Samalla tavoin kuin lähettäjämagneettien kanssa, mutta vastaanottajien osoitteiden kanssa</li><li><b>Sanat aiheessa:</b> esimerkiksi "heipparallaa" kaikkia sellaisia viestejä varten, joiden aiherivillä on sana "heipparallaa".</li></ul> ! Magnet_MagnetType Magneetin tyyppi ! Magnet_Value arvo ! Magnet_Always laitetaan aina sankoon ! ! Bucket_Error1 Sangon nimessä saa olla ainoastaan pieniä kirjaimia a:sta z:aan, sekä merkkejä "-" ja "_" ! Bucket_Error2 Sanko nimeltä %s on jo olemassa ! Bucket_Error3 Luotiin sanko nimeltä %s ! Bucket_Error4 Sangon nimessä pitää olla joitakin merkkejä ! Bucket_Error5 Vaihdettiin sangon %s nimeksi %s ! Bucket_Error6 Poistettiin sanko %s ! Bucket_Title Tiivistelmä ! Bucket_BucketName Sangon nimi ! Bucket_WordCount Sanamäärä ! Bucket_WordCounts Sanamäärät ! Bucket_UniqueWords Erillisiä sanoja ! Bucket_SubjectModification Aiheen muutos ! Bucket_ChangeColor Vaihda väriä ! Bucket_NotEnoughData Ei tarpeeksi tietoa ! Bucket_ClassificationAccuracy Luokittelutarkkuus ! Bucket_EmailsClassified Viestejä luokiteltu ! Bucket_EmailsClassifiedUpper Viestejä luokiteltu ! Bucket_ClassificationErrors Luokitteluvirheitä ! Bucket_Accuracy Tarkkuus ! Bucket_ClassificationCount Luokittelumäärät ! Bucket_ResetStatistics Nollaa tilastot ! Bucket_LastReset Viime nollaus ! Bucket_CurrentColor Sangon %s tämänhetkinen väri on %s ! Bucket_SetColorTo Aseta sangon %s väriksi %s ! Bucket_Maintenance Ylläpito ! Bucket_CreateBucket Luo sanko nimeltä ! Bucket_DeleteBucket Poista sanko nimeltä ! Bucket_RenameBucket Muuta sangon ! Bucket_Lookup Etsintä ! Bucket_LookupMessage Etsi sanaa sangoista ! Bucket_LookupMessage2 Etsintätulos sanalle ! Bucket_LookupMostLikely Sana <b>%s</b> esiintyy suurimmalla todennäköisyydellä sangossa <font color="%s">%s</font> ! Bucket_DoesNotAppear <p>Sana <b>%s</b> ei esiinny missään sangossa ! Bucket_DisabledGlobally Poistettu yleisesti käytöstä ! Bucket_To nimeksi ! Bucket_Quarantine Karanteeni ! ! SingleBucket_Title Sangon %s tarkemmat tiedot ! SingleBucket_WordCount Sangon sanamäärä ! SingleBucket_TotalWordCount Sanojen kokonaismäärä ! SingleBucket_Percentage Osuus kokonaismäärästä ! SingleBucket_WordTable Sanataulukko sangolle nimeltä %s ! SingleBucket_Message1 Tähdellä (*) merkittyjä sanoja on käytetty luokitteluun tämän istunnon aikana. Napsauta sanaa nähdäksesi sen esiintymistodennäköisyyden kaikissa sangoissa. ! SingleBucket_Unique %s erillistä sanaa ! ! Session_Title POPFile-istunto vanhentunut ! Session_Error POPFile-instuntosi on vanhentunut. Tämä voi johtua siitä, että olet käynnistänyt POPFilen uudelleen niin, että selaimesi oli päällä. Napsauta ylhäällä olevia linkkejä jatkaaksesi POPFilen käyttöä. ! ! Header_MenuSummary This table is the navigation menu which allows access to each of the different pages of the control center. ! History_MainTableSummary This table shows the sender and subject of recently received messages and allows them to be reviewed and reclassified. Clicking on the subject line will show the full message text, along with information about why it was classified as it was. The 'Should be' column allows you to specify which bucket the message belongs in, or to undo that change. The 'Delete' column allows you to delete specific messages from the history if you don't need them anymore. ! History_OpenMessageSummary This table contains the full text of an email message, with the words that are used for classification highlighted according to the bucket that was most relevant for each. ! Bucket_MainTableSummary This table provides an overview of the classification buckets. Each row shows the bucket name, the word count total for that bucket, the actual number of individual words in each bucket, whether the email's subject line will be modified when it gets classified to that bucket, whether to quarantine the messages received in that bucket, and a table to pick the color used in displaying anything related to that bucket in the control center. ! Bucket_StatisticsTableSummary This table provides three sets of statistics on the overall performance of PopFile. The first is how accurate its classification is, the second is how many emails have been classified, and to which buckets, and the third is how many words are in each bucket, and what their relative percentages are. ! Bucket_MaintenanceTableSummary This table contains forms that allow you to create, delete or rename buckets, and to lookup a word in all of the buckets to see its relative probabilities. ! Bucket_AccuracyChartSummary This table graphically represents the accuracy of the email classification. ! Bucket_BarChartSummary This table graphically represents a percentage allocation for each of the different buckets. It is used for both number of emails classified, and total word counts. ! Bucket_LookupResultsSummary This table shows the probabilities associated with any given word of the corpus. For each bucket, it shows the frequency that that word occurs, the probability that it will occur in that bucket, and the overall effect on the score of the bucket if that word exists in an email. ! Bucket_WordListTableSummary This table provides a listing of all the words for a particular bucket, organized by common first letter for each row. ! Magnet_MainTableSummary This table shows the list of magnets that are used to automatically classify email according to fixed rules. Each row shows how the magnet is defined, what bucket it is intended for, and a button to delete the magnet. ! Configuration_MainTableSummary This table contains a number of forms to allow you to control the configuration of PopFile. ! Configuration_InsertionTableSummary This table contains buttons that determine whether or not certain modifications are made to the headers or subject line of the email before it is passed on to the email client. ! Security_MainTableSummary This table provides sets of controls that affect the security of the overall configuration of PopFile, whether it should automatically check for updates to the program, and whether statistics about PopFile's performance should be sent to the central datastore of the program's author for general information. ! Advanced_MainTableSummary This table provides a list of words that PopFile ignores when classifying email due to their relative frequency in email in general. They are organized per row according to the first letter of the words. ! --- 1,263 ---- ! # Copyright (c) 2001-2003 John Graham-Cumming ! ! # Identify the language and character set used for the interface ! LanguageCode fi ! LanguageCharset ISO-8859-15 ! ! # This is used to get the appropriate subdirectory for the manual ! ManualLanguage en ! ! # Common words that are used on their own all over the interface ! Apply Käytä ! On Päällä ! Off Pois päältä ! TurnOn Laita päälle ! TurnOff Laita pois päältä ! Add Lisää ! Remove Poista ! Previous Edellinen ! Next Seuraava ! From Lähettäjä ! Subject Aihe ! Cc Kopio ! Classification Luokitus ! Reclassify Luokittele uudelleen ! Probability Todennäköisyys ! Scores Pistemäärät ! QuickMagnets Pikamagneetit ! Undo Peru ! Close Sulje ! Find Etsi ! Filter Suodata ! Yes Kyllä ! No Ei ! ChangeToYes Vaihda ! ChangeToNo Vaihda ! Bucket Sanko ! Magnet Magneetti ! Delete Poista ! Create Luo ! To Vastaanottaja ! Total Yhteensä ! Rename Nimeä uudelleen ! Frequency Esiintymistiheys ! Probability Todennäköisyys ! Score Pistemäärä ! Lookup Etsi ! Word Sana ! Count Määrä ! Update Päivitä ! ! # The header and footer that appear on every UI page ! Header_Title POPFile hallinta ! Header_Shutdown Sulje POPFile ! Header_History Viestihistoria ! Header_Buckets Sangot ! Header_Configuration Asetukset ! Header_Advanced Erikoisasetukset ! Header_Security Turvallisuusasetukset ! Header_Magnets Magneetit ! ! Footer_HomePage POPFilen kotisivu ! Footer_Manual Käyttöohjeet ! Footer_Forums Keskustelualueet ! Footer_FeedMe Ruoki minua! ! Footer_RequestFeature Pyydä ominaisuutta ! Footer_MailingList Postituslista ! ! Configuration_Error1 Erotusmerkin pitää olla yksittäinen merkki ! Configuration_Error2 Käyttöliittymän porttinumero pitää olla 1:n ja 65535:n väliltä ! Configuration_Error3 POP3-kuunteluportin numero pitää olla 1:n ja 65535:n väliltä ! Configuration_Error4 Sivun koon pitää olla 1:n ja 1000:n väliltä ! Configuration_Error5 Historian päivien määrä pitää olla 1:n ja 366:n väliltä ! Configuration_Error6 TCP aikakatkaisun pitää olla 10:n ja 300:n väliltä ! Configuration_Error7 XML RPC:n kuunteluportti pitää olla 1:n ja 65536:n väliltä. ! Configuration_POP3Port POP3-kuunteluportti ! Configuration_POP3Update POP3-portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_XMLRPCUpdate XML-RPC-portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_XMLRPCPort XML-RPC kuunteluportti ! Configuration_SMTPPort SMTP-kuunteluportti ! Configuration_SMTPUpdate SMTP-portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_NNTPPort NNTP-kuunteluportti ! Configuration_NNTPUpdate NNTP-portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_POP3Separator POP3:n isäntä:portti:käyttäjä erotusmerkki ! Configuration_NNTPSeparator NNTP:n isäntä:portti:käyttäjä erotusmerkki ! Configuration_POP3SepUpdate POP3-erotusmerkiksi vaihdettu %s ! Configuration_NNTPSepUpdate NNTP-erotusmerkiksi vaihdettu %s ! Configuration_UI Käyttöliittymän porttinumero ! Configuration_UIUpdate Käyttöliittymän porttinumeroksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Configuration_History Viestien määrä sivua kohti ! Configuration_HistoryUpdate Viestien määräksi sivua kohti asetettu %s viestiä ! Configuration_Days Viestihistorian päivien lukumäärä ! Configuration_DaysUpdate Viestihistorian päivien lukumääräksi asetettu %s päivää ! Configuration_UserInterface Käyttöliittymä ! Configuration_Skins Ulkonäköasetukset ! Configuration_SkinsChoose Valitse ulkonäkö ! Configuration_Language Kieliasetukset ! Configuration_LanguageChoose Valitse kieli ! Configuration_ListenPorts Kuunnellut portit ! Configuration_HistoryView Viestihistoria ! Configuration_TCPTimeout TCP-yhteyden aikakatkaisu ! Configuration_TCPTimeoutSecs TCP-yhteyden aikakatkaisu sekunteina ! Configuration_TCPTimeoutUpdate TCP-yhteyden aikakatkaisuksi asetettu %s sekuntia ! Configuration_ClassificationInsertion Luokituksen näkyvyys ! Configuration_SubjectLine Aiherivin muuttaminen ! Configuration_XTCInsertion X-Text-Classification -otsikon lisäys ! Configuration_XPLInsertion X-POPFile-Link -otsikon lisäys ! Configuration_Logging Loki ! Configuration_None Pois päältä ! Configuration_ToScreen Ruudulle ! Configuration_ToFile Tiedostoon ! Configuration_ToScreenFile Ruudulle ja tiedostoon ! Configuration_LoggerOutput Kirjaus ! Configuration_GeneralSkins Tavalliset ! Configuration_SmallSkins Pienet ! Configuration_TinySkins Todella pienet ! Configuration_CurrentLogFile <tämänhetkinen lokitiedosto> ! ! Advanced_Error1 Sana '%s' on jo huomiotta jätettävien sanojen listassa ! Advanced_Error2 Huomiotta jätettävät sanat voivat sisältää vain kirjaimia ja numeroita sekä seuraavia merkkejä: "._-@" ! Advanced_Error3 Sana '%s' lisätty huomiotta jätettävien sanojen listaan ! Advanced_Error4 Sana '%s' ei ole huomiotta jätettävien sanojen listassa ! Advanced_Error5 Sana '%s' poistettu huomiotta jätettävien sanojen listasta ! Advanced_StopWords Huomiotta jätettävät sanat ! Advanced_Message1 Seuraavia sanoja ei oteta huomioon viestien luokittelussa siksi koska ne esiintyvät niin usein. ! Advanced_AddWord Lisää sana ! Advanced_RemoveWord Poista sana ! ! History_Filter (Näkyvissä vain sangon <font color="%s">%s</font> sisältö) ! History_FilterBy Filter By ! History_Search (Etsitty aihetta %s) ! History_Title Viimeaikaiset viestit ! History_Jump Siirry viestiin ! History_ShowAll Näytä kaikki ! History_ShouldBe Pitäisi olla ! History_NoFrom Ei lähettäjätietoa ! History_NoSubject Ei aihetta ! History_ClassifyAs Luokittele ! History_MagnetUsed Käytetty magneettia ! History_MagnetBecause <b>Magneettia käytetty</b><p>Viesti luokiteltu sankoon <font color="%s">%s</font> magneetilla %s</p> ! History_ChangedTo Luokitukseksi vaihdettu <font color="%s">%s ! History_Already Viesti on jo uudelleenluokiteltu sankoon <font color="%s">%s</font> ! History_RemoveAll Poista kaikki ! History_RemovePage Poista sivu ! History_Remove Paina tästä poistaaksesi nämä viestit viestihistoriasta ! History_SearchMessage Etsi lähettäjien ja aiheiden joukosta ! History_NoMessages Ei viestejä ! History_ShowMagnet Magneeteilla luokitellut ! History_ShowNoMagnet Magneeteilla luokittelemattomat ! History_Magnet (Näkyvissä vain magneeteilla luokitellut viestit) ! History_NoMagnet (Näkyvissä vain magneeteilla luokittelemattomat viestit) ! History_ResetSearch Peruuta ! ! Password_Title Salasana ! Password_Enter Syötä salasana ! Password_Go Hyväksy ! Password_Error1 Väärä salasana ! ! Security_Error1 Suojattun portti pitää olla 1:n ja 65535:n väliltä ! Security_Stealth Piilotila/Palvelintoiminta ! Security_NoStealthMode Ei (Piilotila) ! Security_ExplainStats Kun tämä asetus on päällä, POPFile lähettää kerran päivässä seuraavat kolme arvoa osoitteeseen www.usethesource.com: bc (sankojen kokonaismäärä), mc (POPFilen luokittelemien viestien määrä) ja ec (luokitteluvirheiden määrä). Näitä tietoja käytetään POPFilen käyttötavoista ja toimintatarkkuudesta kertovien tilastojen laatimiseen. Webpalvelin säilyttää lokitiedostoja noin 5:n päivän ajan, jonka jälkeen ne poistetaan. Minkäänlaista tietoa tilastojen ja IP-osoitteiden välillä ei säilytetä. ! Security_ExplainUpdate Kun tämä asetus on päällä, POPFile lähettää kerran päivässä seuraavat kolme arvoa osoitteeseen www.usethesource.com: ma (POPFilen iso versionumero), mi (POPFilen pieni versionumero) ja bn (POPFilen käännösnumero). POPFile saa vastauksen kuvana, joka näkyy sivun ylälaidassa, kun uusi versio on saatavilla. Webpalvelin säilyttää lokitiedostoja noin 5:n päivän ajan, jonka jälkeen ne poistetaan. Minkäänlaista tietoa päivitystarkistusten ja IP-osoitteiden välillä ei säilytetä. ! Security_PasswordTitle Käyttöliittymän salasana ! Security_Password Salasana ! Security_PasswordUpdate Salasanaksi vaihdettu %s ! Security_AUTHTitle Suojattu tunnistus/AUTH ! Security_SecureServer Suojattu palvelin ! Security_SecureServerUpdate Suojatuksi palvelimeksi asetettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Security_SecurePort Suojattu portti ! Security_SecurePortUpdate Portiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Security_SMTPServer SMTP-ketjupalvelin ! Security_SMTPServerUpdate SMTP-ketjupalvelimeksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Security_SMTPPort SMTP-ketjuportti ! Security_SMTPPortUpdate SMTP-ketjuportiksi vaihdettu %s. Muutos ei tule voimaan ennen POPFilen uudelleenkäynnistystä. ! Security_POP3 Hyväksy POP3-yhteydet muilta koneilta (Vaatii POPFilen uudelleenkäynnistyksen) ! Security_SMTP Hyväksy SMTP-yhteydet muilta koneilta (Vaatii POPFilen uudelleenkäynnistyksen) ! Security_NNTP Hyväksy NNTP-yhteydet muilta koneilta (Vaatii POPFilen uudelleenkäynnistyksen) ! Security_UI Hyväksy HTTP-yhteydet (POPFilen hallinta) muilta koneilta (Vaatii POPFilen uudelleenkäynnistyksen) ! Security_XMLRPC Hyväksy XML-RPC-yhteydet muilta koneilta (Vaatii POPFilen uudelleenkäynnistyksen) ! Security_UpdateTitle Automaattinen päivitystarkistus ! Security_Update Tarkista päivittäin onko POPFilestä tullut uutta versiota. ! Security_StatsTitle Tilastotietojen raportointi ! Security_Stats Lähetä päivittäin tilastotietoja Johnille. ! ! Magnet_Error1 Magneetti '%s' on jo sangossa '%s' ! Magnet_Error2 Uusi magneeetti '%s' on ristiriidassa magneetin '%s' kanssa sangossa '%s' ja voisi aiheuttaa ristiriitaisia tuloksia. Magneettia ei lisätty. ! Magnet_Error3 Uusi magneetti, '%s', luotu sankoon '%s'. ! Magnet_CurrentMagnets Tämänhetkiset magneetit ! Magnet_Message1 Seuraavat magneetit aiheuttavat sen, että viestit luokitellaan aina määriteltyyn sankoon. ! Magnet_CreateNew Luo uusi magneetti ! Magnet_Explanation On kolmenlaisia magneetteja:</b> <ul><li><b>Lähettäjän osoite tai nimi:</b> esimerkiksi "er...@es..." yksittäistä osoitetta varten, <br />"esimerkki.fi" kaikkia niitä varten, joiden osoite päättyy "esimerkki.fi", <br />"Erkki Esimerkki" yksittäistä henkilöä varten ja "Erkki" kaikkia Erkkejä varten</li><li><b>Vastaanottajan osoite tai nimi:</b> Samalla tavoin kuin lähettäjämagneettien kanssa, mutta vastaanottajien osoitteiden kanssa</li><li><b>Sanat aiheessa:</b> esimerkiksi "heipparallaa" kaikkia sellaisia viestejä varten, joiden aiherivillä on sana "heipparallaa".</li></ul> ! Magnet_MagnetType Magneetin tyyppi ! Magnet_Value arvo ! Magnet_Always laitetaan aina sankoon ! ! Bucket_Error1 Sangon nimessä saa olla ainoastaan pieniä kirjaimia a:sta z:aan, sekä merkkejä "-" ja "_" ! Bucket_Error2 Sanko nimeltä %s on jo olemassa ! Bucket_Error3 Luotiin sanko nimeltä %s ! Bucket_Error4 Sangon nimessä pitää olla joitakin merkkejä ! Bucket_Error5 Vaihdettiin sangon %s nimeksi %s ! Bucket_Error6 Poistettiin sanko %s ! Bucket_Title Tiivistelmä ! Bucket_BucketName Sangon nimi ! Bucket_WordCount Sanamäärä ! Bucket_WordCounts Sanamäärät ! Bucket_UniqueWords Erillisiä sanoja ! Bucket_SubjectModification Aiheen muutos ! Bucket_ChangeColor Vaihda väriä ! Bucket_NotEnoughData Ei tarpeeksi tietoa ! Bucket_ClassificationAccuracy Luokittelutarkkuus ! Bucket_EmailsClassified Viestejä luokiteltu ! Bucket_EmailsClassifiedUpper Viestejä luokiteltu ! Bucket_ClassificationErrors Luokitteluvirheitä ! Bucket_Accuracy Tarkkuus ! Bucket_ClassificationCount Luokittelumäärät ! Bucket_ClassificationFP Väärät positiiviset ! Bucket_ClassificationFN Väärät negatiiviset ! Bucket_ResetStatistics Nollaa tilastot ! Bucket_LastReset Viime nollaus ! Bucket_CurrentColor Sangon %s tämänhetkinen väri on %s ! Bucket_SetColorTo Aseta sangon %s väriksi %s ! Bucket_Maintenance Ylläpito ! Bucket_CreateBucket Luo sanko nimeltä ! Bucket_DeleteBucket Poista sanko nimeltä ! Bucket_RenameBucket Muuta sangon ! Bucket_Lookup Etsintä ! Bucket_LookupMessage Etsi sanaa sangoista ! Bucket_LookupMessage2 Etsintätulos sanalle ! Bucket_LookupMostLikely Sana <b>%s</b> esiintyy suurimmalla todennäköisyydellä sangossa <font color="%s">%s</font> ! Bucket_DoesNotAppear <p>Sana <b>%s</b> ei esiinny missään sangossa ! Bucket_DisabledGlobally Poistettu yleisesti käytöstä ! Bucket_To nimeksi ! Bucket_Quarantine Karanteeni ! ! SingleBucket_Title Sangon %s tarkemmat tiedot ! SingleBucket_WordCount Sangon sanamäärä ! SingleBucket_TotalWordCount Sanojen kokonaismäärä ! SingleBucket_Percentage Osuus kokonaismäärästä ! SingleBucket_WordTable Sanataulukko sangolle nimeltä %s ! SingleBucket_Message1 Tähdellä (*) merkittyjä sanoja on käytetty luokitteluun tämän istunnon aikana. Napsauta sanaa nähdäksesi sen esiintymistodennäköisyyden kaikissa sangoissa. ! SingleBucket_Unique %s erillistä sanaa ! SingleBucket_ClearBucket Poista kaikki sanat ! ! Session_Title POPFile-istunto vanhentunut ! Session_Error POPFile-instuntosi on vanhentunut. Tämä voi johtua siitä, että olet käynnistänyt POPFilen uudelleen niin, että selaimesi oli päällä. Napsauta ylhäällä olevia linkkejä jatkaaksesi POPFilen käyttöä. ! ! View_Title Yksittäisen viestin näkymä ! ! Header_MenuSummary Tässä taulukossa on navigointivalikko jonka avulla voit käyttää POPFilen hallinnan eri sivuja. ! History_MainTableSummary Tässä taulukossa näkyy viime aikoina saapuneiden viestien lähettäjät ja aiheet. Viestejä voi sen avulla tutkia ja uudelleenluokitella. Aiherivin napsautuksella näkyy koko vietin teksti, sekä tietoa siitä miksi viesti luokiteltiin niin kuin luokiteltiin. "Pitäisi olla"-sarakkeen avulla voit kertoa mihin sankoon viesti kuuluu, tai kumoa muutoksen. Poista-sarakkeen avulla voit poistaa yksittäisiä viestejä viestihistoriasta, jos et tarvitse niitä enää. ! History_OpenMessageSummary Tässä taulukossa näkyy viestin koko teksti niin, että luokitteluun käytetyt sanat on korostettu sen mukaan mihin sankoon sana todennäköisimmin kuuluu. ! Bucket_MainTableSummary Tässä taulukossa näkyy yleiskuva luokittelusangoista. Joka rivi näyttää sangon nimen, sangon sanamäärän, yksittäisten sanojen määrän, muutetaanko viestin otsikkoa, jos se luokitellaan sankoon, laitetaanko sankoon kuuluvat viestit karanteeniin, sekä sankoon viitatessa käytettävän värin. ! Bucket_StatisticsTableSummary Tässä taulukossa on kolme tilastoa jtka kuvaavat POPFilen tehokkuutta. Ensimmäinen kertoo luokittelutarkkuuden, toinen montako vietiä on luokiteltu ja mihin sankoihin, ja kolmas kertoo montako sanaa kussakin sangossa on, ja montako prosenttia sangon sanojen määrä on kaikista sanoista. ! Bucket_MaintenanceTableSummary Tässä taulukossa on lomakkeita, joiden avulla voit luoda, poistaa ja nimetä sankoja ja etsiä sanaa kaikista sangoista ja tarkastaa sen todennäköisyys niissä. ! Bucket_AccuracyChartSummary Tässä taulukossa näkuu luokittelutarkkuus graafisesti. ! Bucket_BarChartSummary Tässä taulukossa näkyy eri sankojen osuudet kokonaisuudesta. Sitä käytetään sekä luokiteltujen viestien määrän esittämiseen, että sanamäärien esittämiseen. ! Bucket_LookupResultsSummary Tässä taulukossa näkyy sanan esiintymistodennäköisyys kaikissa sanakirjoissa. Se näyttää joka sankoa kohden sanan esiintymistiheyden ja -todennäköisyyden, sekä sanan pistemäärän mikäli se esiintyy viestissä. ! Bucket_WordListTableSummary Tässä taulukossa on sangon sanalista. Lista on järjestetty etukirjaimen mukaan. ! Magnet_MainTableSummary Tässä taulukossa näkyy viestien kiinteään luokitteluun käytettyjen magneettien lista. Joka rivillä näkyy miten magneetti on määritelty, mihin sankoon se on tarkoitettu, ja nappi magneetin poistoa varten. ! Configuration_MainTableSummary Tässä taulukossa on lomakkeita POPFilen asetusten muuttamiseen. ! Configuration_InsertionTableSummary Tässä taulukossa on nappeja, joiden avulla määritellää muutetanko vietin otsikkotietoja tai aihetta ennen kuin se annetaan email-ohjelmalle. ! Security_MainTableSummary Tässä taulukossa on säätöjä, joilla voit vaikuttaa POPFilen turvallisuusasetuksiin, saako POPFile tarkistaa onko uusi versio ilmestynyt, ja saako POPFilen toiminnasta kertovia tilastoja lähettää ohjelman tekijän keskustietokantaan. ! Advanced_MainTableSummary Tässä taulukossa on lista sanoista, jotka POPFile jättää huomiotta niiden yleisyyden takia. Ne on järjestetty aakkosjärjestykseen. |
From: <jgr...@us...> - 2003-05-20 19:59:07
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv14453/windows Modified Files: Makefile installer.nsi Log Message: Make installer and package include otto.gif Index: Makefile =================================================================== RCS file: /cvsroot/popfile/windows/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 20 May 2003 13:35:21 -0000 1.10 --- Makefile 20 May 2003 19:58:55 -0000 1.11 *************** *** 1,7 **** .PHONY: all build ! ifndef POPFILE_VERSION ! $(error POPFILE_VERSION must be defined, run 'make windows' in the engine directory) ! endif POPFILE_WINDOWS_ZIP := popfile-$(POPFILE_VERSION)-windows.zip --- 1,5 ---- .PHONY: all build ! include ..\engine\vars.mak POPFILE_WINDOWS_ZIP := popfile-$(POPFILE_VERSION)-windows.zip Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** installer.nsi 20 May 2003 13:35:22 -0000 1.49 --- installer.nsi 20 May 2003 19:58:56 -0000 1.50 *************** *** 15,19 **** !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.19.0 RC3" !include "MUI.nsh" --- 15,19 ---- !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.19.0RC3" !include "MUI.nsh" *************** *** 222,225 **** --- 222,226 ---- File "..\engine\pix.gif" File "..\engine\black.gif" + File "..\engine\otto.gif" IfFileExists "$INSTDIR\stopwords" stopwords_found |
From: <jgr...@us...> - 2003-05-20 19:58:59
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv14453/engine Modified Files: Makefile Log Message: Make installer and package include otto.gif Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile 5 May 2003 20:40:09 -0000 1.8 --- Makefile 20 May 2003 19:58:55 -0000 1.9 *************** *** 6,10 **** # Copyright (c) 2003 John Graham-Cumming ! export POPFILE_VERSION=0.19.0 .PHONY: test package windows core manual skins --- 6,10 ---- # Copyright (c) 2003 John Graham-Cumming ! include vars.mak .PHONY: test package windows core manual skins *************** *** 27,31 **** $(POPFILE_ZIP): core manual skins ! core: popfile.pl pix.gif black.gif insert.pl Classifier/*.pm POPFile/*.pm Proxy/POP3.pm Proxy/Proxy.pm UI/HT??.pm *.change license rm -f $(POPFILE_ZIP) $(BUILD_ZIP) --- 27,31 ---- $(POPFILE_ZIP): core manual skins ! core: popfile.pl otto.gif pix.gif black.gif insert.pl Classifier/*.pm POPFile/*.pm Proxy/POP3.pm Proxy/Proxy.pm UI/HT??.pm *.change license rm -f $(POPFILE_ZIP) $(BUILD_ZIP) |
From: <jgr...@us...> - 2003-05-20 19:56:41
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv13252 Added Files: otto.gif Log Message: Added otto gif --- NEW FILE: otto.gif --- (This appears to be a binary file; contents omitted.) |
From: <sta...@us...> - 2003-05-20 17:51:41
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1:/tmp/cvs-serv1696 Modified Files: HTML.pm Log Message: fixed minor validation error due to no ALT specifier in otto.gif at page bottom Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.153 retrieving revision 1.154 diff -C2 -d -r1.153 -r1.154 *** HTML.pm 14 May 2003 09:12:13 -0000 1.153 --- HTML.pm 20 May 2003 17:51:34 -0000 1.154 *************** *** 648,652 **** $result .= "<a class=\"bottomLink\" href=\"http://sourceforge.net/docman/display_doc.php?docid=14421&group_id=63137\">FAQ</a><br>\n"; ! $result .= "</td><td class=\"footerBody\">\n<a class=\"bottomLink\" href=\"http://popfile.sourceforge.net/\"><img src=\"otto.gif\" border=\"0\"></a><br>$self->{version_}<br>($time)</td>\n"; $result .= "<td class=\"footerBody\"><a class=\"bottomLink\" href=\"http://sourceforge.net/tracker/index.php?group_id=63137&atid=502959\">$self->{language__}{Footer_RequestFeature}</a><br>\n"; --- 648,652 ---- $result .= "<a class=\"bottomLink\" href=\"http://sourceforge.net/docman/display_doc.php?docid=14421&group_id=63137\">FAQ</a><br>\n"; ! $result .= "</td><td class=\"footerBody\">\n<a class=\"bottomLink\" href=\"http://popfile.sourceforge.net/\"><img src=\"otto.gif\" border=\"0\" alt=\"\"></a><br>$self->{version_}<br>($time)</td>\n"; $result .= "<td class=\"footerBody\"><a class=\"bottomLink\" href=\"http://sourceforge.net/tracker/index.php?group_id=63137&atid=502959\">$self->{language__}{Footer_RequestFeature}</a><br>\n"; |
From: <jgr...@us...> - 2003-05-20 13:35:26
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv32491 Modified Files: Makefile installer.nsi Log Message: Update installer to show RC3; improve Makefile so that it warns if POPFILE_VERSION not set Index: Makefile =================================================================== RCS file: /cvsroot/popfile/windows/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 5 May 2003 20:40:10 -0000 1.9 --- Makefile 20 May 2003 13:35:21 -0000 1.10 *************** *** 1,4 **** --- 1,8 ---- .PHONY: all build + ifndef POPFILE_VERSION + $(error POPFILE_VERSION must be defined, run 'make windows' in the engine directory) + endif + POPFILE_WINDOWS_ZIP := popfile-$(POPFILE_VERSION)-windows.zip BUILD_ZIP=../engine/wzzip -P $(POPFILE_WINDOWS_ZIP) -a $^ Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** installer.nsi 20 May 2003 11:13:42 -0000 1.48 --- installer.nsi 20 May 2003 13:35:22 -0000 1.49 *************** *** 15,19 **** !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.19.0 RC2" !include "MUI.nsh" --- 15,19 ---- !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.19.0 RC3" !include "MUI.nsh" |
From: <xue...@us...> - 2003-05-20 11:13:45
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv17366 Modified Files: installer.nsi Log Message: Use an alternative method to display the release notes if notepad.exe cannot be found. Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** installer.nsi 20 May 2003 01:10:54 -0000 1.47 --- installer.nsi 20 May 2003 11:13:42 -0000 1.48 *************** *** 180,192 **** !insertmacro MUI_INSTALLOPTIONS_EXTRACT "ioB.ini" - SearchPath $R0 notepad.exe - StrCmp $R0 "" skip_release_notes - File /oname=$PLUGINSDIR\release.txt "..\engine\v0.19.0.change" MessageBox MB_YESNO "Display POPFile Release Notes ?$\r$\n$\r$\n\ ! 'Yes' recommended if you are upgrading." IDNO skip_release_notes ExecWait 'notepad.exe "$PLUGINSDIR\release.txt"' ! skip_release_notes: FunctionEnd --- 180,195 ---- !insertmacro MUI_INSTALLOPTIONS_EXTRACT "ioB.ini" File /oname=$PLUGINSDIR\release.txt "..\engine\v0.19.0.change" MessageBox MB_YESNO "Display POPFile Release Notes ?$\r$\n$\r$\n\ ! 'Yes' recommended if you are upgrading." IDNO exit ! SearchPath $R0 notepad.exe ! StrCmp $R0 "" use_file_association ExecWait 'notepad.exe "$PLUGINSDIR\release.txt"' + GoTo exit + + use_file_association: + ExecShell "open" "$PLUGINSDIR\release.txt" ! exit: FunctionEnd |
From: <xue...@us...> - 2003-05-20 01:10:57
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv22128 Modified Files: installer.nsi Log Message: Correct a minor typo in a MUI "define". Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** installer.nsi 20 May 2003 00:12:13 -0000 1.46 --- installer.nsi 20 May 2003 01:10:54 -0000 1.47 *************** *** 52,56 **** !define MUI_SPECIALBITMAP "special.bmp" !define MUI_HEADERBITMAP "hdr-right.bmp" ! !define mUI_HEADERBITMAP_RIGHT !define MUI_WELCOMEPAGE --- 52,56 ---- !define MUI_SPECIALBITMAP "special.bmp" !define MUI_HEADERBITMAP "hdr-right.bmp" ! !define MUI_HEADERBITMAP_RIGHT !define MUI_WELCOMEPAGE |
From: <xue...@us...> - 2003-05-20 00:42:16
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv32651 Modified Files: hdr-left.bmp hdr-right.bmp special.bmp Log Message: Replaced 24-bit image with 8-bit image. Index: hdr-left.bmp =================================================================== RCS file: /cvsroot/popfile/windows/hdr-left.bmp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvslfmLxi and /tmp/cvsZATMDj differ Index: hdr-right.bmp =================================================================== RCS file: /cvsroot/popfile/windows/hdr-right.bmp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrdqeZb and /tmp/cvsMewGEd differ Index: special.bmp =================================================================== RCS file: /cvsroot/popfile/windows/special.bmp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs8kOqxc and /tmp/cvscT0dfi differ |
From: <xue...@us...> - 2003-05-20 00:12:18
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv14199 Modified Files: installer.nsi Log Message: Now using "Otto" as branding image on the Welcome & Finish pages and at the top of the other pages. Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** installer.nsi 15 May 2003 12:23:21 -0000 1.45 --- installer.nsi 20 May 2003 00:12:13 -0000 1.46 *************** *** 47,50 **** --- 47,57 ---- !define MUI_CUSTOMPAGECOMMANDS + ; The "Special" bitmap appears on the "Welcome" and "Finish" pages, + ; the "Header" bitmap appears on the other pages of the installer. + + !define MUI_SPECIALBITMAP "special.bmp" + !define MUI_HEADERBITMAP "hdr-right.bmp" + !define mUI_HEADERBITMAP_RIGHT + !define MUI_WELCOMEPAGE !define MUI_LICENSEPAGE |
From: <xue...@us...> - 2003-05-20 00:09:13
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv11636 Added Files: special.bmp Log Message: Bitmap used for the Welcome and Finish pages. --- NEW FILE: special.bmp --- (This appears to be a binary file; contents omitted.) |