Java-basierte Mailinglisten-Anwendung, die auf IMAP+SMTP aufsetzt, und damit (fast) jede Mailbox in eine Mailingliste verwandeln kann.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
«head()»
|
|
|
|
<body id="archive">
|
|
|
|
«navigation()»
|
|
|
|
«userinfo()»
|
|
|
|
«messages()»
|
|
|
|
<h1>«data.list» List Archive</h1>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend>Subscription</legend>
|
|
|
|
<a href="subscribe?list=«data.list»">subscribe</a>
|
|
|
|
<a href="unsubscribe?list=«data.list»">un-subscribe</a>
|
|
|
|
</fieldset>
|
|
|
|
«if(data.month)»
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>From</th>
|
|
|
|
<th>Subject</th>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<script type="text/javascript">
|
|
|
|
loadArchive('«data.list»','«data.month»');
|
|
|
|
</script>
|
|
|
|
«else»
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Month</th>
|
|
|
|
<th>Number of messages</th>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<script type="text/javascript">
|
|
|
|
loadArchiveSummary('«data.list»');
|
|
|
|
</script>
|
|
|
|
«endif»
|
|
|
|
«footer()»
|
|
|
|
</body>
|
|
|
|
</html>
|