aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xayatanawebmail/appdata.py4
-rwxr-xr-xayatanawebmail/common.py2
-rwxr-xr-xayatanawebmail/dialog.py4
-rwxr-xr-xdata/usr/share/glib-2.0/schemas/org.ayatana.webmail.gschema.xml8
-rwxr-xr-xdebian/control3
5 files changed, 10 insertions, 11 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))
diff --git a/data/usr/share/glib-2.0/schemas/org.ayatana.webmail.gschema.xml b/data/usr/share/glib-2.0/schemas/org.ayatana.webmail.gschema.xml
index 1fefabb..c90b4a3 100755
--- a/data/usr/share/glib-2.0/schemas/org.ayatana.webmail.gschema.xml
+++ b/data/usr/share/glib-2.0/schemas/org.ayatana.webmail.gschema.xml
@@ -47,22 +47,22 @@
<description>Action to perform when a message is activated.</description>
</key>
<key type="s" name="home">
- <default>'https://mail.google.com/mail/'</default>
+ <default>'https://mail.example.com'</default>
<summary>Home</summary>
<description>URL or command for the "Home" link.</description>
</key>
<key type="s" name="compose">
- <default>'https://mail.google.com/mail/#compose'</default>
+ <default>'https://mail.example.com/compose'</default>
<summary>Compose</summary>
<description>URL or command for the "Compose" link.</description>
</key>
<key type="s" name="inbox">
- <default>'https://mail.google.com/mail/#inbox'</default>
+ <default>'https://mail.example.com/inbox'</default>
<summary>Inbox</summary>
<description>URL or command for the "Inbox" link.</description>
</key>
<key type="s" name="sent">
- <default>'https://mail.google.com/mail/#sent'</default>
+ <default>'https://mail.example.com/sent'</default>
<summary>Sent</summary>
<description>URL or command for the "Sent" link.</description>
</key>
diff --git a/debian/control b/debian/control
index 0d580f5..830640f 100755
--- a/debian/control
+++ b/debian/control
@@ -23,8 +23,7 @@ Description: Webmail notifications and actions for any desktop
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.
+ 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.