qusal/salt/mail/configure-fetcher.sls
Ben Grande a04960c1c6 feat: initial split-mail setup
Split-mail allows to separate the receving, reading/composing and
sending of mails to separate qubes, while having the reading/composing
qube offline and a manual step necessary to authorize mails to be sent
form the sender qube.
2024-01-26 22:46:36 +01:00

32 lines
720 B
Plaintext

{#
SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
SPDX-License-Identifier: AGPL-3.0-or-later
#}
{% if grains['nodename'] != 'dom0' %}
include:
- dotfiles.copy-x11
- dotfiles.copy-sh
"{{ slsdotpath }}-fetcher-fdm.conf.example":
file.managed:
- name: /home/user/.fdm.conf.example
- source: salt://{{ slsdotpath }}/files/fetcher/fdm.conf.example
- mode: "0600"
- user: user
- group: user
- makedirs: True
"{{ slsdotpath }}-fetcher-mpoprc.example":
file.managed:
- name: /home/user/.mpoprc.example
- source: salt://{{ slsdotpath }}/files/fetcher/mpoprc.example
- mode: "0600"
- user: user
- group: user
- makedirs: True
{% endif -%}