Author
|
zPlus <zplus@peers.community>
2023-03-21 09:03:44
|
Committer
|
zPlus <zplus@peers.community>
2023-03-21 09:03:44
|
Commit
|
3c5321f
(patch)
|
Tree
|
5967c4b
|
Parent(s)
|
|
Update documentation with correct subscribe/unsubscribe instructions.
commits diff:
e4109bc..3c5321f
2 files changed,
18 insertions,
20 deletions
—
download
Diffstat
Diff options
+16/-14
M documentation/users
63
|
63
|
|
CLIF will then begin accepting emails for <repository>@example.org and it will
|
64
|
64
|
|
store them inside the <repository>.mlist repository.
|
65
|
65
|
|
|
66
|
|
- |
# Subscribe to lists
|
67
|
|
- |
|
68
|
|
- |
Send an email to the list address with the +subscribe suffix.
|
69
|
|
- |
|
70
|
|
- |
From: You <you@example.org>
|
71
|
|
- |
To: <repository>+subscribe@example.org
|
72
|
|
- |
|
73
|
|
- |
# Unsubscribe from lists
|
74
|
|
- |
|
75
|
|
- |
Send an email to the list address with the +unsubscribe suffix.
|
76
|
|
- |
|
77
|
|
- |
From: You <you@example.org>
|
78
|
|
- |
To: <repository>+unsubscribe@example.org
|
79
|
|
- |
|
80
|
66
|
|
# New thread
|
81
|
67
|
|
|
82
|
68
|
|
Send a new email to any list address.
|
89
|
75
|
|
From: You <you@example.org>
|
90
|
76
|
|
To: <repository>@example.org
|
91
|
77
|
|
In-Reply-To: <Message-ID>
|
|
78
|
+ |
|
|
79
|
+ |
# Subscribe to lists
|
|
80
|
+ |
|
|
81
|
+ |
Send an email to the list address with the "subscribe" subject.
|
|
82
|
+ |
|
|
83
|
+ |
From: You <you@example.org>
|
|
84
|
+ |
To: <repository>@example.org
|
|
85
|
+ |
Subject: subscribe
|
|
86
|
+ |
|
|
87
|
+ |
# Unsubscribe from lists
|
|
88
|
+ |
|
|
89
|
+ |
Send an email to the list address with the "unsubscribe" subject.
|
|
90
|
+ |
|
|
91
|
+ |
From: You <you@example.org>
|
|
92
|
+ |
To: <repository>@example.org
|
|
93
|
+ |
Subject: unsubscribe
|
+2/-6
M templates/mailing_list/mailing_list.html
2
|
2
|
|
|
3
|
3
|
|
{% block path %}
|
4
|
4
|
|
<a href="/">home</a> »
|
5
|
|
- |
<a href="{{ url('threads', repository=repository[:-10]) }}">{{ list_address }}</a>
|
6
|
|
- |
(
|
7
|
|
- |
<a href="mailto:{{ repository[:-10] }}+subscribe@{{ instance_domain }}">Subscribe</a>
|
8
|
|
- |
-
|
9
|
|
- |
<a href="mailto:{{ repository[:-10] }}+unsubscribe@{{ instance_domain }}">Unsubscribe</a>
|
10
|
|
- |
)
|
|
5
|
+ |
{{ list_address }}
|
|
6
|
+ |
(<a href="https://clif.peers.community/zplus/clif.git/tree/HEAD/documentation/users">help</a>)
|
11
|
7
|
|
{% endblock %}
|
12
|
8
|
|
|
13
|
9
|
|
{% block context %}
|