forked from python-caldav/caldav
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconf.py
56 lines (50 loc) · 1.73 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
############################
# Private test server config
############################
try:
from .conf_private import caldav_servers
except ImportError:
caldav_servers = []
try:
from .conf_private import only_private
except ImportError:
only_private = False
#####################
# Public test servers
#####################
if not only_private:
# This one will eventually go the way of the dodo at some future point
# newer version of baikal, running under openshift.
caldav_servers.append({
"url": "http://baikal-test.caldav-servers.tobixen.no/cal.php/",
"username": "testuser",
"password": "123"})
caldav_servers.append({
"url": "https://baikal-test.caldav-servers.tobixen.no/cal.php/",
"username": "testuser",
"password": "123",
"ssl_verify_cert": False})
# radicale - too many problems, postponing
# caldav_servers.append({
# "url": "http://radicale.caldav-servers.tobixen.no/testuser/",
# "username": "testuser",
# "password": "123"})
# bedework:
# * todos and journals are not properly supported -
# ref https://github.com/Bedework/bedework/issues/5
# * propfind fails to return resourcetype,
# ref https://github.com/Bedework/bedework/issues/110
# * date search on recurrences of recurring events doesn't work
# (not reported yet - TODO)
caldav_servers.append({
"url": "http://bedework.caldav-servers.tobixen.no/ucaldav/",
"username": "vbede",
"password": "bedework",
"nojournal": True,
"notodo": True,
"nopropfind": True,
"norecurring": True})
proxy = "127.0.0.1:8080"
proxy_noport = "127.0.0.1"