Compare commits

...

2 Commits

Author SHA1 Message Date
Nico Schottelius 8396f494a4 Add entrypoint for ungleich-mail 2024-02-20 22:34:29 +09:00
Nico Schottelius 8e63a89f7f [ungleich-mail] add readme 2024-02-20 22:28:48 +09:00
3 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,8 @@
FROM alpine:3.19
RUN apk add --update postfix
RUN apk add --update \
postfix \
dovecot
COPY entrypoint.sh /
ENTRYPOINT /entrypoint.sh

9
ungleich-mail/README.org Normal file
View File

@ -0,0 +1,9 @@
* Stuff to do
** TODO Add smtp support (postfix?)
** TODO Add imap support
** TODO Define where/how to save mails
** PROGRESS Add db support (?) or not?
- all file based could be very easy
- restarts are usually fine
- requires dovecot in same containerx
** TODO Define deployment requirements (such as SPF/DKIM etc)

View File

@ -0,0 +1,4 @@
#!/bin/sh
/usr/sbin/postfix start
/usr/sbin/dovecot