123456789101112131415161718192021222324252627282930313233343536 |
- # This file is part of encryptedbackups.
- #
- # Edit here several configuration aspects to suit your backup needs.
- #
- # Aspects are presented on the basis of a key=value pair (no space between)
- # Lines that start with a '#' are ignored.
- #
- # Copyright (C) 2016 - Klaus Zimmermann - https://quitter.se/kzimmermann
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # What is the intended recipient that can decrypt the backup?
- # Valid entries include a full email address, PGP key fingerprint, etc.
- # Examples:
- # recipient=someone@example.com
- # recipient=AB123456
- recipient=someone@example.com
- # Sign every backup? Although this adds some degree of integrity-checking, it
- # can also increase the time it takes, especially if used in a script.
- # 0 - no
- # 1 - yes
- autosign=0
|