Skip to content

Commit

Permalink
Merge branch '0.3.8-settings-encrypt-by-default-854' into testing
Browse files Browse the repository at this point in the history
  • Loading branch information
pazz committed Mar 11, 2016
2 parents 707ef0c + 5415a81 commit c5af547
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions alot/defaults/alot.rc.spec
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ prefer_plaintext = boolean(default=False)
# messages in that thread.
msg_summary_hides_threadwide_tags = boolean(default=True)

# Key bindings
# Key bindings
[bindings]
__many__ = string(default=None)
[[___many___]]
Expand Down Expand Up @@ -298,8 +298,21 @@ msg_summary_hides_threadwide_tags = boolean(default=True)
# Outgoing messages will be GPG signed by default if this is set to True.
sign_by_default = boolean(default=False)

# Outgoing messages will be GPG encrypted by default if this is set to True.
encrypt_by_default = boolean(default=False)
# Alot will try to GPG encrypt outgoing messages by default when this
# is set to `True` or `Valid`. If set to `True` the message will be
# encrypted for all recipients if a key for all of them is available
# in the key ring. If set to `Valid` it will be encrypted to all
# recipients if a valid key is available for all recipients.
# Otherwise (at least one key not available or not valid) the message
# will not be encrypted by default.
#
# .. note:: If the message will not be encrypted by default you can
# still use the :ref:`toggleencrypt
# <cmd.envelope.toggleencrypt>`, :ref:`encrypt
# <cmd.envelope.encrypt>` and :ref:`unencrypt
# <cmd.envelope.unencrypt>` commands to encrypt it.

encrypt_by_default = option('Valid', True, False, default=False)

# The GPG key ID you want to use with this account. If unset, alot will
# use your default key.
Expand Down

0 comments on commit c5af547

Please sign in to comment.