Skip to content

Commit 461e4c5

Browse files
author
Hugo Osvaldo Barrera
committed
Update servers for Fastmail
Fixes #785
1 parent a5b9851 commit 461e4c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/tutorials/fastmail.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ the settings to use::
1010

1111
[storage cal]
1212
type = "caldav"
13-
url = "https://caldav.messagingengine.com/"
13+
url = "https://caldav.fastmail.com/"
1414
username = ...
1515
password = ...
1616

1717
[storage card]
1818
type = "carddav"
19-
url = "https://carddav.messagingengine.com/"
19+
url = "https://carddav.fastmail.com/"
2020
username = ...
2121
password = ...
2222

tests/storage/servers/fastmail/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def inner(collection='test'):
1414
}
1515

1616
if self.storage_class.fileext == '.ics':
17-
args['url'] = 'https://caldav.messagingengine.com/'
17+
args['url'] = 'https://caldav.fastmail.com/'
1818
elif self.storage_class.fileext == '.vcf':
19-
args['url'] = 'https://carddav.messagingengine.com/'
19+
args['url'] = 'https://carddav.fastmail.com/'
2020
else:
2121
raise RuntimeError()
2222

0 commit comments

Comments
 (0)