blob: 1cdc36550f18ffecc8c666c0882628995aae5963 (
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
|
<?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 [ <!ENTITY % accountNoIdentDTD SYSTEM "chrome://messenger/locale/am-serverwithnoidentities.dtd">
%accountNoIdentDTD;
<!ENTITY % accountServerTopDTD SYSTEM "chrome://messenger/locale/am-server-top.dtd">%accountServerTopDTD;
]>
<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>
<title>&accountTitle.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/am-serverwithnoidentities.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-serverwithnoidentities.xhtml");
});
</script>
</head>
<html:body
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<vbox id="containerBox" flex="1">
<hbox class="dialogheader">
<label class="dialogheader-title" value="&accountTitle.label;" />
</hbox>
<separator class="thin" />
<label
hidden="true"
wsm_persist="true"
preftype="string"
prefattribute="value"
prefstring="mail.server.%serverkey%.storeContractID"
genericattr="true"
id="server.storeContractID"
/>
<description class="secDesc">&accountSettingsDesc.label;</description>
<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="parent.setAccountLabel(gAccount.key, this.value);"
prefstring="mail.server.%serverkey%.name"
aria-labelledby="server.prettyName.label"
/>
</hbox>
<separator class="thin" />
<html:div>
<html:fieldset>
<html:legend>&messageStorage.label;</html:legend>
<vbox align="start">
<checkbox
wsm_persist="true"
id="server.emptyTrashOnExit"
label="&emptyTrashOnExit.label;"
accesskey="&emptyTrashOnExit.accesskey;"
prefattribute="value"
prefstring="mail.server.%serverkey%.empty_trash_on_exit"
/>
<hbox align="center">
<label
value="&storeType.label;"
accesskey="&storeType.accesskey;"
control="server.storeTypeMenulist"
/>
<menulist
id="server.storeTypeMenulist"
oncommand="clickStoreTypeMenu(this);"
>
<menupopup id="server.storeTypeMenupopup">
<menuitem
id="server.mboxStore"
value="@mozilla.org/msgstore/berkeleystore;1"
label="&mboxStore2.label;"
/>
<menuitem
id="server.maildirStore"
value="@mozilla.org/msgstore/maildirstore;1"
label="&maildirStore.label;"
/>
</menupopup>
</menulist>
</hbox>
</vbox>
<separator class="thin" />
<hbox align="center">
<label
id="server.localPath.label"
value="&localPath1.label;"
control="server.localPath"
/>
<hbox class="input-container" flex="1">
<html:input
id="server.localPath"
type="text"
readonly="readonly"
wsm_persist="true"
datatype="nsIFile"
prefstring="mail.server.%serverkey%.directory"
class="uri-element input-inline"
aria-labelledby="server.localPath.label"
/>
</hbox>
<button
id="browseForLocalFolder"
label="&browseFolder.label;"
filepickertitle="&localFolderPicker.label;"
accesskey="&browseFolder.accesskey;"
oncommand="BrowseForLocalFolders()"
/>
</hbox>
</html:fieldset>
</html:div>
</vbox>
</html:body>
</html>
|