mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Merge branch 'STABLE-BRANCH-2-2' into master
This commit is contained in:
commit
d4dc4245bf
36 changed files with 516 additions and 135 deletions
|
@ -85,7 +85,7 @@ DVIPS = TEXINPUTS="$(srcdir)$(PATH_SEPARATOR)$$TEXINPUTS" dvips
|
|||
AM_MAKEINFOFLAGS = -I $(srcdir) --css-ref=/share/site.css
|
||||
|
||||
YAT2M_OPTIONS = -I $(srcdir) \
|
||||
--release "GnuPG @PACKAGE_VERSION@" --source "GNU Privacy Guard 2.1"
|
||||
--release "GnuPG @PACKAGE_VERSION@" --source "GNU Privacy Guard 2.2"
|
||||
|
||||
myman_sources = gnupg7.texi gpg.texi gpgsm.texi gpg-agent.texi \
|
||||
dirmngr.texi scdaemon.texi tools.texi wks.texi
|
||||
|
|
|
@ -1581,6 +1581,27 @@ option is valid for the entire session or until reset to 0. This
|
|||
option is useful if the key is later used on boxes which are either
|
||||
much slower or faster than the actual box.
|
||||
|
||||
@item pretend-request-origin
|
||||
This option switches the connection into a restricted mode which
|
||||
handles all further commands in the same way as they would be handled
|
||||
when originating from the extra or browser socket. Note that this
|
||||
option is not available in the restricted mode. Valid values for this
|
||||
option are:
|
||||
|
||||
@table @code
|
||||
@item none
|
||||
@itemx local
|
||||
This is a NOP and leaves the connection in the standard way.
|
||||
|
||||
@item remote
|
||||
Pretend to come from a remote origin in the same way as connections
|
||||
from the @option{--extra-socket}.
|
||||
|
||||
@item browser
|
||||
Pretend to come from a local web browser in the same way as connections
|
||||
from the @option{--browser-socket}.
|
||||
@end table
|
||||
|
||||
@end table
|
||||
|
||||
|
||||
|
|
17
doc/gpg.texi
17
doc/gpg.texi
|
@ -1126,7 +1126,9 @@ all affected self-signatures is set one second ahead.
|
|||
@opindex passwd
|
||||
Change the passphrase of the secret key belonging to the certificate
|
||||
specified as @var{user-id}. This is a shortcut for the sub-command
|
||||
@code{passwd} of the edit key menu.
|
||||
@code{passwd} of the edit key menu. When using together with the
|
||||
option @option{--dry-run} this will not actually change the passphrase
|
||||
but check that the current passphrase is correct.
|
||||
|
||||
@end table
|
||||
|
||||
|
@ -2213,8 +2215,8 @@ handy in case where an encrypted message contains a bogus key ID.
|
|||
@opindex skip-hidden-recipients
|
||||
@opindex no-skip-hidden-recipients
|
||||
During decryption skip all anonymous recipients. This option helps in
|
||||
the case that people use the hidden recipients feature to hide there
|
||||
own encrypt-to key from others. If oneself has many secret keys this
|
||||
the case that people use the hidden recipients feature to hide their
|
||||
own encrypt-to key from others. If one has many secret keys this
|
||||
may lead to a major annoyance because all keys are tried in turn to
|
||||
decrypt something which was not really intended for it. The drawback
|
||||
of this option is that it is currently not possible to decrypt a
|
||||
|
@ -3177,6 +3179,15 @@ are:
|
|||
Pinentry the user is not prompted again if he enters a bad password.
|
||||
@end table
|
||||
|
||||
@item --request-origin @var{origin}
|
||||
@opindex request-origin
|
||||
Tell gpg to assume that the operation ultimately originated at
|
||||
@var{origin}. Depending on the origin certain restrictions are applied
|
||||
and the Pinentry may include an extra note on the origin. Supported
|
||||
values for @var{origin} are: @code{local} which is the default,
|
||||
@code{remote} to indicate a remote origin or @code{browser} for an
|
||||
operation requested by a web browser.
|
||||
|
||||
@item --command-fd @var{n}
|
||||
@opindex command-fd
|
||||
This is a replacement for the deprecated shared-memory IPC mode.
|
||||
|
|
|
@ -765,6 +765,15 @@ are:
|
|||
Pinentry the user is not prompted again if he enters a bad password.
|
||||
@end table
|
||||
|
||||
@item --request-origin @var{origin}
|
||||
@opindex request-origin
|
||||
Tell gpgsm to assume that the operation ultimately originated at
|
||||
@var{origin}. Depending on the origin certain restrictions are applied
|
||||
and the Pinentry may include an extra note on the origin. Supported
|
||||
values for @var{origin} are: @code{local} which is the default,
|
||||
@code{remote} to indicate a remote origin or @code{browser} for an
|
||||
operation requested by a web browser.
|
||||
|
||||
@item --no-common-certs-import
|
||||
@opindex no-common-certs-import
|
||||
Suppress the import of common certificates on keybox creation.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue