Account suspension isn't actually suspension
- Locked due to inactivity on Nov 25, '16 3:54am
Thread Topic: Account suspension isn't actually suspension
-
So after some testing I can conclude that it simply means that your post time is above a certain threshold, you can still post occasionally.
-
This threshold is < 14 hours
-
that's
um
that's a pretty impressive threshold
f--- -
I don't know the exact threshold, its just less then however long I slept
-
oh
alrighty
still impressive tho -
but its interesting to know its not actually suspension!
-
or it might have something to do with me logging in from something else
-
I'm gonna test that
Firing up tor -
Yeah, if IP changes you can post again
-
So the implementation of the post delay to my knowledge
Perhaps its a bug? idk
func post(identity, ip, content){
last=getLastPostTimestamp(ip);
if(last == nil or current-last >= identity.postTime){
sendPost(identity, content);
} else {
waitUp();
}
} -
So changing proxies for every post would suck but y'know, if you REALLY want to post while suspended or long post time do that.
-
PROPOSED NEW CHANGE
func post(identity, ip, content){
ipLast=getLastPostTimestamp(ip);
accountLast = getLastPostTimestamp(identity)
if((ipLast == nil or current - ipLast >= identity.postTime) and ( accountLast == nil or current-accountLast >= identity.postTime)){
sendPost(identity, content);
} else {
waitUp();
}
}
This way last post is linked with the user accounts and the ip address, only if both are past the post time is the post submitted
This thread is locked, therefore no new posts can be made.