-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.ini
More file actions
114 lines (105 loc) · 2.98 KB
/
Copy pathconfig.example.ini
File metadata and controls
114 lines (105 loc) · 2.98 KB
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
; Copy to config.ini and edit, or use Settings… in the application.
; Environment variables override the ACTIVE profile:
; MAIL_USERNAME, MAIL_PASSWORD, IMAP_SERVER, IMAP_PORT,
; SMTP_SERVER, SMTP_PORT, MAIL_DOWNLOAD_DIR
;
; A file written by the old single-account version ([account] / [smtp]) is
; migrated automatically into one profile the first time it is read.
[accounts]
; "|" separated, so account names may contain commas.
names = Personal|Work
; Which account the window shows at start-up.
active = Personal
; ---------------------------------------------------------------- Personal
[account:Personal]
host = imap.gmail.com
port = 993
username = you@gmail.com
; Gmail/Outlook/Yahoo need an APP PASSWORD, not your normal password.
; Leave empty to be asked at start-up (this file is plain text).
password =
use_ssl = True
starttls = False
folder = INBOX
timeout = 30
enabled = True
[smtp:Personal]
; Leave host empty to derive it from the IMAP server
; (imap.gmail.com -> smtp.gmail.com:587 STARTTLS).
host =
port = 587
; starttls (587), ssl (465) or none
security = starttls
; Empty user name / password means "reuse the IMAP ones".
username =
password =
from_name =
timeout = 30
; If the configured port times out, try the other standard pairs.
; Useful when a network blocks 587 but allows 465.
auto_port_fallback = True
; -------------------------------------------------------------------- Work
[account:Work]
host = outlook.office365.com
port = 993
username = you@work.example
password =
use_ssl = True
starttls = False
folder = INBOX
timeout = 30
enabled = True
[smtp:Work]
host =
port = 587
security = starttls
username =
password =
from_name =
timeout = 30
auto_port_fallback = True
; ---------------------------------------------------------------- shared
[sync]
; 30, 60, 300, 600, 1800 seconds, or 0 for manual only.
interval_seconds = 60
sync_on_start = True
; Keep downloaded messages on disk so a restart does not re-download them.
cache_enabled = True
cache_dir = cache
; Newest N messages per folder are downloaded.
max_messages_per_folder = 200
; How often messages waiting in the outbox are retried.
outbox_retry_seconds = 120
[notifications]
enabled = True
; Only announce mail that lands in the Inbox.
only_inbox = True
play_sound = False
; How many messages one notification lists.
max_preview = 3
; Closing the window keeps the client in the tray so new mail can be announced.
; The tray menu always offers a real Quit.
minimize_to_tray = True
[viewer]
download_dir = downloads
fetch_limit = 50
; all, unread, today or flagged
default_filter = all
; Marking as read changes the mailbox on the server - off by default.
mark_seen = False
remember_password = False
; Remote images track when you open a message - off by default.
allow_remote_images = False
; system, light or dark
theme = system
; date, from, subject, size or unread
sort_key = date
sort_descending = True
[window]
; Written automatically when the window closes.
width = 1280
height = 820
x = -1
y = -1
maximized = False
splitter_sizes =