tvl-depot/third_party/lieer/send_scope.patch
Vincent Ambo 39aa74ed61 fix(third_party/lieer): Use correct scope for SMTP access
Turns out that for some peculiar reason, the 'send' scope is not
enough to send email and the full 'mail.google.com' scope is required.
2019-12-26 14:06:57 +01:00

13 lines
636 B
Diff

diff --git a/lieer/remote.py b/lieer/remote.py
index 6e3973a..ade1082 100644
--- a/lieer/remote.py
+++ b/lieer/remote.py
@@ -9,7 +9,7 @@ from oauth2client.file import Storage
from pathlib import Path
class Remote:
- SCOPES = 'https://www.googleapis.com/auth/gmail.readonly https://www.googleapis.com/auth/gmail.labels https://www.googleapis.com/auth/gmail.modify'
+ SCOPES = 'https://www.googleapis.com/auth/gmail.readonly https://www.googleapis.com/auth/gmail.labels https://www.googleapis.com/auth/gmail.modify https://mail.google.com/'
APPLICATION_NAME = 'Lieer'
CLIENT_SECRET_FILE = None
authorized = False