-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
39 lines (33 loc) · 1.16 KB
/
config.example.yaml
File metadata and controls
39 lines (33 loc) · 1.16 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
# mailcli configuration file
# Location: ~/.config/mailcli/config.yaml
version: 1.0.0
# Default account to use when no account is specified
default_account: gmail
# Email accounts configuration
accounts:
- name: gmail
email: user@gmail.com
provider: gmail
host: imap.gmail.com
port: 993
username: user@gmail.com
password_encrypted: "your-app-password-here"
use_tls: true
created_at: 2024-03-19T10:00:00Z
- name: outlook
email: user@outlook.com
provider: outlook
host: outlook.office365.com
port: 993
username: user@outlook.com
password_encrypted: "your-password-here"
use_tls: true
created_at: 2024-03-19T11:00:00Z
created_at: 2024-03-19T10:00:00Z
updated_at: 2024-03-19T11:00:00Z
# Notes:
# - password_encrypted: For security, use app-specific passwords instead of regular passwords
# - Gmail users: Generate an App Password at https://myaccount.google.com/apppasswords
# - Outlook users: Enable IMAP in settings at https://outlook.live.com/owa/?path=/options/mailaccounts
# - You can add multiple accounts by adding more entries to the accounts list
# - Use 'mailcli config init' to create this file interactively