summaryrefslogtreecommitdiffstats
path: root/templates/new.html
blob: 91220e5cc40fd92e207bc5e7cf76c08dac03928c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
$def with (form, user)

$var title: Mailinglisten
$var headline:
     Create new mailing list

<div class="create">
  <div class="header">
    <b>The rules</b>
  </div>

  <ul>
    <li>
      <b>Do not play with mailing list creation.</b>
      <br />
      Please create only those lists you really need.
      We have to delete unused lists manually.
    </li>

    <li>
      <b>No spamming!</b>
      <br />
      Never subscribe people without their explicit permission.
    </li>

    <li>
      <b>&quot;<i>fu-berlin.de</i>&quot; E-mail address</b>
      <br />
      <b>You</b> need an E-mail account at Freie Universitaet Berlin to <b>create</b> a mailing list.<br>(additional administrators and list members may have any E-Mail address)
    </li>

    <li>
      <b>List operation</b>
      <br />
      We reserve the right to reject or discontinue operation of any mailing list without giving reasons.
    </li>

    <li>
      <b>Logging</b>
      <br />
      We record the creation of mailing lists. This includes time & date of creation, E-mail address, and your Internet address.
    </li>
  </ul>
</div>

<div class="create">
  <div class="header">
    <b>Create a mailing list</b>
  </div>


  $if user['valid']:
    <form name="main" method="post">
      $:form.render()

      <input type="submit" value="Create" class="submit" />
    </form>

  $else:
    <p class="wrong">
      Access is only permitted within the FU network. But not by
      using the ZEDAT proxy server.
    </p>
    <p>
      We are solely offering our mailing list service to members of
      the FU which are owning an e-mail address within the second
      level domain &quot;fu-berlin.de&quot; (this includes all
      e-mail addresses ending in &quot;fu-berlin.de&quot;).
    </p>
    <p>
      Additionally we are limiting access to the mailing list
      creation webpage to hosts with an IP address within the FU
      networks (87.77.0.0/16, 130.133.0.0/16, 160.45.0.0/16).
    </p>
    <p>
      We are logging creations of mailing lists. As we are saving
      date, time, email address and the host you used for creating
      the mailing list, you must not use the proxy server provided
      by the ZEDAT (squid.fu-berlin.de).
    </p>
</div>

<div class="create" id="info">
  <div class="header">
    <b>Information</b>
  </div>

  <div class="center">
    The following information will be logged:<br />
    <br />
    Your internet address: <b>$user['ip']</b><br />
    Your hostname: <b>$user['host']</b><br />
  </div>
</div>