mirror of
https://github.com/ben-grande/qusal.git
synced 2025-01-30 17:13:38 -05:00
3d4ab18d28
- Use tags to help on the Qrexec policy notation; - Create AppVMs also to fetch and send emails, useful for OfflineIMAP that requires sync; - OfflineIMAP is smart enough depending on the server, such as Gmail; - Quote options managed by the user such as password fields as they could contain spaces; and - Default fetching method to always keep files on the remote to avoid users being surprised about the fetcher behavior or losing data.
33 lines
746 B
Plaintext
33 lines
746 B
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2023 - 2025 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
|
|
- dotfiles.copy-mutt
|
|
|
|
"{{ slsdotpath }}-reader-mailcap":
|
|
file.managed:
|
|
- name: /home/user/.mailcap
|
|
- source: salt://{{ slsdotpath }}/files/reader/mailcap
|
|
- mode: "0644"
|
|
- user: user
|
|
- group: user
|
|
- makedirs: True
|
|
|
|
"{{ slsdotpath }}-reader-mutt-offline":
|
|
file.symlink:
|
|
- require:
|
|
- pkg: dotfiles.copy-mutt
|
|
- name: /home/user/.config/mutt/90_offline.muttrc
|
|
- source: /home/user/.config/mutt/sample/offline.muttrc.example
|
|
- force: True
|
|
|
|
{% endif -%}
|