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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Contact template for imag-contact version 0.8.0
#
# This file is explicitely _not_ distributed under the terms of the original imag license, but
# public domain.
#
# Use this TOML formatted template to create a new contact.
[name]
# every entry may contain a string or a list of strings
# E.G.:
# first = "Foo"
# last = [ "bar", "bar", "a" ]
#prefix = ""
first = ""
#additional = ""
last = ""
#suffix = ""
[person]
# Birthday
# Format: YYYY-MM-DD
#birthday = ""
# allowed types:
# vcard 3.0: At least one of bbs, car, cell, fax, home, isdn, msg, modem,
# pager, pcs, pref, video, voice, work
# vcard 4.0: At least one of home, work, pref, text, voice, fax, cell, video,
# pager, textphone
#phone = [
# { "type" = "home", "number" = "0123 123456789" },
#]
#
# Email addresses
#
#email = [
# { "type" = "home", "addr" = "examle@examplemail.org" },
#]
# post addresses
#
# allowed types:
# vcard 3.0: At least one of dom, intl, home, parcel, postal, pref, work
# vcard 4.0: At least one of home, pref, work
#[[addresses]]
#type = "home"
#box = ""
#extended = ""
#street = ""
#code = ""
#city = ""
#region = ""
#country = ""
# Nickname
# "type" is optional
#[[nickname]]
#type = "work"
#name = "boss"
[organisation]
# Organisation name
# May contain a string or a list of strings
#name = ""
# Organisation title and role
# May contain a string or a list of strings
#title = ""
# Role at organisation
# May contain a string or a list of strings
#role = ""
[other]
# categories or tags
# May contain a string or a list of strings
#categories = ""
# Web pages
# May contain a string or a list of strings
#webpage = ""
# Notes
# May contain a string or a list of strings
#note = ""
|