Skip to content

Commit

Permalink
release v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-virkus committed Jun 13, 2021
1 parent bf54846 commit 9f9078e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.3.3
- Add easier method to setup a `MailAccount` with manual settings by calling `MailAccount.fromManualSettings()`
or `MailAccount.fromManualSettingsWithAuth()`. This is useful when settings cannot or should not be auto-discovered, for example.

# 1.3.2
- Fix login for IMAP servers that do not define capabilities in their `AUTH`/`LOGIN` response #159

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ Future<void> mailExample() async {
print('discovering settings for $email...');
final config = await Discover.discover(email);
if (config == null) {
// note that you can also directly create an account when
// you cannot autodiscover the settings:
// Compare [MailAccount.fromManualSettings] and [MailAccount.fromManualSettingsWithAuth]
// methods for details
print('Unable to autodiscover settings for $email');
return;
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: enough_mail
description: IMAP, POP3 and SMTP for email developers. Choose between a low level and a high level API for mailing. Parse and generate MIME messages. Discover email settings.
version: 1.3.2
version: 1.3.3
homepage: https://github.com/Enough-Software/enough_mail

environment:
Expand Down

0 comments on commit 9f9078e

Please sign in to comment.