qusal/salt/mail/install-sender.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

46 lines
982 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
- dotfiles.copy-net
"{{ slsdotpath }}-sender-updated":
pkg.uptodate:
- refresh: True
"{{ slsdotpath }}-sender-installed":
pkg.installed:
- refresh: True
- skip_suggestions: True
- install_recommends: False
- pkgs:
- qubes-core-agent-networking
- ca-certificates
- man-db
- msmtp
- libgnutls30
- libio-socket-ssl-perl
- libnet-smtp-ssl-perl
- libnet-ssleay-perl
- libsasl2-2
- libsasl2-modules
- libsasl2-modules-db
"{{ slsdotpath }}-sender-rpc":
file.managed:
- name: /etc/qubes-rpc/qusal.MailEnqueue
- source: salt://{{ slsdotpath }}/files/sender/rpc/qusal.MailEnqueue
- mode: "0755"
- user: root
- group: root
- makedirs: True
{% endif -%}