Compare commits

...

15 commits

Author SHA1 Message Date
Paul Wilde aa611b2a1d increment version number 2021-08-11 20:36:26 +01:00
Paul Wilde 59e2ccd691 readme file updates 2021-08-11 20:32:13 +01:00
Paul Wilde 46ac208ba3 readme file updates 2021-08-11 20:30:22 +01:00
Paul Wilde 9454651a49 readme file updates 2021-08-11 20:30:01 +01:00
Paul Wilde 7ad5155f08 readme file updates 2021-08-11 20:29:31 +01:00
Paul Wilde cb88a035a4 readme file updates 2021-08-11 20:29:09 +01:00
Paul Wilde 7f54485b10 readme file updates 2021-08-11 20:22:49 +01:00
Paul Wilde e1398b0a47 readme file updates 2021-08-11 20:22:03 +01:00
Paul Wilde 27e65a8fe0 readme file updates 2021-08-11 20:13:39 +01:00
Paul Wilde 9917d299ac readme file updates 2021-08-11 20:13:20 +01:00
Paul Wilde 6ea2ab6052 readme file updates 2021-08-11 20:13:04 +01:00
Paul Wilde 36b6e14060 readme file updates 2021-08-11 20:12:27 +01:00
Paul Wilde d7e5f4be1d readme file updates 2021-08-11 20:11:14 +01:00
Paul Wilde e5e22a9ebb readme file updates 2021-08-11 20:05:21 +01:00
Paul Wilde defbdfcaf9 readme file updates 2021-08-11 20:04:39 +01:00
4 changed files with 90 additions and 58 deletions

104
README.MD
View file

@ -1,44 +1,82 @@
# MailAutoConf - a simple, configurable autodiscover service for distributed and self-hosted groupware services.
# MailAutoConf - a simple, configurable autodiscover/autoconfig service for distributed and self-hosted services.
## What is MailAutoConf?
MailAutoConf is a self-hosted service which provides IMAP, SMTP, CalDAV, CardDav, etc
URLs to authenticated clients for ease in set up on mobile devices and also desktop/laptop computers.
MailAutoConf is autodiscover/autoconfig web server for self-hosted mail services
which do not have their own autodiscover service.
## What ~~does~~ will MailAutoConf do?
## What does MailAutoConf do?
MailAutoConf is currently in _very_early stages, but it does generate valid
autoconfig XML files (/mail/config-v1.1.xml) compatible with many mail clients
i.e. Thunderbird, Evolution, etc.
Theoretically, anything that can read the standard autoconfig XML file -
https://wiki.mozilla.org/Thunderbird:Autoconfiguration:ConfigFileFormat, should
be able to auto-configure using this service.
## Installation
The container file includes set up for an apache webserver to run the application.
You will need to supply a volume for the configuration file and port forwarding.
```
podman run -dt \
--name mailautoconf \
-v ./config:/var/www/html/config \
-p 8010:80 \
pswilde/automailconf
```
You will need a reverse proxy server to publish to the outside world and handle SSL encryption.
For example, in nginx:
```
server {
listen 443 ssl;
server_name autoconfig.example.com;
ssl_certificate /path/to/certificate.file;
ssl_certificate_key /path/to/certificate.key
location / {
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8010/;
proxy_redirect http://localhsot:8010/ /;
proxy_read_timeout 60s;
}
}
```
First run will create sample.ini files in the config directory. Copy these to config.ini and services.ini and configure them to your needs.
MailAutoConf will handle all the URLs it's able to deal with, i.e. /mail/config-v1.1.xml, /Autodiscover/Autodiscover.xml automatically.
## DNS config
You will need to configure DNS records for your domain.
I would recommend setting up an A record for autoconfig.your.domain to point
directly to your MailAutoConf's instance which will work for Thunderbird and
Evolution clients.
Then, if Outlook Autodiscover is required (currently not implemented), configure
a SRV record to redirect to the autoconfig.your.domain A record. i.e.
```
Type TTL P M Port Target
SRV _autodiscover._tcp.your.domain 3600 10 10 443 autoconfig.your.domain
```
## Future plans
MailAutoConf is currently in _very_ early stages, with a _very_ limited set of features.
My hope for MailAutoConf is to mimic the AutoDiscover service found in Microsoft Exchange services,
but with the intent of providing a set of URLS for each service which may be self-hosted and/or distributed,
primary IMAP, SMTP, CalDAV and CardDAV URLS, but hopefully more services can be added in the future.
My hope for MailAutoConf is to run as an autoconfig service which provides Calendar and AddressBook locations as well.
Calendar and AddressBook is in the autoconfig XML documentation, but currently not implemented. MailAutoConf can generate the correct information for Calendar and AddressBook into the autoconfig XML file, though no clients currently use it.
__For example:__
Company X may have many services that are selfhosted i.e. Dovecot for email (IMAP/SMTP) and Nextcloud for Calendar and Contacts.
Getting a set up like this configured on a mobile device is fairly involved for a standard user and tiresome if the company has many employees.
There are many points where set up configuration mistakes can happen, leading to service outage for a user, and the difficult job of
the IT consultant trying to talk the user through setting the device up over the phone.
## TODO:
MailAutoConf intends to patch this problem by providing the URLs and information (Port numbers, SSL/TLS type, domain name, etc.) for each service
in JSON format allowing for the connecting device to automatically set up this information on the device.
- [x] /mail/config-v1.1.xml file for Thunderbird and Evolution mail clients.
- [ ] Add more code commenting, it's pretty terrible right now.
- [ ] Refactor the autoconfig and autodiscover XML files, they've been copied and bodged together and could look so much better.
- [ ] Autodiscover.xml for Outlook clients - currently does generate, but untested.
- [ ] Autodiscover.json for more modern Outlook clients - this is currently undocumented. I have implemented some features of it but it is currently not working.
- [ ] Calendars and Address Book - does generate into mail/config-v1.1.xml, but no actual clients support it yet.
- [ ] Additional, custom services. For example, Nextcloud - instead of having to type in your Nextcloud instance URL, you can just enter your email address associated with you Nextcloud account and it looks up the URL from autoconfig - wouldn't that be nice?
- [ ] Probably loads of stuff I haven't thought of yet.
## What problems do I expect?
OK, the most glaringly obvious problem is that the JSON response information is no good if the device itself doesn't know what to do with it.
I hope to develop a mobile app with mail, contact and calendar features in it, but we're in _very_ early stages of the base service at the moment.
Once the basic JSON response service is operational, I'll look into the mobile app which will then be when things will start to become useful.
In the perfect world, this service starts to look so fantastic that mobile device Operating System and/or mail app developers start implementing the option
in their own code as an Account Type (i.e. ActiveSync, Office365, iCloud, IMAP, etc. are all already there), but I'm not sure if I see that happening just yet.
### Another problem is authentication.
I'd like all clients to authenticate to the MailAutoConf service, but where do we get that authentication from?
We could have local accounts on the MailAutoConf server obviously, but I don't think this feels "fluent" enough. Maybe, using the primary IMAP server address, we could do an authentication request and if that succeeds the login is accepted and MailAutoConf information is sent.
### More problems regarding authentication.
As we're intended to be used for self-hosted, distributed services, each service may have different usernames and passwords.
This means there will have to be some sort of manual credential entry for each service.
I am less concerned with this issue as it currently isn't really in the scope of MailAutoConf to handle this - the goal is to provide the core information (URL, Ports, etc.) not the credentials to log in. I of course want to make the experience as helpful as possible though, so I'll deal with any features surrounding this when I can.
## When will it be ready for production?
Well, not yet.
I'm working on this ultimately for my own use for my own small business. I'm hoping once it's good enough I could deploy the set up to customers
and ultimately get them away from a Microsoft Exchange based environment. There's a long way to go for that right now though.
Well, not yet. Though it does sort of work already.
I'm working on this ultimately for my own use for my own small business. I'm hoping once it's good enough I could deploy the set up to my businesses customers and ultimately get them away from a Microsoft Exchange based environment. There's a long way to go for that right now though.
If you feel you may be able to help, or ideas on features and their implementation, notice any bugs, or just want to say hi. Please do so and submit a pull request if required.

View file

@ -1,6 +1,6 @@
<?php class Core {
public static $Config;
public const VERSION = "0.0.1";
public const VERSION = "0.0.2";
public static $CurrentPage;
public static function root_dir(){
return $_SERVER['DOCUMENT_ROOT'];

View file

@ -1,24 +1,14 @@
; Sample config.ini file.
; Copy this file to "config/config.ini" and adjust the settings to your requirements
; Set the base domain for use with this service
Domain = example.com
LogonDomain = example.local
RequireAuthDomain = false
; The URL of this application
BaseURL = "https://autoconfig.example.com"
; Admin User configuration
; not in use yet
;[AdminUser]
;User = "admin"
;Password = "admin"
; Set the base email domain for use with this service
Domain = example.com
; Database configuration
; not in use yet
;[Database]
;Type = "psql"
;Host = "localhost"
;Port = 5432
;User = "davdiscover"
;Password = "davdiscover"
; If you use a different domain to authenticate with, enter it here
LogonDomain = example.local
; Change to true if you need the domain/logondomain to form part of the username
RequireAuthDomain = false

View file

@ -12,10 +12,14 @@ Port = 465
SocketType = SSL
Authentication = password-cleartext
[CalDav]
Server = "https://caldav.example.com/etc/etc/"
Port = 443
; Currently not implemented
;[Calendar]
;Server = "https://example.com/remote.php/dav/"
;Port = 443
;Type = CalDAV
[CardDav]
Server = "https://carddav.example.com/etc/etc/"
Port = 443
; Currently not implemented
;[AddressBook]
;Server = "https://example.com/remote.php/dav/"
;Port = 443
;Type = CardDAV