diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index d030c77c04..b4a592d03c 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +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 + 2004-04-12 Chris Toshok <toshok@ximian.com> * gui/widgets/eab-popup-control.c (email_menu_add_option): treat 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) |