commit
139feed586
@ -0,0 +1,5 @@
|
|||||||
|
list-info-out.html
|
||||||
|
list-options.html
|
||||||
|
list-subscribe.html
|
||||||
|
palette
|
||||||
|
node_modules
|
@ -0,0 +1,43 @@
|
|||||||
|
# lubuntu-mailman-style
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
This project is for the maintainence of stylesheets and templates for the Lubuntu mailing list pages located on the [Ubuntu Mailing Lists](https://lists.ubuntu.com) page. HTML templates are located in the "templates" folder and are used to generate HTML similar to what Mailman generates, by replacing template tags with placeholder HTML taken from the actual site. These translations are located in "templates/translations".
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
* Node 12.16.0 or newer ([NVM](https://github.com/nvm-sh/nvm) suggested)
|
||||||
|
* a web browser
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
This is how you can use this repository to make updates to the styles or templates:
|
||||||
|
|
||||||
|
### Checkout
|
||||||
|
Clone the git repo:
|
||||||
|
```bash
|
||||||
|
git clone <this repository>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Install Dependencies
|
||||||
|
Install the serve npm module to statically serve your local working directory:
|
||||||
|
```bash
|
||||||
|
npm i -g serve
|
||||||
|
```
|
||||||
|
|
||||||
|
### Run
|
||||||
|
Execute the script to generate HTML from the mailman templates:
|
||||||
|
```bash
|
||||||
|
./fill_template.sh
|
||||||
|
```
|
||||||
|
Start serving the current directory (execute inside lubuntu-mailman-style project):
|
||||||
|
```bash
|
||||||
|
serve .
|
||||||
|
```
|
||||||
|
Now, navigate to [localhost](http://localhost:5000) and open one of the html files to preview it--any changes to the underlying files will update without having to restart "serve".
|
||||||
|
|
||||||
|
## Updating the Templates and Translations
|
||||||
|
To update templates used by this repository, simply navigate to the following URLs, view page source, and save the page source to the templates folder. Be sure to check for new, unmapped tags and add them to "templates/translations".
|
||||||
|
|
||||||
|
To update translations, simply add or edit translation lines. They are in "templates/translations" in the following format:
|
||||||
|
```text
|
||||||
|
<MM-List-Name>////Lubuntu-users
|
||||||
|
```
|
||||||
|
As you can see, the first part of the line is the placeholder tag that will be replaced, then there is a separator "////", followed by the text to replace the tag with. If newline characters are required in the replacement text, please use the "\n" escape sequence, making sure to put the entire replacement on the same line.
|
@ -0,0 +1,46 @@
|
|||||||
|
#! /usr/bin/env node
|
||||||
|
|
||||||
|
var fs = require('fs');
|
||||||
|
var readline = require('readline');
|
||||||
|
|
||||||
|
var translationLines = [];
|
||||||
|
|
||||||
|
var readInterface = readline.createInterface({
|
||||||
|
input: fs.createReadStream('./templates/translations'),
|
||||||
|
output: process.stdout,
|
||||||
|
console: false
|
||||||
|
});
|
||||||
|
|
||||||
|
readInterface.on('line', function(line) {
|
||||||
|
translationLines.push(line);
|
||||||
|
});
|
||||||
|
|
||||||
|
readInterface.on('close', () => {
|
||||||
|
replaceFile("templates/lubuntu-council-list-info-template.html", "list-info-out.html");
|
||||||
|
replaceFile("templates/lubuntu-council-options-template.html", "list-options.html");
|
||||||
|
replaceFile("templates/lubuntu-council-subscribe-template.html", "list-subscribe.html");
|
||||||
|
});
|
||||||
|
|
||||||
|
function replaceFile (infile, outfile) {
|
||||||
|
|
||||||
|
fs.readFile(infile, 'utf8', function (err, data) {
|
||||||
|
if (err) {
|
||||||
|
return console.log(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
//# var result = data.replace(/<MM\-([A-Za-z\-]+)>/g, '$1');
|
||||||
|
|
||||||
|
for(i in translationLines) {
|
||||||
|
var toFrom = translationLines[i].split('////');
|
||||||
|
var to = toFrom[0];
|
||||||
|
var from = toFrom[1];
|
||||||
|
|
||||||
|
var pattern = new RegExp(to, 'gi');
|
||||||
|
data = data.replace(pattern, from).replace(/\\n/g, "\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
fs.writeFile(outfile, data, 'utf8', function (err) {
|
||||||
|
if (err) return console.log(err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
body {
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: Ubuntu, sans-serif;
|
||||||
|
color: #555555;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr td[bgcolor] {
|
||||||
|
background-color: #0074B9;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
font[color] {
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td[bgcolor] {
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
b {
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #1E73BE;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
@ -0,0 +1,173 @@
|
|||||||
|
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<!-- $Revision: 5865 $ -->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<TITLE>Lubuntu-users Info Page</TITLE>
|
||||||
|
<link rel="stylesheet" type="text/css" href="lubuntu_style.css">
|
||||||
|
</HEAD>
|
||||||
|
<BODY BGCOLOR="#ffffff">
|
||||||
|
|
||||||
|
<P>
|
||||||
|
<TABLE BORDER="0" CELLSPACING="4" CELLPADDING="5">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#99CCFF" ALIGN="CENTER">
|
||||||
|
<B><FONT COLOR="#000000" SIZE="+1">Lubuntu-users --
|
||||||
|
Lubuntu Help and User Discussions</FONT></B>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<TD COLSPAN="1" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<B><FONT COLOR="#000000">About Lubuntu-users</FONT></B>
|
||||||
|
</TD>
|
||||||
|
<TD COLSPAN="1" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<FORM Method=POST ACTION="../listinfo/lubuntu-users"><INPUT type="Submit" name="displang-button" value="View this page in">
|
||||||
|
<Select name="language">
|
||||||
|
<option value="en" Selected> English (USA) </option>
|
||||||
|
<option value="zh_TW"> Chinese (Taiwan) </option>
|
||||||
|
</Select>
|
||||||
|
</FORM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<P><!---->This mailing list serves the Lubuntu community for the purposes of support and general discussion.
|
||||||
|
<br>
|
||||||
|
<br>Web: http://lubuntu.me
|
||||||
|
<br>Wiki: https://wiki.ubuntu.com/Lubuntu
|
||||||
|
<br>IRC: irc://chat.freenode.org/lubuntu
|
||||||
|
<br>Telegram: t.me/lubuntudevel
|
||||||
|
<br> <!----></P>
|
||||||
|
<p> To see the collection of prior postings to the list,
|
||||||
|
visit the <a href="https://lists.ubuntu.com/archives/lubuntu-users">Lubuntu-users
|
||||||
|
Archives</a>.
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<B><FONT COLOR="#000000">Using Lubuntu-users</FONT></B>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
To post a message to all the list members, send email to
|
||||||
|
<A HREF="mailto:lubuntu-users@lists.ubuntu.com">lubuntu-users@lists.ubuntu.com</A>.
|
||||||
|
|
||||||
|
<p>You can subscribe to the list, or change your existing
|
||||||
|
subscription, in the sections below.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<B><FONT COLOR="#000000">Subscribing to Lubuntu-users</FONT></B>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<P>
|
||||||
|
Subscribe to Lubuntu-users by filling out the following
|
||||||
|
form.
|
||||||
|
You will be sent email requesting confirmation, to
|
||||||
|
prevent others from gratuitously subscribing you. This is a hidden list, which means that the
|
||||||
|
list of members is available only to the list administrator.
|
||||||
|
<ul>
|
||||||
|
<FORM Method=POST ACTION="../subscribe/lubuntu-users">
|
||||||
|
<TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
|
||||||
|
WIDTH="70%">
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd" WIDTH="55%">Your email address:</TD>
|
||||||
|
<TD WIDTH="33%"><INPUT type="Text" name="email" size="30" value="">
|
||||||
|
</TD>
|
||||||
|
<TD WIDTH="12%"> </TD></TR>
|
||||||
|
<tr>
|
||||||
|
<td bgcolor="#dddddd" width="55%">Your name (optional):</td>
|
||||||
|
<td width="33%"><INPUT type="Text" name="fullname" size="30" value=""></td>
|
||||||
|
<TD WIDTH="12%"> </TD></TR>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="3"><FONT SIZE=-1>You may enter a
|
||||||
|
privacy password below. This provides only mild security,
|
||||||
|
but should prevent others from messing with your
|
||||||
|
subscription. <b>Do not use a valuable password</b> as
|
||||||
|
it will occasionally be emailed back to you in cleartext.
|
||||||
|
|
||||||
|
<br><br>If you choose not to enter a password, one will be
|
||||||
|
automatically generated for you, and it will be sent to
|
||||||
|
you once you've confirmed your subscription. You can
|
||||||
|
always request a mail-back of your password when you edit
|
||||||
|
your personal options.
|
||||||
|
|
||||||
|
</font>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd">Pick a password:</TD>
|
||||||
|
<TD><INPUT type="Password" name="pw" size="15"></TD>
|
||||||
|
<TD> </TD></TR>
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd">Reenter password to confirm:</TD>
|
||||||
|
<TD><INPUT type="Password" name="pw-conf" size="15"></TD>
|
||||||
|
<TD> </TD></TR>
|
||||||
|
<tr>
|
||||||
|
<TD BGCOLOR="#dddddd">Which language do you prefer to display your messages?</TD>
|
||||||
|
<TD>
|
||||||
|
<Select name="language">
|
||||||
|
<option value="en" Selected> English (USA) </option>
|
||||||
|
<option value="zh_TW"> Chinese (Taiwan) </option>
|
||||||
|
</Select></TD>
|
||||||
|
<TD> </TD></TR>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>Would you like to receive list mail batched in a daily
|
||||||
|
digest?
|
||||||
|
</td>
|
||||||
|
<td><input type=radio name="digest" value="0" CHECKED> No
|
||||||
|
<input type=radio name="digest" value="1"> Yes
|
||||||
|
</TD>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td colspan="3">
|
||||||
|
<center><INPUT type="Submit" name="email-button" value="Subscribe"></center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</TABLE>
|
||||||
|
</FORM>
|
||||||
|
</ul>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<a name="subscribers">
|
||||||
|
<B><FONT COLOR="#000000">Lubuntu-users Subscribers</FONT></B></a>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%">
|
||||||
|
<FORM Method=POST ACTION="../roster/lubuntu-users">
|
||||||
|
<INPUT name="language" type="HIDDEN" value="en" >(<i>The subscribers list is only available to the list
|
||||||
|
administrator.</i>) <p>Enter your admin address and password to visit the subscribers list: <p><center> Admin address: <INPUT type="Text" name="roster-email" size="20" value="">Password: <INPUT type="Password" name="roster-pw" size="15"> <INPUT name="SubscriberRoster" type="SUBMIT" value="Visit Subscriber List" ></center>
|
||||||
|
</FORM>
|
||||||
|
<p>
|
||||||
|
<FORM Method=POST ACTION="../options/lubuntu-users">
|
||||||
|
To unsubscribe from Lubuntu-users, get a password reminder,
|
||||||
|
or change your subscription options enter your subscription
|
||||||
|
email address:
|
||||||
|
<p><center> <INPUT name="email" type="TEXT" value="" size="30" > <INPUT name="UserOptions" type="SUBMIT" value="Unsubscribe or edit options" ><INPUT name="language" type="HIDDEN" value="en" ></center> If you leave the field blank, you will be prompted for
|
||||||
|
your email address
|
||||||
|
</FORM>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<hr><address><a href="../listinfo/lubuntu-users">Lubuntu-users</a> list run by <a href="mailto:lubuntu-users-owner@lists.ubuntu.com">wxl at ubuntu.com, tsimonq2 at lubuntu.me</a><br><a href="../admin/lubuntu-users">Lubuntu-users administrative interface</a> (requires authorization)<br><a href="../listinfo">Overview of all lists.ubuntu.com mailing lists</a><p>
|
||||||
|
<table WIDTH="100%" BORDER="0">
|
||||||
|
<tr>
|
||||||
|
<td><a href="http://www.gnu.org/software/mailman/index.html">Delivered by Mailman<br>version 2.1.20</a></td>
|
||||||
|
<td><a href="http://www.python.org/">Python Powered</a></td>
|
||||||
|
<td><a href="http://www.gnu.org/">GNU's Not Unix</a></td>
|
||||||
|
<td><a href="http://www.debian.org/">Debian Powered</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</address>
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
||||||
|
|
@ -0,0 +1,99 @@
|
|||||||
|
|
||||||
|
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
<TITLE>Lubuntu-users list: member options for user paintface07@gmail.com</TITLE>
|
||||||
|
<link rel="stylesheet" type="text/css" href="lubuntu_style.css">
|
||||||
|
</HEAD>
|
||||||
|
<BODY bgcolor="white"
|
||||||
|
dir="ltr">
|
||||||
|
|
||||||
|
<table CELLPADDING="5" CELLSPACING="4" BORDER="0" WIDTH="100%">
|
||||||
|
<tr>
|
||||||
|
<td BGCOLOR="#99ccff"><center><h2>Lubuntu-users list: member options for user paintface07@gmail.com</h2></center></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><center>
|
||||||
|
<FORM action="../options/lubuntu-users" method="POST" >
|
||||||
|
<INPUT name="displang-button" type="SUBMIT" value="View this page in" >
|
||||||
|
<Select name="language">
|
||||||
|
<option value="en" Selected> English (USA) </option>
|
||||||
|
<option value="zh_TW"> Chinese (Taiwan) </option>
|
||||||
|
</Select><INPUT name="email" type="HIDDEN" value="paintface07@gmail.com" >
|
||||||
|
</FORM>
|
||||||
|
</center></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<FORM action="../options/lubuntu-users" method="POST" >
|
||||||
|
<INPUT name="language" type="HIDDEN" value="en" >
|
||||||
|
<table CELLPADDING="5" CELLSPACING="4" BORDER="0" WIDTH="100%">
|
||||||
|
<tr>
|
||||||
|
<td>In order to change your membership option, you must
|
||||||
|
first log in by giving your membership password in the section
|
||||||
|
below. If you don't remember your membership password, you can have it
|
||||||
|
emailed to you by clicking on the button below. If you just want to
|
||||||
|
unsubscribe from this list, click on the <em>Unsubscribe</em> button and a
|
||||||
|
confirmation message will be sent to you.
|
||||||
|
|
||||||
|
<p><strong><em>Important:</em></strong> From this point on, you must have
|
||||||
|
cookies enabled in your browser, otherwise none of your changes will take
|
||||||
|
effect.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><center>
|
||||||
|
<table CELLPADDING="5" CELLSPACING="4" BORDER="0" WIDTH="50%">
|
||||||
|
<tr>
|
||||||
|
<td><INPUT name="email" type="HIDDEN" value="paintface07@gmail.com" ></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><div align="right">Password:</div></td>
|
||||||
|
<td><INPUT name="password" type="PASSWORD" value="" size="20" ></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td COLSPAN="2"><center><INPUT name="login" type="SUBMIT" value="Log in" ></center></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</center></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td BGCOLOR="#99ccff"><center><h2>Unsubscribe</h2></center></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>By clicking on the <em>Unsubscribe</em> button, a
|
||||||
|
confirmation message will be emailed to you. This message will have a
|
||||||
|
link that you should click on to complete the removal process (you can
|
||||||
|
also confirm by email; see the instructions in the confirmation
|
||||||
|
message).</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><center><INPUT name="login-unsub" type="SUBMIT" value="Unsubscribe" ></center></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td BGCOLOR="#99ccff"><center><h2>Password reminder</h2></center></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>By clicking on the <em>Remind</em> button, your
|
||||||
|
password will be emailed to you.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><center><INPUT name="login-remind" type="SUBMIT" value="Remind" ></center></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</FORM>
|
||||||
|
<hr><address><a href="../listinfo/lubuntu-users">Lubuntu-users</a> list run by <a href="mailto:lubuntu-users-owner@lists.ubuntu.com">wxl at ubuntu.com, tsimonq2 at lubuntu.me</a><br><a href="../admin/lubuntu-users">Lubuntu-users administrative interface</a> (requires authorization)<br><a href="../listinfo">Overview of all lists.ubuntu.com mailing lists</a><p>
|
||||||
|
<table WIDTH="100%" BORDER="0">
|
||||||
|
<tr>
|
||||||
|
<td><a href="http://www.gnu.org/software/mailman/index.html">Delivered by Mailman<br>version 2.1.20</a></td>
|
||||||
|
<td><a href="http://www.python.org/">Python Powered</a></td>
|
||||||
|
<td><a href="http://www.gnu.org/">GNU's Not Unix</a></td>
|
||||||
|
<td><a href="http://www.debian.org/">Debian Powered</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</address>
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
||||||
|
|
@ -0,0 +1,23 @@
|
|||||||
|
<!-- $Revision: 3550 $ -->
|
||||||
|
<html>
|
||||||
|
<head><title>Lubuntu-users Subscription results</title><link rel="stylesheet" type="text/css" href="lubuntu_style.css"></head>
|
||||||
|
<body bgcolor="white">
|
||||||
|
<h1>Lubuntu-users Subscription results</h1>
|
||||||
|
Your subscription request has been received, and will soon be acted upon.
|
||||||
|
Depending on the configuration of this mailing list, your subscription request
|
||||||
|
may have to be first confirmed by you via email, or approved by the list
|
||||||
|
moderator. If confirmation is required, you will soon get a confirmation
|
||||||
|
email which contains further instructions.
|
||||||
|
<hr><address><a href="../listinfo/lubuntu-users">Lubuntu-users</a> list run by <a href="mailto:lubuntu-users-owner@lists.ubuntu.com">wxl at ubuntu.com, tsimonq2 at lubuntu.me</a><br><a href="../admin/lubuntu-users">Lubuntu-users administrative interface</a> (requires authorization)<br><a href="../listinfo">Overview of all lists.ubuntu.com mailing lists</a><p>
|
||||||
|
<table WIDTH="100%" BORDER="0">
|
||||||
|
<tr>
|
||||||
|
<td><a href="http://www.gnu.org/software/mailman/index.html">Delivered by Mailman<br>version 2.1.20</a></td>
|
||||||
|
<td><a href="http://www.python.org/">Python Powered</a></td>
|
||||||
|
<td><a href="http://www.gnu.org/">GNU's Not Unix</a></td>
|
||||||
|
<td><a href="http://www.debian.org/">Debian Powered</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</address>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,141 @@
|
|||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<!-- $Revision: 5865 $ -->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<TITLE><MM-List-Name> Info Page</TITLE>
|
||||||
|
<link rel="stylesheet" type="text/css" href="./lubuntu_style.css">
|
||||||
|
</HEAD>
|
||||||
|
<BODY BGCOLOR="#ffffff">
|
||||||
|
|
||||||
|
<P>
|
||||||
|
<TABLE BORDER="0" CELLSPACING="4" CELLPADDING="5">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#99CCFF" ALIGN="CENTER">
|
||||||
|
<B><FONT COLOR="#000000" SIZE="+1"><MM-List-Name> --
|
||||||
|
<MM-List-Description></FONT></B>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<TD COLSPAN="1" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<B><FONT COLOR="#000000">About <MM-List-Name></FONT></B>
|
||||||
|
</TD>
|
||||||
|
<TD COLSPAN="1" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<MM-lang-form-start><MM-displang-box> <MM-list-langs>
|
||||||
|
<MM-form-end>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<P><MM-List-Info></P>
|
||||||
|
<p> To see the collection of prior postings to the list,
|
||||||
|
visit the <MM-Archive><MM-List-Name>
|
||||||
|
Archives</MM-Archive>.
|
||||||
|
<MM-Restricted-List-Message>
|
||||||
|
</p>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<B><FONT COLOR="#000000">Using <MM-List-Name></FONT></B>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
To post a message to all the list members, send email to
|
||||||
|
<A HREF="mailto:<MM-Posting-Addr>"><MM-Posting-Addr></A>.
|
||||||
|
|
||||||
|
<p>You can subscribe to the list, or change your existing
|
||||||
|
subscription, in the sections below.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<B><FONT COLOR="#000000">Subscribing to <MM-List-Name></FONT></B>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<P>
|
||||||
|
Subscribe to <MM-List-Name> by filling out the following
|
||||||
|
form.
|
||||||
|
<MM-List-Subscription-Msg>
|
||||||
|
<ul>
|
||||||
|
<MM-Subscribe-Form-Start>
|
||||||
|
<TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2"
|
||||||
|
WIDTH="70%">
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd" WIDTH="55%">Your email address:</TD>
|
||||||
|
<TD WIDTH="33%"><MM-Subscribe-Box>
|
||||||
|
</TD>
|
||||||
|
<TD WIDTH="12%"> </TD></TR>
|
||||||
|
<tr>
|
||||||
|
<td bgcolor="#dddddd" width="55%">Your name (optional):</td>
|
||||||
|
<td width="33%"><mm-fullname-box></td>
|
||||||
|
<TD WIDTH="12%"> </TD></TR>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="3"><FONT SIZE=-1>You may enter a
|
||||||
|
privacy password below. This provides only mild security,
|
||||||
|
but should prevent others from messing with your
|
||||||
|
subscription. <b>Do not use a valuable password</b> as
|
||||||
|
it will occasionally be emailed back to you in cleartext.
|
||||||
|
|
||||||
|
<br><br>If you choose not to enter a password, one will be
|
||||||
|
automatically generated for you, and it will be sent to
|
||||||
|
you once you've confirmed your subscription. You can
|
||||||
|
always request a mail-back of your password when you edit
|
||||||
|
your personal options.
|
||||||
|
<MM-Reminder>
|
||||||
|
</font>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd">Pick a password:</TD>
|
||||||
|
<TD><MM-New-Password-Box></TD>
|
||||||
|
<TD> </TD></TR>
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd">Reenter password to confirm:</TD>
|
||||||
|
<TD><MM-Confirm-Password></TD>
|
||||||
|
<TD> </TD></TR>
|
||||||
|
<tr>
|
||||||
|
<TD BGCOLOR="#dddddd">Which language do you prefer to display your messages?</TD>
|
||||||
|
<TD> <MM-list-langs></TD>
|
||||||
|
<TD> </TD></TR>
|
||||||
|
<mm-digest-question-start>
|
||||||
|
<tr>
|
||||||
|
<td>Would you like to receive list mail batched in a daily
|
||||||
|
digest?
|
||||||
|
</td>
|
||||||
|
<td><MM-Undigest-Radio-Button> No
|
||||||
|
<MM-Digest-Radio-Button> Yes
|
||||||
|
</TD>
|
||||||
|
</tr>
|
||||||
|
<mm-digest-question-end>
|
||||||
|
<tr>
|
||||||
|
<td colspan="3">
|
||||||
|
<center><MM-Subscribe-Button></center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</TABLE>
|
||||||
|
<MM-Form-End>
|
||||||
|
</ul>
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%" BGCOLOR="#FFF0D0">
|
||||||
|
<a name="subscribers">
|
||||||
|
<B><FONT COLOR="#000000"><MM-List-Name> Subscribers</FONT></B></a>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
<tr>
|
||||||
|
<TD COLSPAN="2" WIDTH="100%">
|
||||||
|
<MM-Roster-Form-Start>
|
||||||
|
<MM-Roster-Option>
|
||||||
|
<MM-Form-End>
|
||||||
|
<p>
|
||||||
|
<MM-Options-Form-Start>
|
||||||
|
<MM-Editing-Options>
|
||||||
|
<MM-Form-End>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<MM-Mailman-Footer>
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
@ -0,0 +1,317 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="SHORTCUT ICON" href="<mm-favicon>">
|
||||||
|
<title><MM-Presentable-User> membership configuration for <MM-List-Name>
|
||||||
|
</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="./lubuntu_style.css">
|
||||||
|
</head>
|
||||||
|
<BODY BGCOLOR="#ffffff">
|
||||||
|
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="5">
|
||||||
|
<TR><TD WIDTH="100%" BGCOLOR="#99CCFF"><B>
|
||||||
|
<FONT COLOR="#000000" SIZE=+1>
|
||||||
|
<MM-List-Name> mailing list membership configuration for
|
||||||
|
<MM-Presentable-User>
|
||||||
|
</FONT></B></TD></TR>
|
||||||
|
</TABLE>
|
||||||
|
<p>
|
||||||
|
<table width="100%" border="0" cellspacing="5" cellpadding="5">
|
||||||
|
<tr><td>
|
||||||
|
<b><MM-Presentable-User></b>'s subscription status,
|
||||||
|
password, and options for the <MM-List-Name> mailing list.
|
||||||
|
</td><td><MM-Form-Start><mm-logout-button><MM-Form-End></td>
|
||||||
|
</tr><tr>
|
||||||
|
<td colspan="2">
|
||||||
|
<MM-Case-Preserved-User>
|
||||||
|
|
||||||
|
<MM-Disabled-Notice>
|
||||||
|
|
||||||
|
<p><mm-results>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<MM-Form-Start>
|
||||||
|
<p>
|
||||||
|
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="5">
|
||||||
|
<TR><TD WIDTH="100%" BGCOLOR="#FFF0D0" colspan="2">
|
||||||
|
<FONT COLOR="#000000">
|
||||||
|
<B>Changing your <MM-List-Name> membership information</B>
|
||||||
|
</FONT></TD></TR>
|
||||||
|
<tr><td colspan="2">You can change the address that you are subscribed
|
||||||
|
to the mailing list with by entering the new address in the
|
||||||
|
fields below. Note that a confirmation email will be sent to
|
||||||
|
the new address, and the change must be confirmed before it is
|
||||||
|
processed.
|
||||||
|
|
||||||
|
<p>Confirmations time out after about <mm-pending-days>.
|
||||||
|
|
||||||
|
<p>You can also optionally set or change your real name
|
||||||
|
(i.e. <em>John Smith</em>).
|
||||||
|
|
||||||
|
<p>If you want to make the membership changes for all the
|
||||||
|
lists that you are subscribed to at <mm-host>, turn on the
|
||||||
|
<em>Change globally</em> check box.
|
||||||
|
|
||||||
|
</td></tr>
|
||||||
|
<tr><td><center>
|
||||||
|
<table border="0" cellspacing="2" cellpadding="2" width="80%" cols="2">
|
||||||
|
<tr><td bgcolor="#dddddd"><div align="right">New address:</div></td>
|
||||||
|
<td><mm-new-address-box></td>
|
||||||
|
</tr>
|
||||||
|
<tr><td bgcolor="#dddddd"><div align="right">Again to
|
||||||
|
confirm:</div></td>
|
||||||
|
<td><mm-confirm-address-box></td>
|
||||||
|
</tr>
|
||||||
|
</tr></table></center>
|
||||||
|
</td>
|
||||||
|
<td><center>
|
||||||
|
<table border="0" cellspacing="2" cellpadding="2" width="80%" cols="2">
|
||||||
|
<tr><td bgcolor="#dddddd"><div align="right">Your name
|
||||||
|
(optional):</div></td>
|
||||||
|
<td><mm-fullname-box></td>
|
||||||
|
</tr>
|
||||||
|
</table></center>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr><td colspan="2"><center><mm-change-address-button>
|
||||||
|
<p><mm-global-change-of-address>Change globally</center></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
|
||||||
|
<TR><TD WIDTH="50%" BGCOLOR="#FFF0D0"><FONT COLOR="#000000">
|
||||||
|
<B>Unsubscribing from <MM-List-Name></B></td>
|
||||||
|
|
||||||
|
<TD WIDTH="50%" BGCOLOR="#FFF0D0"><FONT COLOR="#000000">
|
||||||
|
<B>Your other <MM-Host> subscriptions</B>
|
||||||
|
</FONT></TD></TR>
|
||||||
|
|
||||||
|
<tr><td>
|
||||||
|
Turn on the confirmation checkbox and hit this button to
|
||||||
|
unsubscribe from this mailing list. <strong>Warning:</strong>
|
||||||
|
This action will be taken immediately!
|
||||||
|
<p>
|
||||||
|
<center><MM-Unsubscribe-Button></center></td>
|
||||||
|
<td>
|
||||||
|
You can view a list of all the other mailing lists at
|
||||||
|
<mm-host> for which you are a member. Use this if you want to
|
||||||
|
make the same membership option changes to this other
|
||||||
|
subscriptions.
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<center><MM-Other-Subscriptions-Submit></center>
|
||||||
|
</TD></TR>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="5">
|
||||||
|
<TR><TD COLSPAN=2 WIDTH="100%" BGCOLOR="#FFF0D0"><FONT COLOR="#000000">
|
||||||
|
<B>Your <MM-List-Name> Password</B>
|
||||||
|
</FONT></TD></TR>
|
||||||
|
|
||||||
|
<tr valign="TOP"><td WIDTH="50%">
|
||||||
|
<a name=reminder>
|
||||||
|
<center>
|
||||||
|
<h3>Forgotten Your Password?</h3>
|
||||||
|
</center>
|
||||||
|
Click this button to have your password emailed to your
|
||||||
|
membership address.
|
||||||
|
<p><MM-Umbrella-Notice>
|
||||||
|
<center>
|
||||||
|
<MM-Email-My-Pw>
|
||||||
|
</center>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td WIDTH="50%">
|
||||||
|
<a name=changepw>
|
||||||
|
<center>
|
||||||
|
<h3>Change Your Password</h3>
|
||||||
|
<TABLE BORDER="0" CELLSPACING="2" CELLPADDING="2" WIDTH="70%" COLS=2>
|
||||||
|
<TR><TD BGCOLOR="#dddddd"><div align="right">New
|
||||||
|
password:</div></TD>
|
||||||
|
<TD><MM-New-Pass-Box></TD>
|
||||||
|
</TR>
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="#dddddd"><div align="right">Again to
|
||||||
|
confirm:</div></TD>
|
||||||
|
<TD><MM-Confirm-Pass-Box></TD>
|
||||||
|
</TR>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<MM-Change-Pass-Button>
|
||||||
|
<p><center><mm-global-pw-changes-button>Change globally.
|
||||||
|
</center>
|
||||||
|
</TABLE>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="5">
|
||||||
|
<TR><TD WIDTH="100%" BGCOLOR="#FFF0D0"><FONT COLOR="#000000">
|
||||||
|
<B>Your <MM-List-Name> Subscription Options</B>
|
||||||
|
</FONT></TD></TR>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<i><strong>Current values are checked.</strong></i>
|
||||||
|
|
||||||
|
<p>Note that some of the options have a <em>Set globally</em>
|
||||||
|
checkbox. Checking this field will cause the changes to be made to
|
||||||
|
every mailing list that you are a member of on <mm-host>. Click on
|
||||||
|
<em>List my other subscriptions</em> above to see which other mailing
|
||||||
|
lists you are subscribed to.
|
||||||
|
<p>
|
||||||
|
<TABLE BORDER="0" CELLSPACING="3" CELLPADDING="4" WIDTH="100%">
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<a name="disable">
|
||||||
|
<strong>Mail delivery</strong></a><p>
|
||||||
|
Set this option to <em>Enabled</em> to receive messages posted
|
||||||
|
to this mailing list. Set it to <em>Disabled</em> if you want
|
||||||
|
to stay subscribed, but don't want mail delivered to you for a
|
||||||
|
while (e.g. you're going on vacation). If you disable mail
|
||||||
|
delivery, don't forget to re-enable it when you come back; it
|
||||||
|
will not be automatically re-enabled.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-delivery-enable-button>Enabled<br>
|
||||||
|
<mm-delivery-disable-button>Disabled<p>
|
||||||
|
<mm-global-deliver-button><i>Set globally</i>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<strong>Set Digest Mode</strong><p>
|
||||||
|
If you turn digest mode on, you'll get posts bundled together
|
||||||
|
(usually one per day but possibly more on busy lists), instead
|
||||||
|
of singly when they're sent. If digest mode is changed from
|
||||||
|
on to off, you may receive one last digest.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<MM-Undigest-Radio-Button>Off<br>
|
||||||
|
<MM-Digest-Radio-Button>On
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<strong>Get MIME or Plain Text Digests?</strong><p>
|
||||||
|
Your mail reader may or may not support MIME digests. In
|
||||||
|
general MIME digests are preferred, but if you have a problem
|
||||||
|
reading them, select plain text digests.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<MM-Mime-Digests-Button>MIME<br>
|
||||||
|
<MM-Plain-Digests-Button>Plain Text<p>
|
||||||
|
<mm-global-mime-button><i>Set globally</i>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<strong>Receive your own posts to the list?</strong><p>
|
||||||
|
Ordinarily, you will get a copy of every message you post to
|
||||||
|
the list. If you don't want to receive this copy, set this
|
||||||
|
option to <em>No</em>.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-dont-receive-own-mail-button>No<br>
|
||||||
|
<mm-receive-own-mail-button>Yes
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<strong>Receive acknowledgement mail when you send mail to
|
||||||
|
the list?</strong><p>
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-dont-ack-posts-button>No<br>
|
||||||
|
<mm-ack-posts-button>Yes
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><td bgcolor="#cccccc">
|
||||||
|
<strong>Get password reminder email for this list?</strong><p>
|
||||||
|
Once a month, you will get an email containing a password
|
||||||
|
reminder for every list at this host to which you are
|
||||||
|
subscribed. You can turn this off on a per-list basis by
|
||||||
|
selecting <em>No</em> for this option. If you turn off
|
||||||
|
password reminders for all the lists you are subscribed to, no
|
||||||
|
reminder email will be sent to you.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-dont-get-password-reminder-button>No<br>
|
||||||
|
<mm-get-password-reminder-button>Yes<p>
|
||||||
|
<mm-global-remind-button><i>Set globally</i>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<strong>Conceal yourself from subscriber list?</strong><p>
|
||||||
|
When someone views the list membership, your email address is
|
||||||
|
normally shown (in an obscured fashion to thwart spam
|
||||||
|
harvesters). If you do not want your email address to show up
|
||||||
|
on this membership roster at all, select <em>Yes</em> for this option.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<MM-Public-Subscription-Button>No<br>
|
||||||
|
<MM-Hide-Subscription-Button>Yes
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD BGCOLOR="#cccccc">
|
||||||
|
<strong>What language do you prefer?</strong><p>
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<MM-list-langs>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><td bgcolor="#cccccc">
|
||||||
|
<strong>Which topic categories would you like to subscribe
|
||||||
|
to?</strong><p>
|
||||||
|
By selecting one or more topics, you can filter the
|
||||||
|
traffic on the mailing list, so as to receive only a
|
||||||
|
subset of the messages. If a message matches one of
|
||||||
|
your selected topics, then you will get the message,
|
||||||
|
otherwise you will not.
|
||||||
|
|
||||||
|
<p>If a message does not match any topic, the delivery
|
||||||
|
rule depends on the setting of the option below. If
|
||||||
|
you do not select any topics of interest, you will get
|
||||||
|
all the messages sent to the mailing list.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-topics>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><td bgcolor="#cccccc">
|
||||||
|
<strong>Do you want to receive messages that do not match any
|
||||||
|
topic filter?</strong><p>
|
||||||
|
|
||||||
|
This option only takes effect if you've subscribed to
|
||||||
|
at least one topic above. It describes what the
|
||||||
|
default delivery rule is for messages that don't match
|
||||||
|
any topic filter. Selecting <em>No</em> says that if
|
||||||
|
the message does not match any topic filters, then you
|
||||||
|
won't get the message, while selecting <em>Yes</em>
|
||||||
|
says to deliver such non-matching messages to you.
|
||||||
|
|
||||||
|
<p>If no topics of interest are selected above, then
|
||||||
|
you will receive every message sent to the mailing
|
||||||
|
list.
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-suppress-nonmatching-topics>No<br>
|
||||||
|
<mm-receive-nonmatching-topics>Yes
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><td bgcolor="#cccccc">
|
||||||
|
<strong>Avoid duplicate copies of messages?</strong><p>
|
||||||
|
|
||||||
|
When you are listed explicitly in the <tt>To:</tt> or
|
||||||
|
<tt>Cc:</tt> headers of a list message, you can opt to
|
||||||
|
not receive another copy from the mailing list.
|
||||||
|
Select <em>Yes</em> to avoid receiving copies from the
|
||||||
|
mailing list; select <em>No</em> to receive copies.
|
||||||
|
|
||||||
|
<p>If the list has member personalized messages
|
||||||
|
enabled, and you elect to receive copies, every copy
|
||||||
|
will have a <tt>X-Mailman-Copy: yes</tt> header added
|
||||||
|
to it.
|
||||||
|
|
||||||
|
</td><td bgcolor="#cccccc">
|
||||||
|
<mm-receive-duplicates-button>No<br>
|
||||||
|
<mm-dont-receive-duplicates-button>Yes<p>
|
||||||
|
<mm-global-nodupes-button><i>Set globally</i>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
<tr><TD colspan="2">
|
||||||
|
<center><MM-options-Submit-button></center>
|
||||||
|
</td></tr>
|
||||||
|
|
||||||
|
</table>
|
||||||
|
</center>
|
||||||
|
<p>
|
||||||
|
<MM-Form-End>
|
||||||
|
|
||||||
|
<MM-Mailman-Footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,9 @@
|
|||||||
|
<!-- $Revision: 3550 $ -->
|
||||||
|
<html>
|
||||||
|
<head><title><MM-List-Name> Subscription results</title><link rel="stylesheet" type="text/css" href="./lubuntu_style.css"></head>
|
||||||
|
<body bgcolor="white">
|
||||||
|
<h1><MM-List-Name> Subscription results</h1>
|
||||||
|
<MM-Results>
|
||||||
|
<MM-Mailman-Footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,25 @@
|
|||||||
|
<MM-Archive><MM-List-Name>\n Archives</MM-Archive>.\n <MM-Restricted-List-Message>////<a href="https://lists.ubuntu.com/archives/lubuntu-users">Lubuntu-users\n Archives</a>.
|
||||||
|
<MM-List-Name>////Lubuntu-users
|
||||||
|
<MM-List-Description>////Lubuntu Help and User Discussions
|
||||||
|
<MM-lang-form-start>////<FORM Method=POST ACTION="../listinfo/lubuntu-users"><INPUT type="Submit" name="displang-button" value="View this page in">
|
||||||
|
<MM-form-end>////</FORM>
|
||||||
|
<MM-displang-box>////
|
||||||
|
<MM-List-Info>////<!---->This mailing list serves the Lubuntu community for the purposes of support and general discussion.\n<br>\n<br>Web: http://lubuntu.me\n<br>Wiki: https://wiki.ubuntu.com/Lubuntu\n<br>IRC: irc://chat.freenode.org/lubuntu\n<br>Telegram: t.me/lubuntudevel\n<br> <!---->
|
||||||
|
<MM-Posting-Addr>////lubuntu-users@lists.ubuntu.com
|
||||||
|
<MM-List-Subscription-Msg>////You will be sent email requesting confirmation, to\n prevent others from gratuitously subscribing you. This is a hidden list, which means that the\n list of members is available only to the list administrator.
|
||||||
|
<MM-Subscribe-Form-Start>////<FORM Method=POST ACTION="../subscribe/lubuntu-users">
|
||||||
|
<MM-Subscribe-Box>////<INPUT type="Text" name="email" size="30" value="">
|
||||||
|
<mm-fullname-box>////<INPUT type="Text" name="fullname" size="30" value="">
|
||||||
|
<MM-Reminder>////
|
||||||
|
<MM-New-Password-Box>////<INPUT type="Password" name="pw" size="15">
|
||||||
|
<MM-Confirm-Password>////<INPUT type="Password" name="pw-conf" size="15">
|
||||||
|
<MM-list-langs>//// \n<Select name="language">\n <option value="en" Selected> English (USA) </option>\n <option value="zh_TW"> Chinese (Taiwan) </option>\n</Select>
|
||||||
|
<MM-Undigest-Radio-Button>////<input type=radio name="digest" value="0" CHECKED>
|
||||||
|
<MM-Digest-Radio-Button>////<input type=radio name="digest" value="1">
|
||||||
|
<mm-digest-question-end>////
|
||||||
|
<MM-Subscribe-Button>////<INPUT type="Submit" name="email-button" value="Subscribe">
|
||||||
|
<MM-Roster-Form-Start>////<FORM Method=POST ACTION="../roster/lubuntu-users">
|
||||||
|
<MM-Roster-Option>////<INPUT name="language" type="HIDDEN" value="en" >(<i>The subscribers list is only available to the list\n administrator.</i>) <p>Enter your admin address and password to visit the subscribers list: <p><center> Admin address: <INPUT type="Text" name="roster-email" size="20" value="">Password: <INPUT type="Password" name="roster-pw" size="15"> <INPUT name="SubscriberRoster" type="SUBMIT" value="Visit Subscriber List" ></center>
|
||||||
|
<MM-Options-Form-Start>////<FORM Method=POST ACTION="../options/lubuntu-users">
|
||||||
|
<MM-Editing-Options>////To unsubscribe from Lubuntu-users, get a password reminder,\n or change your subscription options enter your subscription\n email address:\n <p><center> <INPUT name="email" type="TEXT" value="" size="30" > <INPUT name="UserOptions" type="SUBMIT" value="Unsubscribe or edit options" ><INPUT name="language" type="HIDDEN" value="en" ></center> If you leave the field blank, you will be prompted for\n your email address
|
||||||
|
<MM-Mailman-Footer>////<hr><address><a href="../listinfo/lubuntu-users">Lubuntu-users</a> list run by <a href="mailto:lubuntu-users-owner@lists.ubuntu.com">wxl at ubuntu.com, tsimonq2 at lubuntu.me</a><br><a href="../admin/lubuntu-users">Lubuntu-users administrative interface</a> (requires authorization)<br><a href="../listinfo">Overview of all lists.ubuntu.com mailing lists</a><p>\n<table WIDTH="100%" BORDER="0">\n <tr>\n <td><a href="http://www.gnu.org/software/mailman/index.html">Delivered by Mailman<br>version 2.1.20</a></td>\n <td><a href="http://www.python.org/">Python Powered</a></td>\n <td><a href="http://www.gnu.org/">GNU's Not Unix</a></td>\n <td><a href="http://www.debian.org/">Debian Powered</a></td>\n </tr>\n</table>\n</address>
|
Loading…
Reference in new issue