forked from eykamp/Folder-Account
-
Notifications
You must be signed in to change notification settings - Fork 1
/
folderSettings.html
47 lines (44 loc) · 1.41 KB
/
folderSettings.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Preferences</title>
<script type="text/javascript" src="folderSettings.js"></script>
<link rel="stylesheet" href="chrome://global/skin/global.css" />
<link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
<link rel="stylesheet" href="folderSettings.css" />
</head>
<body>
<vbox>
<fieldset>
<legend>From Account:</legend>
<select id="identityId">
</select>
<div class="option">
<input type="checkbox" id="overrideReturnAddress">
<label for="overrideReturnAddress">Ignore on Reply (i.e. let Thunderbird choose)</label>
</div>
</fieldset>
<fieldset>
<legend>Default To:</legend>
<input type="email" id="to">
<div class="option">
<input type="checkbox" id="addToCcOnReply">
<label for="addToCcOnReply">Add to CC list on Reply</label>
</div>
</fieldset>
<fieldset>
<legend>Additional Reply-To:</legend>
<input type="email" id="replyTo">
<div class="option">
<input type="checkbox" id="replyToOnReplyForward">
<label for="replyToOnReplyForward">Use also on Reply and Forward</label>
</div>
</fieldset>
</vbox>
<moz-button-group class="buttons">
<button id="cancel-button" type="button">Cancel</button>
<button id="save-button" type="submit">Save</button>
</moz-button-group>
</body>
</html>