spamcup-users Mailing List for Spamcup (Page 13)
Status: Abandoned
Brought to you by:
toniw
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(3) |
Jun
(3) |
Jul
(32) |
Aug
(8) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(6) |
Feb
|
Mar
(1) |
Apr
(6) |
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(4) |
Nov
(2) |
Dec
(5) |
2007 |
Jan
(5) |
Feb
(6) |
Mar
(6) |
Apr
(13) |
May
(6) |
Jun
(11) |
Jul
(66) |
Aug
(59) |
Sep
(40) |
Oct
(12) |
Nov
(10) |
Dec
(9) |
2008 |
Jan
(10) |
Feb
(5) |
Mar
(32) |
Apr
(25) |
May
(12) |
Jun
(3) |
Jul
(32) |
Aug
(8) |
Sep
(7) |
Oct
(6) |
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2004-07-01 19:45:14
|
Patches item #981857, was opened at 2004-06-29 13:21 Message generated for change (Settings changed) made by toniw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576915&aid=981857&group_id=85670 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Paul Molensky (molensky) Assigned to: Nobody/Anonymous (nobody) Summary: No such field 'max' at /usr/local/sbin/spamcup.pl line 349 Initial Comment: SC recently changed the layout of their site. In the HTML-source, the FORM-tag is now wrapped around multiple lines. If you change part of a line in the spamcup.pl at line 308, it again works: WAS: $res->content =~ /(\<form action.*? name=\sendreport\\>.*?\<\/form\>)/sgi; BECOMES: $res->content =~ /(\<form action[^>] +name=\sendreport\\>.*?\<\/form\>)/sgi; the first '.*?' is changed to '[^>]' (leave out the quotes, include the brackets) ---------------------------------------------------------------------- Comment By: Grant Della Vecchia (grantdv) Date: 2004-06-30 20:12 Message: Logged In: YES user_id=601281 It worked like a charm! Good job! ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2004-06-30 00:52 Message: Logged In: NO Thanks Paul - works great. Cheers :) ---------------------------------------------------------------------- Comment By: Paul Molensky (molensky) Date: 2004-06-29 14:58 Message: Logged In: YES user_id=1028193 Oeps, forgot something: don't forget the +-sign after '[^>]' ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576915&aid=981857&group_id=85670 |
From: SourceForge.net <no...@so...> - 2004-07-01 19:43:59
|
Patches item #941235, was opened at 2004-04-24 13:14 Message generated for change (Comment added) made by toniw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576915&aid=941235&group_id=85670 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Paul Molensky (molensky) Assigned to: Nobody/Anonymous (nobody) Summary: uninitialized value at line 367 Initial Comment: The error I saw in using SpamCup was: Use of uninitialized value in string eq at /usr/local/bin/spamcup.pl line 367. In line 367, the code checkes if a checkbox if ticked. If a checkbox is unset, it does not equal 'off' but undefined. # if ($send eq 'on') { # $willsend .= "\t$master \t($info)\n"; # } # else { # $wontsend .= "\t$master \t($info)\n"; # } if (!defined($send) || $send ne 'on') { $wontsend .= "\t$master \t($info)\n"; } else { $willsend .= "\t$master \t($info)\n"; } ---------------------------------------------------------------------- >Comment By: Toni Willberg (toniw) Date: 2004-07-01 22:43 Message: Logged In: YES user_id=190645 fixed in cvs by adding just "if defined" for $send before using it's value ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576915&aid=941235&group_id=85670 |
From: SourceForge.net <no...@so...> - 2004-07-01 19:21:07
|
Bugs item #981811, was opened at 2004-06-29 10:59 Message generated for change (Comment added) made by toniw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 9 Submitted By: Nobody/Anonymous (nobody) Assigned to: Toni Willberg (toniw) Summary: No such field 'max' at /usr/local/sbin/spamcup.pl line 349 Initial Comment: I am currently getting this error "No such field 'max' at /usr/local/sbin/spamcup.pl line 349" This is the part of the code # how many recepients for reports my $max = $form->value("max"); I wonder if SpamCop.net have changed something as it was working this morning okay. Hope fixed has I find this very handy. It is a great script :) ---------------------------------------------------------------------- >Comment By: Toni Willberg (toniw) Date: 2004-07-01 22:21 Message: Logged In: YES user_id=190645 fixed in cvs, I'll release new version soon ---------------------------------------------------------------------- Comment By: john (johnwg47) Date: 2004-07-01 05:29 Message: Logged In: YES user_id=1033104 I wish Toni\W would put out new script. A few patches since 1.06 which I havn't been able to apply - running windows. ---------------------------------------------------------------------- Comment By: Ike Bottema (ikeb) Date: 2004-07-01 02:27 Message: Logged In: YES user_id=826647 Apparently SpamCop has rewritten it's web interface. See http://computercops.biz/postp227840.html#227840. ---------------------------------------------------------------------- Comment By: Toni Willberg (toniw) Date: 2004-06-30 23:45 Message: Logged In: YES user_id=190645 If someone has a fix for this, please submit here. I'm a bit busy at the moment... ---------------------------------------------------------------------- Comment By: Paul Molensky (molensky) Date: 2004-06-29 13:22 Message: Logged In: YES user_id=1028193 See a solution at http://sourceforge.net/tracker/index.php? func=detail&aid=981857&group_id=85670&atid=576915 ---------------------------------------------------------------------- Comment By: LoOoD (loood) Date: 2004-06-29 11:53 Message: Logged In: YES user_id=1009311 same thing happened to me ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 |
From: SourceForge.net <no...@so...> - 2004-07-01 02:29:06
|
Bugs item #981811, was opened at 2004-06-29 17:59 Message generated for change (Comment added) made by johnwg47 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 Category: None Group: None Status: Open Resolution: None Priority: 9 Submitted By: Nobody/Anonymous (nobody) Assigned to: Toni Willberg (toniw) Summary: No such field 'max' at /usr/local/sbin/spamcup.pl line 349 Initial Comment: I am currently getting this error "No such field 'max' at /usr/local/sbin/spamcup.pl line 349" This is the part of the code # how many recepients for reports my $max = $form->value("max"); I wonder if SpamCop.net have changed something as it was working this morning okay. Hope fixed has I find this very handy. It is a great script :) ---------------------------------------------------------------------- Comment By: john (johnwg47) Date: 2004-07-01 12:29 Message: Logged In: YES user_id=1033104 I wish Toni\W would put out new script. A few patches since 1.06 which I havn't been able to apply - running windows. ---------------------------------------------------------------------- Comment By: Ike Bottema (ikeb) Date: 2004-07-01 09:27 Message: Logged In: YES user_id=826647 Apparently SpamCop has rewritten it's web interface. See http://computercops.biz/postp227840.html#227840. ---------------------------------------------------------------------- Comment By: Toni Willberg (toniw) Date: 2004-07-01 06:45 Message: Logged In: YES user_id=190645 If someone has a fix for this, please submit here. I'm a bit busy at the moment... ---------------------------------------------------------------------- Comment By: Paul Molensky (molensky) Date: 2004-06-29 20:22 Message: Logged In: YES user_id=1028193 See a solution at http://sourceforge.net/tracker/index.php? func=detail&aid=981857&group_id=85670&atid=576915 ---------------------------------------------------------------------- Comment By: LoOoD (loood) Date: 2004-06-29 18:53 Message: Logged In: YES user_id=1009311 same thing happened to me ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 |
From: SourceForge.net <no...@so...> - 2004-06-30 23:27:43
|
Bugs item #981811, was opened at 2004-06-29 03:59 Message generated for change (Comment added) made by ikeb You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 Category: None Group: None Status: Open Resolution: None Priority: 9 Submitted By: Nobody/Anonymous (nobody) Assigned to: Toni Willberg (toniw) Summary: No such field 'max' at /usr/local/sbin/spamcup.pl line 349 Initial Comment: I am currently getting this error "No such field 'max' at /usr/local/sbin/spamcup.pl line 349" This is the part of the code # how many recepients for reports my $max = $form->value("max"); I wonder if SpamCop.net have changed something as it was working this morning okay. Hope fixed has I find this very handy. It is a great script :) ---------------------------------------------------------------------- Comment By: Ike Bottema (ikeb) Date: 2004-06-30 19:27 Message: Logged In: YES user_id=826647 Apparently SpamCop has rewritten it's web interface. See http://computercops.biz/postp227840.html#227840. ---------------------------------------------------------------------- Comment By: Toni Willberg (toniw) Date: 2004-06-30 16:45 Message: Logged In: YES user_id=190645 If someone has a fix for this, please submit here. I'm a bit busy at the moment... ---------------------------------------------------------------------- Comment By: Paul Molensky (molensky) Date: 2004-06-29 06:22 Message: Logged In: YES user_id=1028193 See a solution at http://sourceforge.net/tracker/index.php? func=detail&aid=981857&group_id=85670&atid=576915 ---------------------------------------------------------------------- Comment By: LoOoD (loood) Date: 2004-06-29 04:53 Message: Logged In: YES user_id=1009311 same thing happened to me ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 |
From: Toni W. <to...@ik...> - 2004-06-30 20:56:45
|
Hi spamcup-users subscribers. All bugs from sf.net's bug tracker for Spamcup are being forwarded to this list from now on. If you feel his is annoying, filter the messages to separate folder on your side. The bug messages have the format of the following example: Subject: [ spamcup-Bugs-981811 ] No such field 'max' at /usr/local/sbin/spamcup.pl line 349 - Toni ps. if someone has the fix for that "no such field 'max'" bug, please submit a patch to the list, thanks! |
From: SourceForge.net <no...@so...> - 2004-06-30 20:45:26
|
Bugs item #981811, was opened at 2004-06-29 10:59 Message generated for change (Comment added) made by toniw You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 Category: None Group: None Status: Open Resolution: None Priority: 9 Submitted By: Nobody/Anonymous (nobody) Assigned to: Toni Willberg (toniw) Summary: No such field 'max' at /usr/local/sbin/spamcup.pl line 349 Initial Comment: I am currently getting this error "No such field 'max' at /usr/local/sbin/spamcup.pl line 349" This is the part of the code # how many recepients for reports my $max = $form->value("max"); I wonder if SpamCop.net have changed something as it was working this morning okay. Hope fixed has I find this very handy. It is a great script :) ---------------------------------------------------------------------- >Comment By: Toni Willberg (toniw) Date: 2004-06-30 23:45 Message: Logged In: YES user_id=190645 If someone has a fix for this, please submit here. I'm a bit busy at the moment... ---------------------------------------------------------------------- Comment By: Paul Molensky (molensky) Date: 2004-06-29 13:22 Message: Logged In: YES user_id=1028193 See a solution at http://sourceforge.net/tracker/index.php? func=detail&aid=981857&group_id=85670&atid=576915 ---------------------------------------------------------------------- Comment By: LoOoD (loood) Date: 2004-06-29 11:53 Message: Logged In: YES user_id=1009311 same thing happened to me ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=576913&aid=981811&group_id=85670 |
From: <ben...@id...> - 2004-05-25 08:09:31
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: <joh...@ya...> - 2004-05-02 05:38:20
|
Hi, I stupidly put my email address in a question I asked at your site and I cant see how to edit it. Would you delete address for me - at this page. http://sourceforge.net/tracker/index.php?func=detail&atid=576915&aid=900781&group_id=85670 Thanks John. --------------------------------- Find local movie times and trailers on Yahoo! Movies. |
From: <joh...@ya...> - 2004-05-02 05:03:39
|
I am running win98se using spamcup for spam reporting to spamcop. When spamcup comes upon a spam that the mail provider has resolved with spamcop - spamcup I think tries to report it again, then I get a message that this spam has already been reported and spamcup stops reporting. I may have informed you about this before,Icouldnt remember. Cheers John. --------------------------------- Find local movie times and trailers on Yahoo! Movies. |
From: Toni W. <to...@ik...> - 2004-04-26 07:29:37
|
On Fri, 2004-04-23 at 13:04, Toni Willberg wrote: > I'll look at this issue this weekend, and try to release a fixed version > that supports mole-mode too. Hi again. I had quite a busy weekend, didn't have time to look at this issue. I'll try to find some time this week. - Toni |
From: Toni W. <to...@ik...> - 2004-04-23 10:05:08
|
On Fri, 2004-04-23 at 12:54, john garrod wrote: > What I would like to know now is what changes to make to spamcup > script for mole reporting to spamcop, anyone know? John. Hi John. I'll look at this issue this weekend, and try to release a fixed version that supports mole-mode too. Thanks for the report! - Toni |
From: <joh...@ya...> - 2004-04-23 09:55:05
|
I am running win98se and using spamcup for spamcop reporting. My spamcup script is changed as follows :- Getopt::ArgvFile qw(argvFile); argvFile(startupFilename => '.spamcup', home=> "1" ); to #tx-rkl#Getopt::ArgvFile qw(argvFile); #tx-rkl#argvFile(startupFilename => '.spamcup', home=> "1" ); What I would like to know now is what changes to make to spamcup script for mole reporting to spamcop, anyone know? John. --------------------------------- Find local movie times and trailers on Yahoo! Movies. |
From: John G. <jo...@do...> - 2004-04-16 02:50:42
|
Hi, I have Win98SE, can I run spamcup and automatically report spam to spamcop. Thanks John. |