2021-05-25 21:19:37 +00:00
|
|
|
ARG REPO_LOCATION
|
|
|
|
# ARG BASE_VERSION
|
|
|
|
|
|
|
|
FROM ${REPO_LOCATION}minideb
|
|
|
|
|
|
|
|
RUN install_packages ca-certificates fetchmail procmail inotify-tools mpack
|
|
|
|
RUN mkdir /srv/home \
|
|
|
|
&& ln -s /mnt/fetchmailrc /srv/home/.fetchmailrc \
|
|
|
|
&& mkdir /tmp/maildir
|
|
|
|
|
|
|
|
ENV HOME /srv/home
|
|
|
|
|
|
|
|
COPY ./procmail.conf /srv/procmail.conf
|
|
|
|
COPY ./run.sh /srv/run.sh
|
|
|
|
|
|
|
|
VOLUME /mnt/fetchmailrc
|
|
|
|
VOLUME /mnt/output
|
|
|
|
|
2021-05-25 21:21:13 +00:00
|
|
|
# Example fetchmailrc file:
|
|
|
|
#
|
|
|
|
# poll starbeamrainbowlabs.com protocol IMAP
|
|
|
|
# user "user@example.com" with pass "PASSWORD_HERE"
|
|
|
|
# idle
|
|
|
|
# ssl
|
|
|
|
|
|
|
|
|
2021-05-25 21:19:37 +00:00
|
|
|
USER 10000:10000
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/srv/run.sh" ]
|