Files
Widerhall/static/templates/inspect.st
Stephan Richter b9b3196ae6 new permissions:
* list members may be nominated as moderators by admin
* admin may allow moderators to nominate more moderators
* admin may set allowed senders to one of the following:
    * owners and mods
    * all subscribers
    * everyone
* moderators are now able to remove members from list
2022-04-22 12:35:16 +02:00

70 lines
2.6 KiB
Smalltalk

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script src="jquery"></script>
<script src="js"></script>
<link rel="stylesheet" href="css" />
</head>
<body>
«navigation()»
«userinfo()»
«messages()»
<h1>Widerhall '«data.list»' Details</h1>
<form method="POST">
<fieldset>
<legend>Settings</legend>
<fieldset>
<legend>Forward permissions</legend>
<p>
Who is allowed to distribute mails via «data.list»?
</p>
Oweners and Moderators
<label>
<input type="checkbox" name="open_for_subscribers">
All subscribers
</label>
<label>
<input type="checkbox" name="open_for_guests">
Everyone (i.e. non members, DANGER!)
</label>
</fieldset>
<fieldset>
<legend>Forward options</legend>
<label>
<input type="checkbox" name="forward_from">
Forward using original sender
</label>
<label>
<input type="checkbox" name="reply_to_list">
Set list adddress in "ReplyTo" header
</label>
<label>
<input type="checkbox" name="forward_attached">
Append original message as attachment
</label>
<label>
<input type="checkbox" name="hide_receivers">
Hide receivers (using BCC)
</label>
</fieldset>
<fieldset>
<legend>Other options</legend>
<label>
<input type="checkbox" name="archive">
Collect messages in public archive
</label>
<label>
<input type="checkbox" name="edit_mods">
Moderators may edit list of moderators
</label>
</fieldset>
<button type="submit">Save</button>
</fieldset>
</form>
«listmembers()»
<script type="text/javascript">
loadListDetail('«data.list»');
</script>
</body>
</html>