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
# Bltz Multi-Account Configuration Example
#
# Copy this file to ~/.config/bltz/config.toml and customize it.
# Passwords are stored securely in your system keyring (not in this file).
# Run `bltz setup` to configure accounts interactively.
# Which account to show by default (0 = first account)
= 0
# =============================================================================
# Account 1: Personal Gmail
# =============================================================================
[[]]
= "yourname@gmail.com"
= "Personal"
[]
= "imap.gmail.com"
= 993
= true
[]
= "smtp.gmail.com"
= 587
= true
# =============================================================================
# Account 2: Work Email
# =============================================================================
[[]]
= "yourname@company.com"
= "Work"
# Disable notifications for work account (optional)
= false
[]
= "imap.company.com"
= 993
= true
[]
= "smtp.company.com"
= 587
= true
# =============================================================================
# Account 3: Another Provider (e.g., Fastmail)
# =============================================================================
# [[accounts]]
# email = "yourname@fastmail.com"
# display_name = "Fastmail"
#
# [accounts.imap]
# server = "imap.fastmail.com"
# port = 993
# tls = true
#
# [accounts.smtp]
# server = "smtp.fastmail.com"
# port = 587
# tls = true
# =============================================================================
# Global Notification Settings
# =============================================================================
[]
# Enable desktop notifications for new mail
= true
# Show email subject/sender in notification
= true
# =============================================================================
# UI Settings
# =============================================================================
[]
# Keybinding mode: "vim" or "arrows"
= "vim"
# Date format in email list (strftime format)
= "%b %d"
# Preview text length in email list
= 100
# Split pane ratio (30-70, 50 = equal split)
= 50
# =============================================================================
# Cache Settings
# =============================================================================
[]
# Maximum number of email bodies to cache
= 500
# Sync interval in seconds (for periodic refresh)
= 300
# Number of adjacent emails to prefetch when scrolling
= 2