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.
 
 
 
 

70 lines
2.8 KiB

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
<body id="login">
«navigation()»
«userinfo()»
<h1>Widerhall Listen-Erzeugung</h1>
«messages()»
<form method="POST" action="add_list">
<fieldset>
<legend>Listen-Konfiguration</legend>
<fieldset>
<legend>Basis-Daten</legend>
<label>
<input type="text" name="name" value="«data.name»" id="name" />
Name der ML
</label>
<label>
<input type="text" name="email" value="«data.email»" id="email" />
Email-Adresse
</label>
</fieldset>
<fieldset>
<legend>IMAP-Protokoll</legend>
<label>
<input type="text" name="imap_host" value="«data.imap_host»" id="imap_host" />
Hostname
</label>
<label>
<input type="number" name="imap_port" value="«data.imap_port»" id="imap_port" />
Port
</label>
<label>
<input type="text" name="imap_user" value="«data.imap_user»" id="imap_user" />
Benutzername
</label>
<label>
<input type="password" name="imap_pass" value="«data.imap_pass»" id="imap_pass" />
Passwort
</label>
</fieldset>
<fieldset>
<legend>SMTP-Protokoll</legend>
<label>
<input type="text" name="smtp_host" value="«data.smtp_host»" id="smtp_host" />
Hostname
</label>
<label>
<input type="number" name="smtp_port" value="«data.smtp_port»" id="smtp_port" />
Port
</label>
<label>
<input type="text" name="smtp_user" value="«data.smtp_user»" id="smtp_user" />
Benutzername
</label>
<label>
<input type="password" name="smtp_pass" value="«data.smtp_pass»" id="smtp_pass" />
Passwort
</label>
</fieldset>
<button type="submit">neue ML speichern</button>
</fieldset>
</form>
</body>
</html>