Skip to content

Commit

Permalink
docs: Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ecederstrand committed Sep 5, 2024
1 parent 2a4f294 commit 4abf34c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 4 additions & 2 deletions docs/exchangelib/folders/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ <h1 class="title">Module <code>exchangelib.folders.base</code></h1>
self.item_sync_state = kwargs.pop(&#34;item_sync_state&#34;, None)
self.folder_sync_state = kwargs.pop(&#34;folder_sync_state&#34;, None)
super().__init__(**kwargs)
if self._distinguished_id and self.account:
if self._distinguished_id and not self._distinguished_id.mailbox and self.account:
# Ensure that distinguished IDs have a mailbox, but don&#39;t override a custom mailbox (e.g. shared folders)
self._distinguished_id.mailbox = Mailbox(email_address=self.account.primary_smtp_address)

@property
Expand Down Expand Up @@ -1039,7 +1040,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
self.item_sync_state = kwargs.pop(&#34;item_sync_state&#34;, None)
self.folder_sync_state = kwargs.pop(&#34;folder_sync_state&#34;, None)
super().__init__(**kwargs)
if self._distinguished_id and self.account:
if self._distinguished_id and not self._distinguished_id.mailbox and self.account:
# Ensure that distinguished IDs have a mailbox, but don&#39;t override a custom mailbox (e.g. shared folders)
self._distinguished_id.mailbox = Mailbox(email_address=self.account.primary_smtp_address)

@property
Expand Down
3 changes: 2 additions & 1 deletion docs/exchangelib/folders/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1561,7 +1561,8 @@ <h3>Inherited members</h3>
self.item_sync_state = kwargs.pop(&#34;item_sync_state&#34;, None)
self.folder_sync_state = kwargs.pop(&#34;folder_sync_state&#34;, None)
super().__init__(**kwargs)
if self._distinguished_id and self.account:
if self._distinguished_id and not self._distinguished_id.mailbox and self.account:
# Ensure that distinguished IDs have a mailbox, but don&#39;t override a custom mailbox (e.g. shared folders)
self._distinguished_id.mailbox = Mailbox(email_address=self.account.primary_smtp_address)

@property
Expand Down
2 changes: 1 addition & 1 deletion docs/exchangelib/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1 class="title">Package <code>exchangelib</code></h1>
from .transport import BASIC, CBA, DIGEST, GSSAPI, NTLM, OAUTH2, SSPI
from .version import Build, Version

__version__ = &#34;5.4.2&#34;
__version__ = &#34;5.4.3&#34;

__all__ = [
&#34;AcceptItem&#34;,
Expand Down
4 changes: 0 additions & 4 deletions docs/exchangelib/winzone.html
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,6 @@ <h1 class="title">Module <code>exchangelib.winzone</code></h1>
&#34;Australia/Melbourne&#34;: (&#34;AUS Eastern Standard Time&#34;, &#34;AU&#34;),
&#34;Australia/Perth&#34;: (&#34;W. Australia Standard Time&#34;, &#34;001&#34;),
&#34;Australia/Sydney&#34;: (&#34;AUS Eastern Standard Time&#34;, &#34;001&#34;),
&#34;CST6CDT&#34;: (&#34;Central Standard Time&#34;, &#34;ZZ&#34;),
&#34;EST5EDT&#34;: (&#34;Eastern Standard Time&#34;, &#34;ZZ&#34;),
&#34;Etc/GMT&#34;: (&#34;UTC&#34;, &#34;ZZ&#34;),
&#34;Etc/GMT+1&#34;: (&#34;Cape Verde Standard Time&#34;, &#34;ZZ&#34;),
&#34;Etc/GMT+10&#34;: (&#34;Hawaiian Standard Time&#34;, &#34;ZZ&#34;),
Expand Down Expand Up @@ -478,8 +476,6 @@ <h1 class="title">Module <code>exchangelib.winzone</code></h1>
&#34;Indian/Mauritius&#34;: (&#34;Mauritius Standard Time&#34;, &#34;001&#34;),
&#34;Indian/Mayotte&#34;: (&#34;E. Africa Standard Time&#34;, &#34;YT&#34;),
&#34;Indian/Reunion&#34;: (&#34;Mauritius Standard Time&#34;, &#34;RE&#34;),
&#34;MST7MDT&#34;: (&#34;Mountain Standard Time&#34;, &#34;ZZ&#34;),
&#34;PST8PDT&#34;: (&#34;Pacific Standard Time&#34;, &#34;ZZ&#34;),
&#34;Pacific/Apia&#34;: (&#34;Samoa Standard Time&#34;, &#34;001&#34;),
&#34;Pacific/Auckland&#34;: (&#34;New Zealand Standard Time&#34;, &#34;001&#34;),
&#34;Pacific/Bougainville&#34;: (&#34;Bougainville Standard Time&#34;, &#34;001&#34;),
Expand Down

0 comments on commit 4abf34c

Please sign in to comment.