summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/base/prefs/content/SmtpServerEdit.xhtml
blob: d0bbda97c6b87a567ac064e240f53992351fb940 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<?xml-stylesheet href="chrome://messenger/skin/input-fields.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?>

<!DOCTYPE html SYSTEM "chrome://messenger/locale/smtpEditOverlay.dtd">

<html
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"
  scrolling="false"
>
  <head>
    <title>&smtpEditTitle.label;</title>
    <script
      defer="defer"
      src="chrome://messenger/content/globalOverlay.js"
    ></script>
    <script
      defer="defer"
      src="chrome://global/content/editMenuOverlay.js"
    ></script>
    <script
      defer="defer"
      src="chrome://messenger/content/SmtpServerEdit.js"
    ></script>
  </head>
  <html:body
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  >
    <dialog style="width: 100vw; height: 100vh">
      <stringbundle
        id="bundle_prefs"
        src="chrome://messenger/locale/prefs.properties"
      />
      <stringbundle
        id="bundle_brand"
        src="chrome://branding/locale/brand.properties"
      />
      <stringbundle
        id="bundle_messenger"
        src="chrome://messenger/locale/messenger.properties"
      />

      <vbox id="smtpServerEditor">
        <html:div>
          <html:fieldset>
            <html:legend>&settings.caption;</html:legend>
            <hbox flex="1">
              <vbox>
                <hbox flex="1" align="center">
                  <label
                    id="smtp.description.label"
                    value="&serverDescription.label;"
                    accesskey="&serverDescription.accesskey;"
                    control="smtp.description"
                  />
                </hbox>
                <hbox flex="1" align="center">
                  <label
                    id="smtp.hostname.label"
                    value="&serverName.label;"
                    accesskey="&serverName.accesskey;"
                    control="smtp.hostname"
                  />
                </hbox>
                <hbox flex="1" align="center">
                  <label
                    value="&serverPort.label;"
                    accesskey="&serverPort.accesskey;"
                    control="smtp.port"
                  />
                </hbox>
              </vbox>
              <vbox flex="1">
                <html:input
                  id="smtp.description"
                  type="text"
                  preftype="string"
                  class="input-inline"
                  prefstring="mail.smtpserver.%serverkey%.description"
                  aria-labelledby="smtp.description.label"
                />
                <html:input
                  id="smtp.hostname"
                  type="text"
                  preftype="string"
                  class="uri-element input-inline"
                  prefstring="mail.smtpserver.%serverkey%.hostname"
                  aria-labelledby="smtp.hostname.label"
                />
                <hbox align="center">
                  <html:input
                    id="smtp.port"
                    type="number"
                    class="size5 input-inline"
                    min="0"
                    max="65535"
                    preftype="int"
                    prefstring="mail.smtpserver.%serverkey%.port"
                  />
                  <label value="&serverPortDefault.label;" />
                  <label id="smtp.defaultPort" />
                </hbox>
              </vbox>
            </hbox>
          </html:fieldset>
        </html:div>

        <separator class="thin" />

        <html:div>
          <html:fieldset>
            <html:legend>&security.caption;</html:legend>

            <hbox flex="1">
              <vbox>
                <hbox flex="1" align="center">
                  <label
                    value="&connectionSecurity.label;"
                    accesskey="&connectionSecurity.accesskey;"
                    control="smtp.socketType"
                  />
                </hbox>
                <hbox flex="1" align="center">
                  <label
                    value="&authMethod.label;"
                    accesskey="&authMethod.accesskey;"
                    control="server.authMethod"
                  />
                </hbox>
                <hbox flex="1" align="center">
                  <label
                    id="smtpUsernameLabel"
                    value="&userName.label;"
                    accesskey="&userName.accesskey;"
                    control="smtpUsername"
                  />
                </hbox>
              </vbox>
              <vbox>
                <menulist
                  id="smtp.socketType"
                  oncommand="sslChanged(true);"
                  prefstring="mail.smtpserver.%serverkey%.try_ssl"
                >
                  <menupopup id="smtp.socketTypePopup">
                    <menuitem
                      value="0"
                      label="&connectionSecurityType-0.label;"
                    />
                    <menuitem
                      id="connectionSecurityType-1"
                      value="1"
                      label="&connectionSecurityType-1.label;"
                      disabled="true"
                      hidden="true"
                    />
                    <menuitem
                      value="2"
                      label="&connectionSecurityType-2.label;"
                    />
                    <menuitem
                      value="3"
                      label="&connectionSecurityType-3.label;"
                    />
                  </menupopup>
                </menulist>
                <menulist
                  id="smtp.authMethod"
                  oncommand="authMethodChanged(true);"
                  wsm_persist="true"
                  preftype="int"
                  prefstring="mail.smtpserver.%serverkey%.authMethod"
                >
                  <menupopup id="smtp.authMethodPopup">
                    <menuitem id="authMethod-no" value="1" />
                    <menuitem id="authMethod-password-cleartext" value="3" />
                    <menuitem id="authMethod-password-encrypted" value="4" />
                    <menuitem id="authMethod-kerberos" value="5" />
                    <menuitem id="authMethod-ntlm" value="6" />
                    <menuitem id="authMethod-oauth2" value="10" />
                    <menuitem id="authMethod-anysecure" value="8" />
                    <menuitem id="authMethod-any" value="9" />
                  </menupopup>
                </menulist>
                <hbox class="input-container">
                  <html:input
                    id="smtpUsername"
                    type="text"
                    class="input-inline"
                    preftype="string"
                    prefstring="mail.smtpserver.%serverkey%.username"
                    aria-labelledby="smtpUsernameLabel"
                  />
                </hbox>
              </vbox>
            </hbox>
          </html:fieldset>
        </html:div>
      </vbox>
    </dialog>
  </html:body>
</html>