summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/base/prefs/content/am-main.xhtml
blob: 09f5453fb890f1af0195b866f1ed1337681c285b (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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<?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/accountManage.css" type="text/css"?>

<!DOCTYPE html SYSTEM "chrome://messenger/locale/am-main.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"
>
  <head>
    <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/am-identity-edit.js"
    ></script>
    <script defer="defer" src="chrome://messenger/content/am-main.js"></script>
    <script defer="defer" src="chrome://messenger/content/am-prefs.js"></script>
    <script defer="defer" src="chrome://messenger/content/amUtils.js"></script>
    <script>
      // FIXME: move to script file.
      window.addEventListener("load", event => {
        parent.onPanelLoaded("am-main.xhtml");
      });
    </script>
  </head>
  <html:body
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  >
    <vbox id="containerBox" flex="1">
      <stringbundle
        id="bundle_prefs"
        src="chrome://messenger/locale/prefs.properties"
      />
      <stringbundle
        id="bundle_messenger"
        src="chrome://messenger/locale/messenger.properties"
      />

      <hbox id="am-main-title" class="dialogheader">
        <label class="dialogheader-title" defaultTitle="&accountTitle.label;" />
      </hbox>

      <separator class="thin" />

      <hbox class="input-container">
        <label
          id="server.prettyName.label"
          value="&accountName.label;"
          control="server.prettyName"
          accesskey="&accountName.accesskey;"
        />
        <html:input
          id="server.prettyName"
          type="text"
          wsm_persist="true"
          class="input-inline"
          onblur="serverPrettyNameOnBlur(event);"
          prefstring="mail.server.%serverkey%.name"
          aria-labelledby="server.prettyName.label"
        />
      </hbox>

      <separator />

      <html:div>
        <html:fieldset>
          <html:legend>&identityTitle.label;</html:legend>
          <description>&identityDesc.label;</description>
          <separator class="thin" />
          <html:table class="identity-table">
            <html:tr>
              <html:th>
                <label
                  id="identity.fullName.label.label"
                  value="&name.label;"
                  control="identity.fullName"
                  accesskey="&name.accesskey;"
                />
              </html:th>
              <html:td>
                <html:input
                  id="identity.fullName"
                  type="text"
                  class="input-inline"
                  aria-labelledby="identity.fullName.label"
                  wsm_persist="true"
                  size="30"
                  prefstring="mail.identity.%identitykey%.fullName"
                />
              </html:td>
            </html:tr>
            <html:tr>
              <html:th>
                <label
                  id="identity.email.label"
                  value="&email.label;"
                  control="identity.email"
                  accesskey="&email.accesskey;"
                />
              </html:th>
              <html:td>
                <html:input
                  id="identity.email"
                  type="email"
                  wsm_persist="true"
                  prefstring="mail.identity.%identitykey%.useremail"
                  class="uri-element input-inline"
                  aria-labelledby="identity.email.label"
                />
              </html:td>
            </html:tr>
            <html:tr>
              <html:th>
                <label
                  id="identity.replyTo.label"
                  value="&replyTo.label;"
                  control="identity.replyTo"
                  accesskey="&replyTo.accesskey;"
                />
              </html:th>
              <html:td>
                <html:input
                  id="identity.replyTo"
                  type="text"
                  wsm_persist="true"
                  prefstring="mail.identity.%identitykey%.reply_to"
                  class="uri-element input-inline"
                  placeholder="&replyTo.placeholder;"
                  aria-labelledby="identity.replyTo.label"
                />
              </html:td>
            </html:tr>
            <html:tr>
              <html:th>
                <label
                  id="identity.organization.label"
                  value="&organization.label;"
                  control="identity.organization"
                  accesskey="&organization.accesskey;"
                />
              </html:th>
              <html:td>
                <html:input
                  id="identity.organization"
                  type="text"
                  wsm_persist="true"
                  prefstring="mail.identity.%identitykey%.organization"
                  class="input-inline"
                  aria-labelledby="identity.organization.label"
                />
              </html:td>
            </html:tr>
            <html:tr>
              <html:th>
                <label
                  value="&signatureText.label;"
                  control="identity.htmlSigText"
                  accesskey="&signatureText.accesskey;"
                />
              </html:th>
              <html:td style="width: 100%">
                <hbox align="center">
                  <checkbox
                    id="identity.htmlSigFormat"
                    wsm_persist="true"
                    label="&signatureHtml.label;"
                    prefattribute="value"
                    accesskey="&signatureHtml.accesskey;"
                    style="width: 100%"
                    prefstring="mail.identity.%identitykey%.htmlSigFormat"
                  />
                </hbox>
              </html:td>
            </html:tr>
          </html:table>

          <hbox
            class="indent"
            flex="1"
            style="min-height: 100px; display: flex"
          >
            <html:textarea
              id="identity.htmlSigText"
              wsm_persist="true"
              rows="4"
              style="flex-grow: 1"
              prefstring="mail.identity.%identitykey%.htmlSigText"
              class="signatureBox"
            />
          </hbox>

          <hbox align="center">
            <checkbox
              id="identity.attachSignature"
              wsm_persist="true"
              label="&signatureFile.label;"
              flex="1"
              accesskey="&signatureFile.accesskey;"
              oncommand="setupSignatureItems();"
              prefattribute="value"
              prefstring="mail.identity.%identitykey%.attach_signature"
            />
          </hbox>

          <hbox align="center" class="indent input-container">
            <html:input
              id="identity.signature"
              type="text"
              datatype="nsIFile"
              wsm_persist="true"
              name="identity.signature"
              aria-labelledby="identity.attachSignature"
              prefstring="mail.identity.%identitykey%.sig_file"
              class="uri-element input-inline"
            />
            <button
              class="push"
              name="browse"
              label="&choose.label;"
              accesskey="&choose.accesskey;"
              oncommand="selectFile()"
              wsm_persist="true"
              id="identity.sigbrowsebutton"
              prefstring="mail.identity.%identitykey%.sigbrowse.disable"
            />
          </hbox>

          <hbox align="center">
            <checkbox
              wsm_persist="true"
              id="identity.attachVCard"
              label="&attachVCard.label;"
              flex="1"
              accesskey="&attachVCard.accesskey;"
              prefattribute="value"
              prefstring="mail.identity.%identitykey%.attach_vcard"
            />
            <button
              class="push"
              name="editVCard"
              label="&editVCard.label;"
              accesskey="&editVCard.accesskey;"
              oncommand="editVCard()"
            />
            <html:input
              id="identity.escapedVCard"
              type="hidden"
              value=""
              wsm_persist="true"
              pref="true"
              preftype="string"
              prefattribute="value"
              prefstring="mail.identity.%identitykey%.escapedVCard"
            />
          </hbox>

          <separator class="thin" />

          <hbox align="center" class="input-container" hidefor="nntp">
            <checkbox
              id="identity.catchAll"
              wsm_persist="true"
              prefattribute="value"
              label="&catchAll.label;"
              accesskey="&catchAll.accesskey;"
              style="margin-block: auto"
              prefstring="mail.identity.%identitykey%.catchAll"
            />
            <html:input
              id="identity.catchAllHint"
              type="text"
              wsm_persist="true"
              prefstring="mail.identity.%identitykey%.catchAllHint"
              class="input-inline"
              oninput="handleInputCatchAllHint(event);"
              placeholder="list@example.com, *@example.com"
              aria-labelledby="identity.catchAll"
            />
          </hbox>

          <separator class="thin" />

          <hbox align="center">
            <label
              value="&smtpName.label;"
              control="identity.smtpServerKey"
              accesskey="&smtpName.accesskey;"
            />
            <menulist
              wsm_persist="true"
              id="identity.smtpServerKey"
              flex="1"
              pref="true"
              preftype="string"
              prefattribute="value"
              prefstring="mail.identity.%identitykey%.smtpServer"
            >
              <menupopup id="smtpPopup">
                <menuitem
                  value=""
                  label="&smtpDefaultServer.label;"
                  id="useDefaultItem"
                />
                <menuseparator />
                <!-- list will be inserted here -->
              </menupopup>
            </menulist>
            <button
              id="editSmtp"
              label="&smtpServerEdit.label;"
              accesskey="&smtpServerEdit.accesskey;"
              oncommand="editCurrentSMTP();"
            />
          </hbox>
        </html:fieldset>
      </html:div>

      <separator class="thin" />

      <hbox align="center">
        <spacer flex="1" />
        <button
          label="&manageIdentities.label;"
          oncommand="manageIdentities(event);"
          accesskey="&manageIdentities.accesskey;"
          wsm_persist="true"
          id="identity.manageIdentitiesbutton"
        />
      </hbox>
    </vbox>
  </html:body>
</html>