summarylogtreecommitdiffstats
path: root/galx.patch
diff options
context:
space:
mode:
authorBrian Bidulock2015-06-10 04:10:50 -0600
committerBrian Bidulock2015-06-10 04:10:50 -0600
commit21f3fcb58b1681fae5781a7e8c864ab1f95a0fea (patch)
tree97d07d352c49f615368ca3368b3c9e0ab086f47a /galx.patch
downloadaur-21f3fcb58b1681fae5781a7e8c864ab1f95a0fea.tar.gz
initial version
Diffstat (limited to 'galx.patch')
-rw-r--r--galx.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/galx.patch b/galx.patch
new file mode 100644
index 000000000000..87c35bb5ae1a
--- /dev/null
+++ b/galx.patch
@@ -0,0 +1,20 @@
+--- checkgmail-47/checkgmail 2011-09-08 09:42:57.066218240 +0200
++++ checkgmail-47.patched/checkgmail 2011-09-08 17:13:06.990218240 +0200
+@@ -920,7 +920,8 @@
+ print "Error: No GALX input field found\n";
+ return "Error: No GALX input field found";
+ }
+- $post_galx = URI_escape(URI_unescape($1));
++ my $galx = URI_unescape($1);
++ $post_galx = URI_escape($galx);
+
+ # Find the data to post
+ my $post_data;
+@@ -936,6 +937,7 @@
+ my $post_req = HTTP::Request->new('POST' => "https://www.google.com/accounts/ServiceLoginAuth?service=mail");
+ $post_req->content_type('application/x-www-form-urlencoded');
+ $post_req->content($post_data);
++ $post_req->header('Cookie' => "GALX=$galx");
+ my $post_response = $ua->request($post_req);
+ if ($post_response->is_error) {
+ my $code = $response->code;