|
@ -114,8 +114,8 @@ class Plugin(BasePlugin): |
|
|
def is_available(self): |
|
|
def is_available(self): |
|
|
return True |
|
|
return True |
|
|
|
|
|
|
|
|
def __init__(self, a, b): |
|
|
def __init__(self, parent, config, name) |
|
|
BasePlugin.__init__(self, a, b) |
|
|
BasePlugin.__init__(self, parent, config, name) |
|
|
self.imap_server = self.config.get('email_server', '') |
|
|
self.imap_server = self.config.get('email_server', '') |
|
|
self.username = self.config.get('email_username', '') |
|
|
self.username = self.config.get('email_username', '') |
|
|
self.password = self.config.get('email_password', '') |
|
|
self.password = self.config.get('email_password', '') |
|
@ -215,5 +215,3 @@ class Plugin(BasePlugin): |
|
|
|
|
|
|
|
|
password = str(password_e.text()) |
|
|
password = str(password_e.text()) |
|
|
self.config.set_key('email_password', password) |
|
|
self.config.set_key('email_password', password) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|