summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorDebarshi Ray <debarshir@gnome.org>2014-02-03 14:20:08 +0100
committerDebarshi Ray <debarshir@gnome.org>2014-02-03 15:10:18 +0100
commit2b7f5a73b6a05bdc4634fc0bcba49c714cfa76ef (patch)
treecafca705f0832ad704c33f262d5b5b7fe03c85b2 /data
parentdb3cdb21dade7af7504932a1375744bdef352f36 (diff)
downloadgnome-online-accounts-2b7f5a73b6a05bdc4634fc0bcba49c714cfa76ef.tar.gz
dbus: Add SmtpAuth* to org.gnome.OnlineAccounts.Mail
These are meant to indicate the SASL mechanism used by the SMTP server. Fixes: https://bugzilla.gnome.org/720262
Diffstat (limited to 'data')
-rw-r--r--data/dbus-interfaces.xml35
1 files changed, 34 insertions, 1 deletions
diff --git a/data/dbus-interfaces.xml b/data/dbus-interfaces.xml
index 8ae4ac6..1545ef5 100644
--- a/data/dbus-interfaces.xml
+++ b/data/dbus-interfaces.xml
@@ -3,7 +3,7 @@
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<!--
- Copyright (C) 2011, 2012, 2013 Red Hat, Inc.
+ Copyright (C) 2011, 2012, 2013, 2014 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -478,6 +478,39 @@
-->
<property name="SmtpUseAuth" type="b" access="read"/>
+ <!-- SmtpAuthLogin:
+ @since: 3.12.0
+ Whether LOGIN authentication should be used.
+
+ This indicates whether the server uses the
+ <ulink url="http://msdn.microsoft.com/en-us/library/cc433484(v=EXCHG.80).aspx">
+ LOGIN</ulink> SASL mechanism for SMTP.
+ -->
+ <property name="SmtpAuthLogin" type="b" access="read"/>
+
+ <!-- SmtpAuthPlain:
+ @since: 3.12.0
+ Whether PLAIN authentication should be used.
+
+ This indicates whether the server uses the
+ <ulink url="http://tools.ietf.org/html/rfc4616">PLAIN</ulink>
+ SASL mechanism for SMTP.
+ -->
+ <property name="SmtpAuthPlain" type="b" access="read"/>
+
+ <!-- SmtpAuthXoauth2:
+ @since: 3.12.0
+ Whether XOAUTH2 authentication should be used.
+
+ This indicates whether the server uses the non-standard XOAUTH2
+ SASL mechanism for SMTP. This is implemented by
+ <ulink url="https://developers.google.com/gmail/xoauth2_protocol#the_sasl_xoauth2_mechanism">
+ GMail</ulink> and
+ <ulink url="http://blogs.office.com/2013/09/12/outlook-com-now-has-imap/">
+ Outlook.com</ulink>.
+ -->
+ <property name="SmtpAuthXoauth2" type="b" access="read"/>
+
<!-- SmtpUseSsl:
@since: 3.8.0
Whether SSL should be used.