<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://things.bleu255.com/runyourown/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=LeWikiAdmin</id>
	<title>Run Your Own - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://things.bleu255.com/runyourown/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=LeWikiAdmin"/>
	<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/Special:Contributions/LeWikiAdmin"/>
	<updated>2026-06-05T02:07:18Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Mailman_3_Service_and_Troubleshooting&amp;diff=636</id>
		<title>Mailman 3 Service and Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Mailman_3_Service_and_Troubleshooting&amp;diff=636"/>
		<updated>2024-12-02T12:59:33Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: /* Something is stuck in the Hyperkitty spool */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Service Configuration and Installation ==&lt;br /&gt;
&lt;br /&gt;
There are two services needed:&lt;br /&gt;
 systemctl status mailman3   # AKA mailman-core you only need this for lists to work&lt;br /&gt;
 systemctl status mailmanweb # AKA hyperkitty, postorius, uwsgi, django hell, needed for the web interface&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
=== Where is everything logged? ===&lt;br /&gt;
&lt;br /&gt;
Don&#039;t think you can start understand anything without at least doing the following:&lt;br /&gt;
* mailman core&lt;br /&gt;
 tail -f /home/mailman/we.lurk.org/mm/var/logs/*&lt;br /&gt;
 tail -f /var/log/mail.err /var/log/mail.log /var/log/mail.warn&lt;br /&gt;
 journalctl --follow _SYSTEMD_UNIT=mailman3.service + _SYSTEMD_UNIT=mariadb.service&lt;br /&gt;
* web stuff&lt;br /&gt;
 tail -f /home/mailman/we.lurk.org/web/logs/*&lt;br /&gt;
 tail -f /var/log/nginx/*log&lt;br /&gt;
&lt;br /&gt;
=== Mailman3 service does not (re)start ===&lt;br /&gt;
Quite often when mm3 crashes or when the server crashes and reboots, or if there has been a power shortage, mm3 leaves a stale lock which prevents the service to start again. This can be confirmed with:&lt;br /&gt;
 systemctl status mailman3&lt;br /&gt;
&lt;br /&gt;
Check for this line:&lt;br /&gt;
 Error: A previous run of GNU Mailman did not exit cleanly (stale_lock).  Try using --force&lt;br /&gt;
&lt;br /&gt;
If you see it, congrats, you have a stale lock, you can remove it like this:&lt;br /&gt;
  rm /home/mailman/we.lurk.org/mm/var/locks/master.lck&lt;br /&gt;
&lt;br /&gt;
You can now restart mailman3 and mailmanweb&lt;br /&gt;
 systemctl start mailman3&lt;br /&gt;
 systemctl restart mailmanweb&lt;br /&gt;
&lt;br /&gt;
=== Something is stuck in the Hyperkitty spool ===&lt;br /&gt;
Sometimes Hyperkitty does not like an email and won&#039;t be able to store it in its database. If that&#039;s the case there will be errors showing up both on the mailman3 and mailmanweb sides, notably about the relevant table/column in the mailman_web mariadb database that&#039;s struggling. Until this is solved the email will keep on being re-queued at &amp;lt;code&amp;gt;/home/mailman/we.lurk.org/mm/var/archives/hyperkitty/spool&amp;lt;/code&amp;gt; and and new attempts to store the problematic email will happen &#039;&#039;every time&#039;&#039; the archiver is called, for instance when a new email is received on a list that has to be archived. This will not block the queue, just that the problem email will keep being tried over and over again until the problem is solved which can become quite expensive from a computational POV.&lt;br /&gt;
&lt;br /&gt;
To inspect an item stuck in the queue you can do this:&lt;br /&gt;
 su mailman  # ALWAYS&lt;br /&gt;
 cd /home/mailman/we.lurk.org/mm/var/archives/hyperkitty/spool&lt;br /&gt;
 mailman qfile 1234567890.1234567890.pck | less&lt;br /&gt;
&lt;br /&gt;
=== Running mailman standalone ===&lt;br /&gt;
&#039;&#039;&#039;Only do this when manually troubleshooting otherwise this will conflict with &amp;lt;code&amp;gt;systemctl&amp;lt;/code&amp;gt; initiated services.&#039;&#039;&#039;&lt;br /&gt;
* Mailman 3 relies on its own mailman user to handle the processing of the emails.&lt;br /&gt;
 su mailman     # switch to the mailman user&lt;br /&gt;
 cd             # make sure you cd to mailman&#039;s home !IMPORTANT&lt;br /&gt;
* You&#039;re now ready to control mailman&lt;br /&gt;
* Everything is handled with the mailman command line tool. Do not run these commands with another user!&lt;br /&gt;
 mailman status       # report on the service&lt;br /&gt;
 mailman start        # start mailman&lt;br /&gt;
 mailman stop         # stop mailman&lt;br /&gt;
 mailman restart      # stop and start mailman shorcut&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Email]]&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Wildcard_Certificates_with_acme.sh&amp;diff=369</id>
		<title>Wildcard Certificates with acme.sh</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Wildcard_Certificates_with_acme.sh&amp;diff=369"/>
		<updated>2019-10-03T14:58:58Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: /* Renewal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Base installation ==&lt;br /&gt;
&lt;br /&gt;
 apt install python-pip&lt;br /&gt;
 pip install wheel&lt;br /&gt;
 pip install certbot&lt;br /&gt;
&lt;br /&gt;
== DNS plugins ==&lt;br /&gt;
=== Gandi ===&lt;br /&gt;
&#039;&#039;&#039;NOTE: At time of writing, only an API key from the domain owner will work. So another account, even if listed technical contact, will not able to use the live DNS API, just the live DNS web interface. Since the writing of this HOWTO, there is now this as well https://github.com/obynio/certbot-plugin-gandi TODO&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Get API key from Gandi (somewhere in account settings)&lt;br /&gt;
* install certbot-plugin-gandi&lt;br /&gt;
 pip install &#039;git+https://gitlab.com/cspublic/certbot-plugin-gandi.git&#039;&lt;br /&gt;
 mkdir /etc/certbot-plugin-gandi&lt;br /&gt;
* create /etc/certbot-plugin-gandi/gandi.ini with the following:&lt;br /&gt;
 certbot_plugin_gandi:dns_api_key=APIKEY&lt;br /&gt;
* a bit of paranoia&lt;br /&gt;
 chmod 600 /etc/certbot-plugin-gandi/gandi.ini&lt;br /&gt;
* request certificate for both mydomain.blabla &#039;&#039;&#039;and&#039;&#039;&#039; *.mydomain.blabla&lt;br /&gt;
&#039;&#039;&#039;NOTE: At time of writing, the default sever end point used by cerbot (0.22) is not compatible with ACME v2, as a workaround --server must be passed manually. Next version of certbot should point to the right server&#039;&#039;&#039;&lt;br /&gt;
 /usr/local/bin/certbot certonly -a certbot-plugin-gandi:dns --certbot-plugin-gandi:dns-credentials /etc/certbot-plugin-gandi/gandi.ini -d mydomain.blabla -d *.mydomain.blabla --server https://acme-v02.api.letsencrypt.org/directory&lt;br /&gt;
* If all goes well certs will be there:&lt;br /&gt;
&#039;&#039;&#039;NOTE: At time of writing, certbot-plugin-gandi seems to behave a bit funnily when asked to request a challenge for a wildcard cert (it works flawslessly for regular domains). It might be needed to run the command several times to get the infamous CONGRATULATION message from certbot.&#039;&#039;&#039;&lt;br /&gt;
 /etc/letsencrypt/live/mydomain.blabla/fullchain.pem&lt;br /&gt;
 /etc/letsencrypt/live/mydomain.blabla/privkey.pem&lt;br /&gt;
&lt;br /&gt;
== Renewal ==&lt;br /&gt;
To non-interactively renew *all* of your certificates:&lt;br /&gt;
 /usr/local/bin/certbot renew&lt;br /&gt;
&lt;br /&gt;
=== douglas ===&lt;br /&gt;
=== agnes ===&lt;br /&gt;
&#039;&#039;&#039;TODO: hooks!&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
service nginx restart&lt;br /&gt;
prosodyctl reload&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Certificates]]&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Talk:Homebrew_Server_Club&amp;diff=221</id>
		<title>Talk:Homebrew Server Club</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Talk:Homebrew_Server_Club&amp;diff=221"/>
		<updated>2019-01-17T13:44:30Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Todo==&lt;br /&gt;
What do we need on this page?&lt;br /&gt;
&lt;br /&gt;
:Actually maybe we need much more pages? The HBS page could be used to describe the HBSC community and relevant links? But this could grow as the documentation improves of course. The thread on the list was started in relation to collect links about making website not ridiculously heavy, so we could start with that? [[User:LeWikiAdmin|LeWikiAdmin]] ([[User talk:LeWikiAdmin|talk]]) 13:44, 17 January 2019 (UTC)&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=9</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=9"/>
		<updated>2018-04-13T12:08:07Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Computer Lib cover by Ted Nelson 1974.png|right]]&lt;br /&gt;
&#039;&#039;&#039;Welcome to RUN YOUR OWN, the wiki documentation of LURK&#039;s servers.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
One of LURK&#039;s mission is to make sure we&#039;re not creating yet another silo for online discussions and publishing, but also give enough inspiration for others to do the same and start provide their own centralised, decentralised, federated, and whatnot services.&lt;br /&gt;
&lt;br /&gt;
Running your own server, and its services, is not always straightforward, so this is why we are using this space to document and make public how we maintain and configure LURK servers.&lt;br /&gt;
&lt;br /&gt;
== Request for Feedback ==&lt;br /&gt;
&lt;br /&gt;
This documentation effort is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves.  We gladly welcome your feedback and comments:&lt;br /&gt;
* Mailing list about LURK: https://we.lurk.org/postorius/lists/metalurk.we.lurk.org&lt;br /&gt;
* Chat about LURK: https://talk.lurk.org/channel/_meta&lt;br /&gt;
&lt;br /&gt;
== Support! ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#FF0000&amp;quot;&amp;gt;&#039;&#039;&#039;LURK is a volunteer run project.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you found something useful here, please [https://liberapay.com/LURK consider supporting us] (if you can afford it!)&lt;br /&gt;
&lt;br /&gt;
== Server Documents ==&lt;br /&gt;
&lt;br /&gt;
{{Special:AllPages|namespace=14}}&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=8</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=8"/>
		<updated>2018-04-13T12:06:00Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: /* Support! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Computer Lib cover by Ted Nelson 1974.png|right]]&lt;br /&gt;
&#039;&#039;&#039;Welcome to RUN YOUR OWN, the wiki documentation of LURK&#039;s servers.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
One of LURK&#039;s mission is to make sure we&#039;re not creating yet another silo for online discussions and publishing, but also give enough inspiration for others to do the same and start provide their own centralised, decentralised, federated, and whatnot services.&lt;br /&gt;
&lt;br /&gt;
Running your own server, and its services, is not always straightforward, so this is why we are using this space to document and make public how we maintain and configure LURK servers. This is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves. &lt;br /&gt;
&lt;br /&gt;
== Request for Feedback ==&lt;br /&gt;
&lt;br /&gt;
This documentation effort is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves.  We gladly welcome your feedback and comments:&lt;br /&gt;
* Mailing list about LURK: https://we.lurk.org/postorius/lists/metalurk.we.lurk.org&lt;br /&gt;
* Chat about LURK: https://talk.lurk.org/channel/_meta&lt;br /&gt;
&lt;br /&gt;
== Support! ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#FF0000&amp;quot;&amp;gt;&#039;&#039;&#039;LURK is a volunteer run project.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you found something useful here, please [https://liberapay.com/LURK consider supporting us] (if you can afford it!)&lt;br /&gt;
&lt;br /&gt;
== Server Documents ==&lt;br /&gt;
&lt;br /&gt;
{{Special:AllPages|namespace=14}}&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=File:Runyourown.png&amp;diff=7</id>
		<title>File:Runyourown.png</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=File:Runyourown.png&amp;diff=7"/>
		<updated>2018-04-13T12:04:17Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=6</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=6"/>
		<updated>2018-04-13T11:56:31Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Computer Lib cover by Ted Nelson 1974.png|right]]&lt;br /&gt;
&#039;&#039;&#039;Welcome to RUN YOUR OWN, the wiki documentation of LURK&#039;s servers.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
One of LURK&#039;s mission is to make sure we&#039;re not creating yet another silo for online discussions and publishing, but also give enough inspiration for others to do the same and start provide their own centralised, decentralised, federated, and whatnot services.&lt;br /&gt;
&lt;br /&gt;
Running your own server, and its services, is not always straightforward, so this is why we are using this space to document and make public how we maintain and configure LURK servers. This is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves. &lt;br /&gt;
&lt;br /&gt;
== Request for Feedback ==&lt;br /&gt;
&lt;br /&gt;
This documentation effort is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves.  We gladly welcome your feedback and comments:&lt;br /&gt;
* Mailing list about LURK: https://we.lurk.org/postorius/lists/metalurk.we.lurk.org&lt;br /&gt;
* Chat about LURK: https://talk.lurk.org/channel/_meta&lt;br /&gt;
&lt;br /&gt;
== Support! ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#FF33FF&amp;quot;&amp;gt;&#039;&#039;&#039;LURK is a volunteer run project.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you found something useful here, please [https://liberapay.com/LURK consider supporting us] (if you can afford it!)&lt;br /&gt;
&lt;br /&gt;
== Server Documents ==&lt;br /&gt;
&lt;br /&gt;
{{Special:AllPages|namespace=14}}&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=File:Computer_Lib_cover_by_Ted_Nelson_1974.png&amp;diff=5</id>
		<title>File:Computer Lib cover by Ted Nelson 1974.png</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=File:Computer_Lib_cover_by_Ted_Nelson_1974.png&amp;diff=5"/>
		<updated>2018-04-13T11:55:33Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=4</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=4"/>
		<updated>2018-04-13T11:50:18Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: /* Support! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to RUN YOUR OWN, the wiki documentation of LURK&#039;s servers.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
One of LURK&#039;s mission is to make sure we&#039;re not creating yet another silo for online discussions and publishing, but also give enough inspiration for others to do the same and start provide their own centralised, decentralised, federated, and whatnot services.&lt;br /&gt;
&lt;br /&gt;
Running your own server, and its services, is not always straightforward, so this is why we are using this space to document and make public how we maintain and configure LURK servers. This is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves. &lt;br /&gt;
&lt;br /&gt;
== Request for Feedback ==&lt;br /&gt;
&lt;br /&gt;
This documentation effort is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves.  We gladly welcome your feedback and comments:&lt;br /&gt;
* Mailing list about LURK: https://we.lurk.org/postorius/lists/metalurk.we.lurk.org&lt;br /&gt;
* Chat about LURK: https://talk.lurk.org/channel/_meta&lt;br /&gt;
&lt;br /&gt;
== Support! ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#FF33FF&amp;quot;&amp;gt;&#039;&#039;&#039;LURK is a volunteer run project.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you found something useful here, please [https://liberapay.com/LURK consider supporting us] (if you can afford it!)&lt;br /&gt;
&lt;br /&gt;
== Server Documents ==&lt;br /&gt;
&lt;br /&gt;
{{Special:AllPages|namespace=14}}&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=3</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=3"/>
		<updated>2018-04-13T11:48:05Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to RUN YOUR OWN, the wiki documentation of LURK&#039;s servers.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
One of LURK&#039;s mission is to make sure we&#039;re not creating yet another silo for online discussions and publishing, but also give enough inspiration for others to do the same and start provide their own centralised, decentralised, federated, and whatnot services.&lt;br /&gt;
&lt;br /&gt;
Running your own server, and its services, is not always straightforward, so this is why we are using this space to document and make public how we maintain and configure LURK servers. This is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves. &lt;br /&gt;
&lt;br /&gt;
== Request for Feedback ==&lt;br /&gt;
&lt;br /&gt;
This documentation effort is an ongoing process, we add stuff as we develop the environment, and learn more about it ourselves.  We gladly welcome your feedback and comments:&lt;br /&gt;
* Mailing list about LURK: https://we.lurk.org/postorius/lists/metalurk.we.lurk.org&lt;br /&gt;
* Chat about LURK: https://talk.lurk.org/channel/_meta&lt;br /&gt;
&lt;br /&gt;
== Support! ==&lt;br /&gt;
&lt;br /&gt;
LURK is a volunteer run project, if you found something useful here, consider supporting us (if you can afford it!)&lt;br /&gt;
&lt;br /&gt;
https://liberapay.com/LURK&lt;br /&gt;
&lt;br /&gt;
== Server Documents ==&lt;br /&gt;
&lt;br /&gt;
{{Special:AllPages|namespace=14}}&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
	<entry>
		<id>https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://things.bleu255.com/runyourown/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2018-04-13T11:16:10Z</updated>

		<summary type="html">&lt;p&gt;LeWikiAdmin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
test&lt;br /&gt;
&lt;br /&gt;
Consult the [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;/div&gt;</summary>
		<author><name>LeWikiAdmin</name></author>
	</entry>
</feed>