diff --git a/OpenChange/MAPIStoreAuthenticator.h b/OpenChange/MAPIStoreAuthenticator.h index fc41d25d1..ce88a60be 100644 --- a/OpenChange/MAPIStoreAuthenticator.h +++ b/OpenChange/MAPIStoreAuthenticator.h @@ -46,6 +46,9 @@ forURL: (NSURL *) server forceRenew: (BOOL) renew; +- (NSString *) passwordInContext: (WOContext *) context; + + @end #endif /* MAPISTOREAUTHENTICATOR_H */ diff --git a/OpenChange/MAPIStoreAuthenticator.m b/OpenChange/MAPIStoreAuthenticator.m index c3174a615..41e4ed081 100644 --- a/OpenChange/MAPIStoreAuthenticator.m +++ b/OpenChange/MAPIStoreAuthenticator.m @@ -72,4 +72,8 @@ return imapPassword; } +- (NSString *) passwordInContext: (WOContext *) context +{ + return password; +} @end