aboutsummaryrefslogtreecommitdiff
path: root/ayatanawebmail
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2020-08-20 13:48:18 +0200
committerRobert Tari <robert@tari.in>2020-08-20 13:48:18 +0200
commit71e54c50543d16580f0b18b89bf467629682aafe (patch)
tree425f4042d408fee602de8b14d5c683ead31463fd /ayatanawebmail
parent4cdf023a527984347c4269d2c9b64e0f556f333d (diff)
downloadayatana-webmail-71e54c50543d16580f0b18b89bf467629682aafe.tar.gz
ayatana-webmail-71e54c50543d16580f0b18b89bf467629682aafe.tar.bz2
ayatana-webmail-71e54c50543d16580f0b18b89bf467629682aafe.zip
Remove all GMail references
Diffstat (limited to 'ayatanawebmail')
-rwxr-xr-xayatanawebmail/appdata.py4
-rwxr-xr-xayatanawebmail/common.py2
-rwxr-xr-xayatanawebmail/dialog.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/ayatanawebmail/appdata.py b/ayatanawebmail/appdata.py
index aba29f6..8a4c5e1 100755
--- a/ayatanawebmail/appdata.py
+++ b/ayatanawebmail/appdata.py
@@ -10,9 +10,9 @@ APPSHOWSETTINGS = 180603
APPYEAR = '2016'
APPTITLE = 'Ayatana Webmail'
APPDESCRIPTION = 'Webmail notifications and actions for any desktop'
-APPLONGDESCRIPTION = 'Ayatana Webmail is an application that integrates your webmail into MATE, Xfce, LXDE and other environments. It displays notifications about incoming mail, shows the number of unread messages and displays subjects in the Messaging Menu. The Launcher item also has a quicklist that provides quick access to your mail folders (configured for GMail by default). It also allows you to quickly compose a new message. Ayatana Webmail starts automatically, all you have to do is to enter your accounts settings in a configuration dialog.'
+APPLONGDESCRIPTION = 'Ayatana Webmail is an application that integrates your webmail into MATE, Xfce, LXDE and other environments. It displays notifications about incoming mail, shows the number of unread messages and displays subjects in the Messaging Menu. The Launcher item also has a quicklist that provides quick access to your mail folders. It also allows you to quickly compose a new message. Ayatana Webmail starts automatically, all you have to do is to enter your accounts settings in a configuration dialog.'
APPAUTHOR = 'Robert Tari'
APPMAIL = 'robert@tari.in'
APPURL = 'https://tari.in/www/software/ayatana-webmail/'
-APPKEYWORDS = ['ayatanawebmail', 'ayatana-webmail', 'e-mail','notification','gmail','indicator','mate','ayatana']
+APPKEYWORDS = ['ayatanawebmail', 'ayatana-webmail', 'e-mail','notification','indicator','mate','ayatana']
APPDEBUG = []
diff --git a/ayatanawebmail/common.py b/ayatanawebmail/common.py
index 95d3797..cc7c43b 100755
--- a/ayatanawebmail/common.py
+++ b/ayatanawebmail/common.py
@@ -20,7 +20,7 @@ except IOError:
g_oTranslation.install()
-g_dctDefaultURLs = {'Home': 'https://mail.google.com/mail/', 'Compose': 'https://mail.google.com/mail/#compose', 'Inbox': 'https://mail.google.com/mail/#inbox', 'Sent': 'https://mail.google.com/mail/#sent'}
+g_dctDefaultURLs = {'Home': 'https://mail.example.com', 'Compose': 'https://mail.example.com/compose', 'Inbox': 'https://mail.example.com/inbox', 'Sent': 'https://mail.example.com/sent'}
g_oSettings = Gio.Settings.new('org.ayatana.webmail')
g_lstAccounts = []
diff --git a/ayatanawebmail/dialog.py b/ayatanawebmail/dialog.py
index ad4861f..cb3adf7 100755
--- a/ayatanawebmail/dialog.py
+++ b/ayatanawebmail/dialog.py
@@ -172,7 +172,7 @@ class PreferencesDialog(Gtk.Dialog):
oContentArea.add(self.oNotebook)
self.oButtonConnect = self.get_widget_for_response(100)
self.oButtonApply = self.get_widget_for_response(Gtk.ResponseType.APPLY)
- self.lstDicts = [{'Host': 'imap.gmail.com', 'Port': '993', 'Login': '', 'Passwd': '', 'Folders': 'INBOX', 'InboxAppend': '/$MSG_THREAD'}]
+ self.lstDicts = [{'Host': 'imap.example.com', 'Port': '993', 'Login': '', 'Passwd': '', 'Folders': 'INBOX', 'InboxAppend': '/$MSG_THREAD'}]
self.lstDicts[0].update(g_dctDefaultURLs)
self.set_keep_above(True)
self.show_all()
@@ -489,7 +489,7 @@ class PreferencesDialog(Gtk.Dialog):
def onAddAccount(self, btn):
self.updateAccounts()
- self.lstDicts.append({'Host': 'imap.gmail.com', 'Port': '993', 'Login': '', 'Passwd': '', 'Folders': 'INBOX', 'InboxAppend': '/$MSG_THREAD'})
+ self.lstDicts.append({'Host': 'imap.example.com', 'Port': '993', 'Login': '', 'Passwd': '', 'Folders': 'INBOX', 'InboxAppend': '/$MSG_THREAD'})
self.lstDicts[-1].update(g_dctDefaultURLs)
self.sb.set_range(1, len(self.lstDicts))
self.sb.set_value(len(self.lstDicts))