-1

プラグイン「powermail」にアクセスできる編集者は、すべてのフォームにアクセスできます。これはマルチドメイン インストールであるため、編集者はドメインのフォームにのみアクセスできる必要があります。

アクセス権の制限で十分だと思いましたが、ドメインやページツリーに関係なく、すべての編集者がすべてのフォームにアクセスできます。

ヒントはありますか?

ありがとう

カースティン

4

2 に答える 2

1

powermail 3.8 以降では、編集者は自動的にアクセスできるページに保存されているフォームのみを選択できます。

于 2016-10-23T07:58:59.173 に答える
0

ここで答えを得ました: https://docs.typo3.org/typo3cms/extensions/powermail/ForAdministrators/BestPractice/FilterFormSelection/Index.html

たとえば、次のように PageTS で制限します。

#Show only Forms from the same page where the plugin is stored (and all subpages)
tx_powermail.flexForm.formSelection = current

# Show Forms from page 46 (and all subpages)
tx_powermail.flexForm.formSelection = 46

# Show Forms from page 46,49 and the current page where the plugin is stored (and all their subpages)
tx_powermail.flexForm.formSelection = 46,49,current
于 2016-09-05T14:01:25.030 に答える