Skip to content

Commit aee426a

Browse files
committed
Move manual pages from /manual/man/ to /gpldoc/man/
1 parent e431cc7 commit aee426a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+353
-353
lines changed

manual/admin/cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ reference manuals for more details.
1414
Administration tools
1515
--------------------
1616

17-
- [`sympa.pl`](../man/sympa.1.md)
17+
- [`sympa.pl`](/gpldoc/man/sympa.1.html)
1818

1919
Command line utility to manage Sympa.
2020

21-
- [`sympa_newaliases.pl`](../man/sympa_newaliases.1.md)
21+
- [`sympa_newaliases.pl`](/gpldoc/man/sympa_newaliases.1.html)
2222

2323
Alias database maintenance.
2424

25-
- [`sympa_wizard.pl`](../man/sympa_wizard.1.md)
25+
- [`sympa_wizard.pl`](/gpldoc/man/sympa_wizard.1.html)
2626

2727
Help performing Sympa initial setup.
2828

manual/admin/list-creation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,10 @@ For more details on tt2 customization, templates path and so on, see "[Templates
268268

269269
(Work in progress)
270270

271-
Using [`edit_list.conf`](../man/edit_list.conf.5.md),
271+
Using [`edit_list.conf`](/gpldoc/man/edit_list.conf.5.html),
272272
you can define privileges on the following lists parameters:
273273

274-
- All the lists config parameters ([those used in the config file](../man/list_config.5.md)),
274+
- All the lists config parameters ([those used in the config file](/gpldoc/man/list_config.5.html)),
275275

276276
- Any file used in list context and likely to be edited through the web interface:
277277

manual/admin/list-members.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ We'll first describe the standard way for Sympa to handle list members and owner
1818

1919
List members are often named *subscribers* because the default way to become member of a list is to subscribe to it. The subscription action can be performed via any of the three Sympa user interface : mail, web or SOAP. The mail command for subscribing is *SUBSCRIBE,* see ~~[user_commands](../mail-commands.md#user_commands)~~. Subscription feature is available from the list homepage on the web interface, but it requires prior user authentication.
2020

21-
The configuration of a list may restrict the right to subscribe to this list (closed, moderated, restricted to certain user categories,...) ; this is configured via [the subscribe list parameter](../man/list_config.5.md#subscribe). [A similar list configuration parameter](../man/list_config.5.md#unsubscribe) defines if list members can unsubscribe from the list. If the subscription process is moderated, then list owners will receive mail notifications for each subscription request; they can then validate the request via either web or mail interfaces of Sympa.
21+
The configuration of a list may restrict the right to subscribe to this list (closed, moderated, restricted to certain user categories,...) ; this is configured via [the subscribe list parameter](/gpldoc/man/list_config.5.html#subscribe). [A similar list configuration parameter](/gpldoc/man/list_config.5.html#unsubscribe) defines if list members can unsubscribe from the list. If the subscription process is moderated, then list owners will receive mail notifications for each subscription request; they can then validate the request via either web or mail interfaces of Sympa.
2222

23-
List owners can also add list members, though this feature should be used with care since users can easily confuse this with spam. It is easier for a subscriber to unsubscribe if (s)he did subscribe himself. List owners can use the ~~[ADD](../mail-commands.md#owner_commands)~~ mail command or the web interface to add new list members. The default right to add and remove list members is provided to list owners, but this behavior can be customized through the [add](../man/list_config.5.md#add) and [del](../man/list_config.5.md#del) list configuration parameters.
23+
List owners can also add list members, though this feature should be used with care since users can easily confuse this with spam. It is easier for a subscriber to unsubscribe if (s)he did subscribe himself. List owners can use the ~~[ADD](../mail-commands.md#owner_commands)~~ mail command or the web interface to add new list members. The default right to add and remove list members is provided to list owners, but this behavior can be customized through the [add](/gpldoc/man/list_config.5.html#add) and [del](/gpldoc/man/list_config.5.html#del) list configuration parameters.
2424

25-
Sympa stores the list membership data in its database, in the [`subscriber_table` table](../man/sympa_database.5.md#subscriber_table). Along with the list name and member email addresses, Sympa stores the following informations: user name, date of subscription, date of latest update, visibility option, reception option, selected topics, bouncing informations.
25+
Sympa stores the list membership data in its database, in the [`subscriber_table` table](/gpldoc/man/sympa_database.5.html#subscriber_table). Along with the list name and member email addresses, Sympa stores the following informations: user name, date of subscription, date of latest update, visibility option, reception option, selected topics, bouncing informations.
2626

2727
### Declaring list owners or moderators
2828

29-
A list owner is assigned to a list at the list creation time ; it corresponds to the user who requests the list creation. Additional list owners can later be addded by existing list owners or by the listmaster; this is achieved through the list admin web interface. List owners are defined by the [owner list configuration parameter](../man/list_config.5.md#owner).
29+
A list owner is assigned to a list at the list creation time ; it corresponds to the user who requests the list creation. Additional list owners can later be addded by existing list owners or by the listmaster; this is achieved through the list admin web interface. List owners are defined by the [owner list configuration parameter](/gpldoc/man/list_config.5.html#owner).
3030

31-
List moderators are managed the same way, defined by the [`editor` list configuration parameter](../man/list_config.5.md#editor). Note that if no list moderator is defined, then the list owners are taken as defaults for them.
31+
List moderators are managed the same way, defined by the [`editor` list configuration parameter](/gpldoc/man/list_config.5.html#editor). Note that if no list moderator is defined, then the list owners are taken as defaults for them.
3232

33-
Sympa defines two profiles for list owners: normal and privileged. Privileged owners have extended privileges, including the right to edit some list configuration parameters; this can be customized through the [`edit_list.conf`](../man/edit_list.conf.5.md) configuration file.
33+
Sympa defines two profiles for list owners: normal and privileged. Privileged owners have extended privileges, including the right to edit some list configuration parameters; this can be customized through the [`edit_list.conf`](/gpldoc/man/edit_list.conf.5.html) configuration file.
3434
See also "[List editing](list-creation.md#list-editing)".
3535

36-
List owners and moderators are defined in the list configuration file, however, for performances reasons, list owners are also listed in the [`admin_table` DB table](../man/sympa_database.5.md#admin_table). This cache is updated by Sympa processes whenever the list configuration has changed on disk.
36+
List owners and moderators are defined in the list configuration file, however, for performances reasons, list owners are also listed in the [`admin_table` DB table](/gpldoc/man/sympa_database.5.html#admin_table). This cache is updated by Sympa processes whenever the list configuration has changed on disk.
3737

3838
Importing subscribers from text file
3939
------------------------------------
4040

41-
You can import subscribers from text file. See `--import` option in [sympa(1)](../man/symap.1.md) for details.
41+
You can import subscribers from text file. See `--import` option in [sympa(1)](/gpldoc/man/symap.1.html) for details.
4242

4343
Dynamic mailing lists
4444
---------------------

manual/admin/services.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,31 @@ Services overview
1515

1616
Several daemons collaboratively provide mailing list service.
1717

18-
* [``archived.pl``](../man/archived.8.md)
18+
* [``archived.pl``](/gpldoc/man/archived.8.html)
1919

2020
Archiving daemon.
2121

22-
* [``bounced.pl``](../man/bounced.8.md)
22+
* [``bounced.pl``](/gpldoc/man/bounced.8.html)
2323

2424
Bounce processing daemon.
2525

26-
* [``bulk.pl``](../man/bulk.8.md)
26+
* [``bulk.pl``](/gpldoc/man/bulk.8.html)
2727

2828
Daemon for submitting messages to mail transfer agent (MTA).
2929
It may fork several workers as necessity.
3030

31-
* [``sympa_msg.pl``](../man/sympa_msg.8.md)
31+
* [``sympa_msg.pl``](/gpldoc/man/sympa_msg.8.html)
3232

3333
Daemon to handle incoming messages.
3434
It may fork several workers as necessity.
3535

36-
* [``task_manager.pl``](../man/task_manager.8.md)
36+
* [``task_manager.pl``](/gpldoc/man/task_manager.8.html)
3737

3838
Daemon to process periodical tasks.
3939

4040
And optionally:
4141

42-
* [``sympa_automatic.pl``](../man/sympa_automatic.8.md)
42+
* [``sympa_automatic.pl``](/gpldoc/man/sympa_automatic.8.html)
4343

4444
Automatic list creation daemon.
4545
It may be invoked by ``sympa_msg.pl`` as necessity.
@@ -53,7 +53,7 @@ Internet.
5353
### HTTP server and WWSympa
5454

5555
HTTP server provides users web interface on behalf of WWSympa
56-
([``wwsympa.fcgi``](../man/wwsympa.8.md)), the FastCGI server.
56+
([``wwsympa.fcgi``](/gpldoc/man/wwsympa.8.html)), the FastCGI server.
5757

5858
WWSympa may either be invoked by HTTP server or launch as an independent
5959
daemon.
@@ -116,7 +116,7 @@ Reloading services
116116

117117
* Automatic reloading
118118

119-
If [``wwsympa.fcgi``](../man/wwsympa.8.md) script was updated, it detects
119+
If [``wwsympa.fcgi``](/gpldoc/man/wwsympa.8.html) script was updated, it detects
120120
change of itself and exits. Then WWSympa will be automatically reloaded.
121121

122122
Exception is the case running separate FastCGI service with initscripts:

manual/customize.md

+47-47
Original file line numberDiff line numberDiff line change
@@ -42,38 +42,38 @@ To manage these features, listmaster privileges and/or console login are
4242
needed.
4343

4444
* Receiving
45-
[🔧](man/sympa.conf.5.md#receiving)
45+
[🔧](/gpldoc/man/sympa.conf.5.html#receiving)
4646
* Sending related
47-
[🔧](man/sympa.conf.5.md#sending-related)
48-
[⚙](man/nrcpt_by_domain.conf.5.md# "nrcpt_by_domain.conf")
47+
[🔧](/gpldoc/man/sympa.conf.5.html#sending-related)
48+
[⚙](/gpldoc/man/nrcpt_by_domain.conf.5.html# "nrcpt_by_domain.conf")
4949
* Privileges
50-
[🔧](man/sympa.conf.5.md#privileges)
51-
[⚙](man/edit_list.conf.5.md# "edit_list.conf")
50+
[🔧](/gpldoc/man/sympa.conf.5.html#privileges)
51+
[⚙](/gpldoc/man/edit_list.conf.5.html# "edit_list.conf")
5252
* [Archives](customize/archives.md)
53-
[🔧](man/sympa.conf.5.md#archives)
54-
[⚙](man/mhonarc-ressources.tt2.5.md# "mhonarc-ressources.tt2")
53+
[🔧](/gpldoc/man/sympa.conf.5.html#archives)
54+
[⚙](/gpldoc/man/mhonarc-ressources.tt2.5.html# "mhonarc-ressources.tt2")
5555
* [Bounce management](customize/bounce-management.md)
56-
[🔧](man/sympa.conf.5.md#bounce-management-and-tracking)
56+
[🔧](/gpldoc/man/sympa.conf.5.html#bounce-management-and-tracking)
5757
* Loop prevention
58-
[🔧](man/sympa.conf.5.md#loop-prevention)
58+
[🔧](/gpldoc/man/sympa.conf.5.html#loop-prevention)
5959
* [Automatic list creation](customize/automatic-lists.md)
60-
[🔧](man/sympa.conf.5.md#automatic-lists)
60+
[🔧](/gpldoc/man/sympa.conf.5.html#automatic-lists)
6161
* Tag based spam filtering
62-
[🔧](man/sympa.conf.5.md#tag-based-spam-filtering)
62+
[🔧](/gpldoc/man/sympa.conf.5.html#tag-based-spam-filtering)
6363
* Directories
64-
[🔧](man/sympa.conf.5.md#directories)
64+
[🔧](/gpldoc/man/sympa.conf.5.html#directories)
6565
* Miscellaneous
66-
[🔧](man/sympa.conf.5.md#miscelaneous)
66+
[🔧](/gpldoc/man/sympa.conf.5.html#miscelaneous)
6767
* Others
6868

6969
- [Custom list parameters](customize/custom-parameters.md)
70-
[🔧](man/list_config.5.md#custom_vars)
70+
[🔧](/gpldoc/man/list_config.5.html#custom_vars)
7171
- [Custom user attributes](customize/custom-user-attributes.md)
72-
[🔧](man/list_config.5.md#custom_attribute)
72+
[🔧](/gpldoc/man/list_config.5.html#custom_attribute)
7373

7474
- Custom user attributes in database
75-
[🔧](man/sympa.conf.5.md#db_additional_subscriber_fields)
76-
[🔧](man/sympa.conf.5.md#db_additional_user_fields)
75+
[🔧](/gpldoc/man/sympa.conf.5.html#db_additional_subscriber_fields)
76+
[🔧](/gpldoc/man/sympa.conf.5.html#db_additional_user_fields)
7777

7878
Customizing web interface
7979
--------------------------
@@ -82,38 +82,38 @@ To manage these features, listmaster privileges and/or console login are
8282
needed.
8383

8484
* Appearances
85-
[🔧](man/sympa.conf.5.md#web-interface-parameters-appearances)
85+
[🔧](/gpldoc/man/sympa.conf.5.html#web-interface-parameters-appearances)
8686
* [Authentication on web interface](customize/authentication-web.md)
87-
[⚙](man/auth.conf.5.md# "auth.conf")
87+
[⚙](/gpldoc/man/auth.conf.5.html# "auth.conf")
8888
* Session and cookie
89-
[🔧](man/sympa.conf.5.md#cookie_domain)
89+
[🔧](/gpldoc/man/sympa.conf.5.html#cookie_domain)
9090
* ~~[Shared document repository](customize/shared-repository.md)~~
91-
[🔧](man/sympa.conf.5.md#default_shared_quota)
91+
[🔧](/gpldoc/man/sympa.conf.5.html#default_shared_quota)
9292
(Work in progress)
9393
* ~~[Web mailer](customize/web-mailer.md)~~
94-
[🔧](man/sympa.conf.5.md#use_html_editor)
94+
[🔧](/gpldoc/man/sympa.conf.5.html#use_html_editor)
9595
(Work in progress)
9696
* [Password](customize/builtin-auth.md)
97-
[⚙](man/auth.conf.5.md#user_table-paragraph "auth.conf")
98-
[🔧](man/sympa.conf.5.md#max_wrong_password)
97+
[⚙](/gpldoc/man/auth.conf.5.html#user_table-paragraph "auth.conf")
98+
[🔧](/gpldoc/man/sympa.conf.5.html#max_wrong_password)
9999
[📦](http://search.cpan.org/dist/Crypt-Eksblowfish/)
100100
* Miscellaneous
101-
[🔧](man/sympa.conf.5.md#web-interface-parameters-miscelaneous)
101+
[🔧](/gpldoc/man/sympa.conf.5.html#web-interface-parameters-miscelaneous)
102102

103103
- One time ticket
104-
[🔧](man/sympa.conf.5.md#one_time_ticket_lifetime)
104+
[🔧](/gpldoc/man/sympa.conf.5.html#one_time_ticket_lifetime)
105105
- Pictures
106-
[🔧](man/sympa.conf.5.md#pictures_feature)
106+
[🔧](/gpldoc/man/sympa.conf.5.html#pictures_feature)
107107
- Protection against spam harvesters
108-
[🔧](man/sympa.conf.5.md#spam_protection)
109-
[⚙](man/crawlers_detection.conf.5.md# "crawlers_detection.conf")
108+
[🔧](/gpldoc/man/sympa.conf.5.html#spam_protection)
109+
[⚙](/gpldoc/man/crawlers_detection.conf.5.html# "crawlers_detection.conf")
110110

111111
* [Message tracking](customize/message-tracking.md)
112-
[🔧](man/sympa.conf.5.md#bounce-management-and-tracking)
112+
[🔧](/gpldoc/man/sympa.conf.5.html#bounce-management-and-tracking)
113113
* [RSS feed](customize/rss-feed.md)
114114
* [User-friendly automatic lists](customize/friendly-automatic-lists.md)
115-
[🔧](man/sympa.conf.5.md#automatic_list_families)
116-
[⚙](man/automatic_lists_description.conf.5.md# "automatic_lists_description.conf")
115+
[🔧](/gpldoc/man/sympa.conf.5.html#automatic_list_families)
116+
[⚙](/gpldoc/man/automatic_lists_description.conf.5.html# "automatic_lists_description.conf")
117117

118118
Sympa services: Optional features
119119
---------------------------------
@@ -122,11 +122,11 @@ These features need installation of additional software components including
122122
external Perl modules.
123123

124124
* [S/MIME](customize/smime.md)
125-
[🔧](man/sympa.conf.5.md#s-mime-and-tls)
125+
[🔧](/gpldoc/man/sympa.conf.5.html#s-mime-and-tls)
126126
[📦](https://metacpan.org/release/Crypt-OpenSSL-X509 "Crypt-OpenSSL-X509")
127127
[📦](https://metacpan.org/release/Crypt-SMIME "Crypt-SMIME")
128128
* [Data sources](customize/data-sources.md)
129-
[🔧](man/list_config.5.md#data-sources-setup)
129+
[🔧](/gpldoc/man/list_config.5.html#data-sources-setup)
130130
[📦](https://metacpan.org/release/DBD-CSV "DBD-CSV")
131131
[📦](https://metacpan.org/release/DBD-mysql "DBD-mysql")
132132
[📦](https://metacpan.org/release/DBD-ODBC "DBD-ODBC")
@@ -136,19 +136,19 @@ external Perl modules.
136136
[📦](https://metacpan.org/release/Net-LDAP "Net-LDAP")
137137
[📦](https://metacpan.org/release/IO-Socket-SSL "IO-Socket-SSL")
138138
* [DKIM and ARC](customize/dkim-arc.md)
139-
[🔧](man/sympa.conf.5.md#dkim-and-arc)
139+
[🔧](/gpldoc/man/sympa.conf.5.html#dkim-and-arc)
140140
[📦](https://metacpan.org/release/Mail-DKIM "Mail-DKIM")
141141
* [DMARC protection](customize/dmarc-protection.md)
142-
[🔧](man/sympa.conf.5.md#dmarc-protection)
142+
[🔧](/gpldoc/man/sympa.conf.5.html#dmarc-protection)
143143
[📦](https://metacpan.org/release/Net-DNS "Net-DNS")
144144
* Managing aliases with LDAP
145-
[⚙](man/ldap_alias_manager.conf.5.md# "ldap_alias_manager.conf")
146-
[⚙](man/ldap_alias_entry.tt2.5.md# "ldap_alias_entry.tt2")
145+
[⚙](/gpldoc/man/ldap_alias_manager.conf.5.html# "ldap_alias_manager.conf")
146+
[⚙](/gpldoc/man/ldap_alias_entry.tt2.5.html# "ldap_alias_entry.tt2")
147147
[📦](https://metacpan.org/release/Net-LDAP "Net-LDAP")
148148
[📦](https://metacpan.org/release/IO-Socket-SSL "IO-Socket-SSL")
149149
* ~~Managing aliases with RDBMS~~ (currently broken)
150150
* List address verification
151-
[🔧](man/sympa.conf.5.md#list-address-verification)
151+
[🔧](/gpldoc/man/sympa.conf.5.html#list-address-verification)
152152
[📦](https://metacpan.org/release/libnet "libnet")
153153
([📦](https://metacpan.org/pod/Net::SMTP "Net::SMTP"))
154154
* [Antivirus plug-in](customize/antivirus.md)
@@ -165,24 +165,24 @@ These features need installation of additional software components including
165165
external Perl modules.
166166

167167
* [CAS single sign-on](customize/cas.md)
168-
[⚙](man/auth.conf.5.md#cas-paragraph "auth.conf")
168+
[⚙](/gpldoc/man/auth.conf.5.html#cas-paragraph "auth.conf")
169169
[📦](https://metacpan.org/release/AuthCAS "AuthCAS")
170170
* [TLS client authentication](customize/tls-client-auth.md)
171171
[📦](https://metacpan.org/release/Crypt-OpenSSL-X509 "Crypt-OpenSSL-X509")
172172
* Password validation
173-
[🔧](man/sympa.conf.5.md#password-validation)
173+
[🔧](/gpldoc/man/sympa.conf.5.html#password-validation)
174174
[📦](https://metacpan.org/release/Data-Password "Data-Password")
175175
* [Authentication with LDAP](customize/ldap-auth.md)
176-
[⚙](man/auth.conf.5.md#ldap-paragraph "auth.conf")
176+
[⚙](/gpldoc/man/auth.conf.5.html#ldap-paragraph "auth.conf")
177177
[📦](https://metacpan.org/release/Net-LDAP "Net-LDAP")
178178
[📦](https://metacpan.org/release/IO-Socket-SSL "IO-Socket-SSL")
179179
* [Setting up a Shibboleth-enabled Sympa server](customize/shibboleth.md)
180-
[⚙](man/auth.conf.5.md#generic_sso-paragraph "auth.conf")
180+
[⚙](/gpldoc/man/auth.conf.5.html#generic_sso-paragraph "auth.conf")
181181
[📦](http://shibboleth.internet2.edu "Shibboleth SP")
182182
* [SOAP/HTTP API](customize/soap-api.md)
183-
[🔧](man/sympa.conf.5.md#soap-http-interface)
184-
[⚙](man/trusted_applications.conf.5.md# "trusted_applications.conf")
185-
[⚙](man/sympa.wsdl.5.md# "sympa.wsdl")
183+
[🔧](/gpldoc/man/sympa.conf.5.html#soap-http-interface)
184+
[⚙](/gpldoc/man/trusted_applications.conf.5.html# "trusted_applications.conf")
185+
[⚙](/gpldoc/man/sympa.wsdl.5.html# "sympa.wsdl")
186186
[📦](https://metacpan.org/release/SOAP-Lite "SOAP-Lite")
187187

188188
* [Miscellaneous modules](customize/misc-web.md)
@@ -196,7 +196,7 @@ Extending Sympa
196196
These features need skill of Perl programming.
197197

198198
- [Custom scenario conditions](customize/custom-scenario-conditions.md)
199-
- [Message hooks](man/Sympa-Message-Plugin.3.md)
199+
- [Message hooks](/gpldoc/man/Sympa-Message-Plugin.3.html)
200200
- [Template plugins](customize/template-plugins.md)
201201

202202
- [List of template plugins](customize/template-plugins.md#list-of-template-plugins)

0 commit comments

Comments
 (0)