summarylogtreecommitdiffstats
path: root/galx.patch
diff options
context:
space:
mode:
authorBrian Bidulock2021-09-20 23:22:45 -0600
committerBrian Bidulock2021-09-20 23:22:45 -0600
commitdbc9a523143d8c853fc26906c04da90ed08534a7 (patch)
treee2237584e45605b0abc6755b5c81c456ee957f6c /galx.patch
parent21f3fcb58b1681fae5781a7e8c864ab1f95a0fea (diff)
downloadaur-checkgmail.tar.gz
uppkg
Diffstat (limited to 'galx.patch')
-rw-r--r--galx.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/galx.patch b/galx.patch
deleted file mode 100644
index 87c35bb5ae1a..000000000000
--- a/galx.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- 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;