diff options
author | Kali Kaneko <kali@leap.se> | 2016-04-07 09:54:55 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-07 09:54:55 -0400 |
commit | 861b16d49e81a30be9386d529d4a3339d91ff30c (patch) | |
tree | 1a364cb187b20e1d1a855e83690def8ca6a0aba7 /src/leap/mail/smtp | |
parent | 727a14957928a4d6f99d70a5a8521a6fe183c70d (diff) |
[feature] use same token for imap/stmp authentication
This greatly simplifies the handling of the password in the thunderbird
extension.
Related: #6041
Diffstat (limited to 'src/leap/mail/smtp')
-rw-r--r-- | src/leap/mail/smtp/gateway.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/mail/smtp/gateway.py b/src/leap/mail/smtp/gateway.py index cb1b060..bd0be6f 100644 --- a/src/leap/mail/smtp/gateway.py +++ b/src/leap/mail/smtp/gateway.py @@ -144,8 +144,10 @@ class LocalSMTPRealm(object): class SMTPTokenChecker(LocalSoledadTokenChecker): - """A credentials checker that will lookup a token for the SMTP service.""" - service = 'smtp' + """A credentials checker that will lookup a token for the SMTP service. + For now it will be using the same identifier than IMAPTokenChecker""" + + service = 'mail_auth' # TODO besides checking for token credential, # we could also verify the certificate here. |