Re: They've done it again
David Aspinwall <[email protected]> Wed, 16 Jun 2004 10:36:56 -0700
| Newsgroups | gmane.mail.yosucker.general |
|---|---|
| Message-ID | <[email protected]> |
>>"kogan_s" == Stanislav Kogan <kogan_s-/[email protected]> writes: > Well, I don't have any problems. That is, with the accounts that were > working before the latest interface change. > BTW, does anybody have any problems with certain accounts? [Sorry if you get this twice; I sent it once from the wrong account.] I have one account which still has problems with the 'STEP 3' code in sputnik.pm. There was a 'step 3', which became unnecessary for most accounts, and Vlad put out a pr55 version which disabled that code except for 'old rocketmail accounts' (the code is looking for user names that end with any character followed by 'rm'). That username doesn't end with 'rm', and is a normal yahoo account, but for some reason, it needs the 'step3' code to be in there. My other yahoo accounts all work fine with the recent patches to pr55. I don't know what is different about that account. Anyway, if you have trouble with a particular account, you could try making a copy of the YoSucker code and applying this patch (to the patched pr55).
step3.patch
(text/x-patch, 638 B)
--- ../../YoSucker-pr55patched/lib/sputnik.pm 2004-06-15 11:08:33.000000000 -0700
+++ sputnik.pm 2004-06-16 10:27:07.000000000 -0700
@@ -401,7 +401,7 @@
# This step is no longer necessary for some reason
# (except the old rocketmail accounts)
- if ($class->{config}{USERNAME} =~ /.rm$/) {
+ ##DBA##if ($class->{config}{USERNAME} =~ /.rm$/) {
$host = (split("\/",$location))[0];
$location =~ s/$host//g;
$what = $location;
@@ -416,7 +416,7 @@
$class->{config}{REFERER} = "http://$host$what";
print "." if $class->{config}{DEBUG}; # DEBUG
- }
+ ##DBA##}
###
# STEP 4