diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2004-04-13 13:03:37 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2004-04-13 13:03:37 +0800 |
commit | 1ccb32cd357b433241cd557d42bdf2e221228dab (patch) | |
tree | 7c57aba2dc73576f124506b2a6d3b268a381d3ff /addressbook/gui | |
parent | 46555f409d6bca48658c4318c144909544545c3d (diff) | |
download | gsoc2013-evolution-1ccb32cd357b433241cd557d42bdf2e221228dab.tar.gz gsoc2013-evolution-1ccb32cd357b433241cd557d42bdf2e221228dab.tar.zst gsoc2013-evolution-1ccb32cd357b433241cd557d42bdf2e221228dab.zip |
added a check for new auth type "plain/password" for groupwise in
2004-04-13 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/component/addressbook.c (addressbook_authenicate):
added a check for new auth type "plain/password"
for groupwise in addressbook_authenicate function
svn path=/trunk/; revision=25425
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index 327a20c67a..c7ae59c3c8 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -677,6 +677,8 @@ addressbook_authenticate (EBook *book, gboolean previous_failure, ESource *sourc if (auth && !strcmp ("ldap/simple-binddn", auth)) user = e_source_get_property (source, "binddn"); + else if (auth && !strcmp ("plain/password", auth)) + user = e_source_get_property (source, "user"); else user = e_source_get_property (source, "email_addr"); if (!user) |