* ``ipEncryptKey=""``: str - A key, that can be generated via the :func:`makeIPCipherKey` function, to encrypt the IP address of the requestor for anonymization purposes. The encryption is done using ipcrypt for IPv4 and a 128-bit AES ECB operation for IPv6.
* ``exportTags=""``: str - The comma-separated list of keys of internal tags to export into the ``tags`` Protocol Buffer field, as "key:value" strings. Note that a tag with an empty value will be exported as "<key>", not "<key>:". An empty string means that no internal tag will be exported. The special value ``*`` means that all tags will be exported.
* ``exportTagsKeyOnly=false``: boolean - Whether to export tags matched by ``exportTags`` or ``exportTagsPrefixes`` as ``key`` (``true``) or ``key:value`` strings (``false``, the default).
- * ``exportTagsPrefixes="""``: str - Comma-separated list of prefixes: internal tags whose keys match at least one of these prefixes will be exported into the ``tags`` Protocol Buffer field, as ``key:value`` strings (or as ``key`` if ``exportTagsKeyOnly`` is set). Tags whose keys match at least of the entries in ``exportTags`` will be exported as well.
+ * ``exportTagsPrefixes="""``: str - Comma-separated list of prefixes: internal tags whose keys match at least one of these prefixes will be exported into the ``tags`` Protocol Buffer field, as ``key:value`` strings (or as ``key`` if ``exportTagsKeyOnly`` is set). Tags whose keys match at least one of the entries in ``exportTags`` will be exported as well.
* ``exportTagsStripPrefixes=false``: boolean - Whether to strip the prefix part of the key when exporting a tag matched by one of the prefixes defined in ``exportTagsPrefixes``.
.. function:: RemoteLogResponseAction(remoteLogger[, alterFunction[, includeCNAME [, options [, metas [, delay]]]]])