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:
Romain 2018-04-24 11:21:03 +02:00 committed by Markus Unterwaditzer
parent 59e822707d
commit b5eefc9bf5
7 changed files with 21 additions and 21 deletions

View file

@ -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.

View file

@ -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

View file

@ -11,13 +11,13 @@ the settings to use::
[storage cal]
type = "caldav"
url = "https://caldav.messagingengine.com/"
username = ...
password = ...
username = "..."
password = "..."
[storage card]
type = "carddav"
url = "https://carddav.messagingengine.com/"
username = ...
password = ...
username = "..."
password = "..."
.. _FastMail: https://www.fastmail.com/

View file

@ -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:

View file

@ -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"

View file

@ -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/``.

View file

@ -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