summaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-21 13:05:43 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-21 13:18:39 +0200
commit946e89cd7a3963b58712f38dd1c9df51f74172e0 (patch)
tree5fd90aea4a2d2839d83941869a37a56419222363 /accounts
parent1f0bc11f4fe1fb96d25f88fc01c7300e700a82b8 (diff)
downloadkube-946e89cd7a3963b58712f38dd1c9df51f74172e0.tar.gz
kube-946e89cd7a3963b58712f38dd1c9df51f74172e0.zip
Added text to gmail account to tell how to enable imap access
Diffstat (limited to 'accounts')
-rw-r--r--accounts/gmail/package/contents/ui/GmailSettings.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/accounts/gmail/package/contents/ui/GmailSettings.qml b/accounts/gmail/package/contents/ui/GmailSettings.qml
index 39e1b307..86ea966a 100644
--- a/accounts/gmail/package/contents/ui/GmailSettings.qml
+++ b/accounts/gmail/package/contents/ui/GmailSettings.qml
@@ -57,6 +57,22 @@ Item {
57 rowSpacing: Kube.Units.largeSpacing 57 rowSpacing: Kube.Units.largeSpacing
58 58
59 Kube.Label { 59 Kube.Label {
60 text: "Please note that GMail requires you to configure your account to allow IMAP connections from Kube:
61<ol type=''>
62<li> See <a href='https://support.google.com/mail/answer/7126229'>https://support.google.com/mail/answer/7126229</a> to configure your account to allow IMAP connections.
63<li> Visit <a href='https://myaccount.google.com/lesssecureapps'>https://myaccount.google.com/lesssecureapps</a> and enable the setting to allow Kube to connect to your account."
64 Layout.alignment: Qt.AlignCenter
65 Layout.columnSpan: 2
66 onLinkActivated: Qt.openUrlExternally(link)
67 textFormat: Text.StyledText
68 MouseArea {
69 anchors.fill: parent
70 acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Text
71 cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
72 }
73 }
74
75 Kube.Label {
60 text: "Title of Account" 76 text: "Title of Account"
61 Layout.alignment: Qt.AlignRight 77 Layout.alignment: Qt.AlignRight
62 } 78 }