- Remove personal email configuration (timmy.lo@automodules.tw) - Add generic placeholders for customization - Include examples for Gmail, Outlook, and iCloud providers - Add helpful comments and configuration guidance
90 lines
2.2 KiB
JSON
90 lines
2.2 KiB
JSON
{
|
|
"_comment": "Thunderbird email configuration template - modify values for your specific setup",
|
|
"WindowsUser": "user",
|
|
"ProfileName": "default",
|
|
"Identity": {
|
|
"FullName": "Your Full Name",
|
|
"Email": "your.email@domain.com"
|
|
},
|
|
"Incoming": {
|
|
"Type": "imap",
|
|
"Hostname": "imap.domain.com",
|
|
"Port": 993,
|
|
"SocketType": "SSL",
|
|
"Username": "your.email@domain.com",
|
|
"AuthMethod": "normal"
|
|
},
|
|
"Outgoing": {
|
|
"Hostname": "smtp.domain.com",
|
|
"Port": 465,
|
|
"SocketType": "SSL",
|
|
"Username": "your.email@domain.com",
|
|
"AuthMethod": "normal"
|
|
},
|
|
"_examples": {
|
|
"gmail": {
|
|
"Identity": {
|
|
"FullName": "Your Name",
|
|
"Email": "yourname@gmail.com"
|
|
},
|
|
"Incoming": {
|
|
"Type": "imap",
|
|
"Hostname": "imap.gmail.com",
|
|
"Port": 993,
|
|
"SocketType": "SSL",
|
|
"Username": "yourname@gmail.com",
|
|
"AuthMethod": "OAuth2"
|
|
},
|
|
"Outgoing": {
|
|
"Hostname": "smtp.gmail.com",
|
|
"Port": 587,
|
|
"SocketType": "STARTTLS",
|
|
"Username": "yourname@gmail.com",
|
|
"AuthMethod": "OAuth2"
|
|
}
|
|
},
|
|
"outlook": {
|
|
"Identity": {
|
|
"FullName": "Your Name",
|
|
"Email": "yourname@outlook.com"
|
|
},
|
|
"Incoming": {
|
|
"Type": "imap",
|
|
"Hostname": "outlook.office365.com",
|
|
"Port": 993,
|
|
"SocketType": "SSL",
|
|
"Username": "yourname@outlook.com",
|
|
"AuthMethod": "OAuth2"
|
|
},
|
|
"Outgoing": {
|
|
"Hostname": "smtp-mail.outlook.com",
|
|
"Port": 587,
|
|
"SocketType": "STARTTLS",
|
|
"Username": "yourname@outlook.com",
|
|
"AuthMethod": "OAuth2"
|
|
}
|
|
},
|
|
"icloud": {
|
|
"Identity": {
|
|
"FullName": "Your Name",
|
|
"Email": "yourname@icloud.com"
|
|
},
|
|
"Incoming": {
|
|
"Type": "imap",
|
|
"Hostname": "imap.mail.me.com",
|
|
"Port": 993,
|
|
"SocketType": "SSL",
|
|
"Username": "yourname@icloud.com",
|
|
"AuthMethod": "password-cleartext"
|
|
},
|
|
"Outgoing": {
|
|
"Hostname": "smtp.mail.me.com",
|
|
"Port": 587,
|
|
"SocketType": "STARTTLS",
|
|
"Username": "yourname@icloud.com",
|
|
"AuthMethod": "password-cleartext"
|
|
}
|
|
}
|
|
}
|
|
}
|