Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/savely-krasovsky/go-autoconfig
IMAP/SMTP autodiscover feature for Thunderbird, Apple Mail and Microsoft Outlook
https://github.com/savely-krasovsky/go-autoconfig
autoconfig autodiscover imap smtp
Last synced: 6 days ago
JSON representation
IMAP/SMTP autodiscover feature for Thunderbird, Apple Mail and Microsoft Outlook
- Host: GitHub
- URL: https://github.com/savely-krasovsky/go-autoconfig
- Owner: savely-krasovsky
- License: mit
- Created: 2018-11-29T21:23:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-05T13:30:23.000Z (over 1 year ago)
- Last Synced: 2024-08-01T16:39:12.052Z (3 months ago)
- Topics: autoconfig, autodiscover, imap, smtp
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 20
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-autoconfig
IMAP/SMTP autodiscover feature for Thunderbird, Apple Mail and Microsoft Outlook.You need DNS SRV-record to get work Outlook and Thunderbird:
```
_autodiscover._tcp IN SRV 0 0 443 autoconfig.example.com.
```
Of course `autoconfig.example.com` domain should point to your server with this service.### Thunderbird
`GET https://autoconfig.example.com/mail/config-v1.1.xml`### Apple Mail
`GET https://autoconfig.example.com/[email protected]`### Outlook
`POST https://autoconfig.example.com/autodiscover/autodiscover.xml`## Installation
1. Compile (`go mod tidy && go build -o server`) or download binary from releases tab.
2. Edit config.yml and download `templates` directory. It should be with `server` binary.
3. Launch it `./server -config config.yml`.
4. Optionally use `nginx` as reverse-proxy and `systemd` to do daemon.