mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Add double quote in exemple config files (#732)
* nextcloud.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * fastmail.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * icloud.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * todoman.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * xandikos.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * davmail.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName" * partial-sync.rst : add double quote to not forget them Add double quote to not forget them, and avoid the message : warning: Soon, all strings have to be in double quotes. Please replace UserName with "UserName"
This commit is contained in:
parent
f0fe104427
commit
e5caf6750d
7 changed files with 21 additions and 21 deletions
|
|
@ -32,15 +32,15 @@ Paste this into your vdirsyncer config::
|
|||
[storage holidays_public]
|
||||
type = "http"
|
||||
# The URL to your iCalendar file.
|
||||
url = ...
|
||||
url = "..."
|
||||
|
||||
[storage holidays_private]
|
||||
type = "caldav"
|
||||
# The direct URL to your calendar.
|
||||
url = ...
|
||||
url = "..."
|
||||
# The credentials to your CalDAV server
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
Then run ``vdirsyncer discover holidays`` and ``vdirsyncer sync holidays``, and
|
||||
your previously created calendar should be filled with events.
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ Exchange server you might get confronted with weird errors of all sorts
|
|||
type = "caldav"
|
||||
url = "http://localhost:1080/users/user@example.com/calendar/"
|
||||
username = "user@example.com"
|
||||
password = ...
|
||||
password = "..."
|
||||
|
||||
- Older versions of DavMail handle URLs case-insensitively. See :gh:`144`.
|
||||
- DavMail is handling malformed data on the Exchange server very poorly. In
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@ the settings to use::
|
|||
[storage cal]
|
||||
type = "caldav"
|
||||
url = "https://caldav.fastmail.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
[storage card]
|
||||
type = "carddav"
|
||||
url = "https://carddav.fastmail.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
.. _FastMail: https://www.fastmail.com/
|
||||
|
|
|
|||
|
|
@ -11,14 +11,14 @@ Vdirsyncer is regularly tested against iCloud_.
|
|||
[storage cal]
|
||||
type = "caldav"
|
||||
url = "https://caldav.icloud.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
[storage card]
|
||||
type = "carddav"
|
||||
url = "https://contacts.icloud.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
Problems:
|
||||
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ Vdirsyncer is continuously tested against the latest version of nextCloud_::
|
|||
[storage cal]
|
||||
type = "caldav"
|
||||
url = "https://nextcloud.example.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
[storage card]
|
||||
type = "carddav"
|
||||
|
|
|
|||
|
|
@ -37,8 +37,8 @@ Assuming a config like this::
|
|||
[storage calendars_dav]
|
||||
type = "caldav"
|
||||
url = "https://nextcloud.example.net/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
``vdirsyncer sync`` will then synchronize the calendars of your NextCloud_
|
||||
instance to subfolders of ``~/.calendar/``.
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@ point vdirsyncer against the root of Xandikos like this::
|
|||
[storage cal]
|
||||
type = "caldav"
|
||||
url = "https://xandikos.example.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
[storage card]
|
||||
type = "carddav"
|
||||
url = "https://xandikos.example.com/"
|
||||
username = ...
|
||||
password = ...
|
||||
username = "..."
|
||||
password = "..."
|
||||
|
||||
.. _Xandikos: https://github.com/jelmer/xandikos
|
||||
|
|
|
|||
Loading…
Reference in a new issue