(
credentials: &EmailAccountCredentials,
timeout: Duration,
)
| 206 | } |
| 207 | |
| 208 | pub fn validate_credentials_blocking( |
| 209 | credentials: &EmailAccountCredentials, |
| 210 | timeout: Duration, |
| 211 | ) -> Result<(), EmailServiceError> { |
| 212 | validate_imap_login_blocking(credentials, timeout) |
| 213 | } |
| 214 | |
| 215 | pub async fn get_message_content( |
| 216 | &self, |
nothing calls this directly
no test coverage detected