User:MiszaBot/Archive HowTo

MiszaBot (talk · contribs) used Noarchive all namespaces. Since January 2015 BarrasBot (talk · contribs) took over this job.

NOTE: Before setting up automatic archiving on an article's talk page, please establish a consensus that archiving is needed there.

How to set up archiving? change

Put the following template on the page that you want automatically archived:

NOTE: The exact code below won't work - please see the examples for possible options.
{{User:MiszaBot/config
|algo = old(...)
|archive = Name of archive page
[other parameters - ***read below***]
}}

Well, maybe not exactly that (read about required options below), but that's how it's done. By the way, the template has no content and is sysop-protected, so don't worry about visual appearance. :)

The bot expects to see only one parameter per line. If you drop out the newlines used in the above example, e.g., by wrapping the template invocation onto a single line, the bot may not do what you expect.


Quick examples change

Configuration may not be intuitive to get the hang of it, but it's flexible and gives potentially vast possibilities.

Please change "User talk:Example" to the exact name of your own page!
If it's still not working, read about the "minthreadsleft" and "minthreadstoarchive" parameters below.

Example 1 - static archive change

NOTE: While simplest, this is probably not the best option - the second is most common.
{{User:MiszaBot/config
|algo = old(7d)
|archive = User talk:Example/Archive
}}

This setup archives threads from User talk:Example to User talk:Example/Archive after they are 7 days old (counting from the newest timestamp). The archive will grow indefinitely. Probably not a very useful config (unless for sending threads to a periodically cleaned trash bin or to decide yourself when to go to the next archive page), but it's easiest, so I'm mentioning it first.

Example 2 - incremental archives change

{{User:MiszaBot/config
|algo = old(48h)
|archive = User talk:Example/Archive %(counter)d
|counter = 3
|maxarchivesize = 250K
}}

This tells the bot to archive threads from User talk:Example to User talk:Example/Archive 3 (more about variables below) until it fills up to 250 kilobytes, whereupon the bot will move to 4 (updating the counter when saving page). Remember to specify the maximum size of an archive, or it will behave pretty much like in the first example.

Example 3 - date-based archives change

NOTE: Do not substitute the "year" and "monthname" with actual values - the bot will treat them as variables accordingly.
{{User:MiszaBot/config
|algo = old(5d)
|archive = User talk:Example/Archives/%(year)d/%(monthname)s
}}

In this configuration, threads older than 5 days will land in archives depending on their date (the newest timestamp). You can read about other variables below.

Parameters explained change

parameter meaning
archive Name of the page to which archived threads will be put. Supports variables.
algo Algorithm that instructs the bot how to decide whether to archive a thread or not. Complex formulas (including regex matching) will be available in the future, but so far it must be of the form old(...) where ... specifies the maximum age of a thread (in hours or days: 24h, 72h, 5d, 21d etc.)
counter The current value of the counter. If the %(counter)d variable is not used, it is ignored. The bot will update this parameter as necessary.
maxarchivesize The maximum archive size before incrementing the counter. Ignored if the counter is not used.
minthreadsleft The minimum number of threads that should be left on a page (to prevent pages from getting completely harvested). Default value: 5
minthreadstoarchive The minimum number of threads to place in the archive at one time (lowers edit frequency by refusing to act when only a few threads would be archived). Default value: 2
archiveheader Content that will be put on new archive pages as the header. Supports variables. Cannot be multiline (use a template like {{archive-nav}}). Defaults to {{talkarchive}}.
key Secret key that (if valid) allows archives to not be subpages of the page being archived. This is not used by anyone. If you had one, please make a short post on the talk page, and I will email you directly if you have email enabled. If you do not have email enabled, I will not be able to assist you.

Variables change

variable... ...expands to...
%(counter)d the current value of the counter
%(year)d year of the thread being archived
%(month)d month (as a number 1-12) of the thread being archived
%(monthname)s English name of the month above
%(monthnameshort)s first three letters of the name above

Those python-savvy people will immediately recognize these variables are filled at runtime with the % operator and should know how to adjust the format. A few points of interest to others:

  • make sure you don't mess up the last letter after the brackets (it's "d" for integers and "s" for strings)
  • integer variables may be left-padded with zeros:
    %(counter)03d evaluates to 013 if the counter's value equals 13,
    %(month)02d becomes 05 for May etc.

After you have set up archiving change

The bot runs once a day at a preset hour. Simply wait for the next cycle, and you should see the bot's entries in the history list of your article providing there was anything to archive, and the history list entry should provide a link to the archive page you specified.

Various templates will produce an automatic list of archive subpages. Typically, such a template will be added to the top-level talk page to make archives easier to find. Simply add the template name in {{curly-braces}} where you want it to appear. Popular templates used for this purpose include:

See also change