From 57f0e60174a97bde42599ffcf609356dac9e244b Mon Sep 17 00:00:00 2001 From: philipdexter Date: Tue, 12 Mar 2013 10:18:59 -0400 Subject: [PATCH 1/2] fixed installation github url --- README.md | 3 +-- README.tpl.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b755bd4..2d46c94 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ For examples how it works, take a look at the __main__.py.dist file with some ex To install it, follow these steps: cd ~/.config/i3status/ - git clone git@github.com:janoliver/i3pystatus contrib + git clone git@github.com:enkore/i3pystatus contrib cd contrib/i3pystatus cp __main__.py.dist __main__.py @@ -371,4 +371,3 @@ a python class that can be registered with the `I3statusHandler` class. Also don forget to add yourself to the LICENSE file. **Patches and pull requests are very welcome :-)** - diff --git a/README.tpl.md b/README.tpl.md index d742d69..dbce4fc 100644 --- a/README.tpl.md +++ b/README.tpl.md @@ -14,7 +14,7 @@ For examples how it works, take a look at the __main__.py.dist file with some ex To install it, follow these steps: cd ~/.config/i3status/ - git clone git@github.com:janoliver/i3pystatus contrib + git clone git@github.com:enkore/i3pystatus contrib cd contrib/i3pystatus cp __main__.py.dist __main__.py From 68e93008703c7d0aaf55b49f501389eb55c926fc Mon Sep 17 00:00:00 2001 From: philipdexter Date: Tue, 12 Mar 2013 11:52:18 -0400 Subject: [PATCH 2/2] changed default port in imap to 993 --- i3pystatus/mail/imap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/mail/imap.py b/i3pystatus/mail/imap.py index db15433..154d2cf 100644 --- a/i3pystatus/mail/imap.py +++ b/i3pystatus/mail/imap.py @@ -20,7 +20,7 @@ class IMAP(Backend): ) required = ("host", "username", "password") - port = 143 + port = 993 ssl = False imap_class = imaplib.IMAP4