mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-22 20:45:55 +08:00
mailcore-provider-settings: Add Hostinger email provider
This commit is contained in:
parent
1acab17786
commit
0061fc9fc0
2 changed files with 67 additions and 0 deletions
|
@ -1305,5 +1305,53 @@
|
|||
"sentmail": "Sent Items",
|
||||
"trash": "Deleted Items"
|
||||
}
|
||||
},
|
||||
"hostinger": {
|
||||
"servers": {
|
||||
"imap": [
|
||||
{
|
||||
"port": 993,
|
||||
"hostname": "imap.hostinger.com",
|
||||
"ssl": true
|
||||
},
|
||||
{
|
||||
"port": 143,
|
||||
"hostname": "imap.hostinger.com",
|
||||
"starttls": true
|
||||
}
|
||||
],
|
||||
"pop": [
|
||||
{
|
||||
"port": 995,
|
||||
"hostname": "pop.hostinger.com",
|
||||
"ssl": true
|
||||
},
|
||||
{
|
||||
"port": 110,
|
||||
"hostname": "pop.hostinger.com",
|
||||
"starttls": true
|
||||
}
|
||||
],
|
||||
"smtp": [
|
||||
{
|
||||
"port": 465,
|
||||
"hostname": "smtp.hostinger.com",
|
||||
"ssl": true
|
||||
},
|
||||
{
|
||||
"port": 587,
|
||||
"hostname": "smtp.hostinger.com",
|
||||
"starttls": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"mx-match": ["mx[0-9]*\\.hostinger\\.*"],
|
||||
"mailboxes": {
|
||||
"drafts": "Drafts",
|
||||
"allmail": "Archive",
|
||||
"spam": "Junk",
|
||||
"sentmail": "Sent Messages",
|
||||
"trash": "Deleted Messages"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6433,5 +6433,24 @@
|
|||
"smtp_port": "465",
|
||||
"smtp_security": "SSL / TLS",
|
||||
"smtp_user_format": "email"
|
||||
},
|
||||
"hostinger.com": {
|
||||
"display_name": "HOSTINGER",
|
||||
"display_short_name": "HOSTINGER",
|
||||
"imap_host": "imap.hostinger.com",
|
||||
"imap_port": "993",
|
||||
"imap_security": "SSL / TLS",
|
||||
"imap_user_format": "email",
|
||||
"imap_authentication": [
|
||||
"password-cleartext"
|
||||
],
|
||||
"smtp_host": "smtp.hostinger.com",
|
||||
"smtp_port": "465",
|
||||
"smtp_security": "SSL / TLS",
|
||||
"smtp_user_format": "email",
|
||||
"smtp_authentication": [
|
||||
"password-cleartext"
|
||||
],
|
||||
"enable_steps": []
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue