[03:22:55] One thing I like in RT (and trac?) is that I can cc anyone by email, whether they're already registered or not [04:12:51] Ward Cunningham is everywhere, he invented the term "technical debt"?! https://en.wikipedia.org/wiki/Technical_debt#Consequences [04:17:36] * comets invents wikicoins :D [04:36:38] I find this situation ridiculous. https://bugzilla.mozilla.org/show_bug.cgi?id=758857#c23 [05:17:49] Nemo_bis: Nice find. [08:25:21] I'm in Norway and the strange thing is, no wm site is presently available.. O_O [08:26:22] Probably a dns-problem.. [09:49:00] add an opendns or similar dns server [13:20:39] hello, [13:21:04] hi, [13:22:37] Hi. [13:54:29] yay! I did template magic with {{#switch:}} [13:54:32] and it seems to work [13:54:36] hope it won't break later [14:27:19] YuviPanda: the /real/ private repo, or labs-private? [14:27:34] andrewbogott: the real private one, where you've to define usernames + emails for icinga [14:27:41] that then get picked up by contactgroups.cfg [14:27:43] bah, stupid colloquey [14:27:46] heh [16:21:19] Hi folks! With whom I should talk about migrating a email (educacao@wikimedia.org) to the otrs? [16:26:48] lestaty, what kind of email is that at the moment? [16:27:09] just an alias that delivers to a bunch of people's accounts? google group...? [16:27:29] a alias to few peoples [16:28:47] I will request a otrs queue, but I think the address need to be "free" before (I think) [16:29:17] Well, to have mail actually delivered there, yes [16:31:49] so, firstly I request the queue or the release of the email Krenair? [16:32:19] I think that bit can be done later. Probably. I asked in -operations because hopefully someone there knows about this. [16:32:32] thanks :) [19:06:07] MaxSem: did you see https://bugzilla.wikimedia.org/show_bug.cgi?id=70712 ? [19:27:22] Nemo_bis, it's for zerowiki only [19:27:58] argh, and meta [19:29:28] Nemo_bis, since yurik;s not here, reverting [19:46:47] MaxSem: thanks [21:50:27] What's limit for how long of a query string you can use in a GET request to wmf servers? [21:51:24] legoktm: Presumably the RfC length [21:51:26] 255? [21:52:01] there's also suhosin.get.max_value_length too right? [21:52:12] * legoktm checks what that is set to [21:52:43] hm, that's not set [21:52:53] let me just test 255 :P [21:53:25] https://en.wikipedia.org/w/api.php?action=parse&text=1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 [21:53:26] works fine [21:53:40] and that's 256 1's [21:55:21] Do we even use suhosin? [21:55:56] query string 255? [21:55:59] are you people kidding, right? [21:56:26] google says 2048 [21:56:29] fun :P [21:56:34] legoktm@terbium:~$ php -v [21:56:34] PHP 5.3.10-1ubuntu3.13+wmf1 with Suhosin-Patch (cli) (built: Jul 23 2014 13:49:15) [21:56:35] it is different per browser/server/etc [21:56:45] HTTP spec does not define it [21:56:46] the query string can be long-ass, in my experience [21:56:51] heh [21:56:53] i'm helpful, eh? [21:57:11] is there an easy way to figure it out besides just testing it? [21:57:18] e.g. firefox has 64k _visibility_ limit, but supports urls longer than that [21:57:27] IE has 2k limit [21:57:27] https://en.wikipedia.org/wiki/Query_string [21:57:41] legoktm: binary search it? :D [21:57:42] basically for pywikibot we're trying to figure out at what length we need to convert our GET requests into POST requests due to query string length [21:57:51] legoktm: Just fucking use post? [21:58:00] that's what we do right now :PPP [21:58:14] LIMIT IS WHERE YOU GET 414!!!! [21:58:43] anyway, the least correct answer is '255' :) [21:58:53] heh [21:59:00] I guess anything < 255 would be even less correct [21:59:03] 255 is maximum host name length I think [21:59:06] so just see if we get a 414 and then resend as post sounds good [21:59:07] we regularly have people breaking their installs with 255 or similar because load.php URLs can't be loaded [22:00:08] I'm not completely insane then for thinking 255... [22:01:50] Nemo_bis: hmm [22:01:58] Nemo_bis: wgResourceLoaderMaxQueryLength [22:02:09] i *knew* there's a config variable for this. [22:02:39] 'false' by default, for "use php limit", though. [22:03:28] hah, there's a env check in the installer. it poops if the max length is under 1024. [22:03:37] MYSTERY SOLVED [22:10:02] Sure, there is [22:10:28] Totally unclear what the effects are in the wild but sometimes tweaking it fixes the issue