Roundcube Community Forum

 

plugins problem (not work correctly) [DONE]

Started by DimmKo, December 22, 2015, 03:19:13 PM

Previous topic - Next topic

DimmKo

Hello!
Sorry to my English... I use google translate.
I have problem with plugins in roundcube.
This my config - config.inc.php

// PLUGINS
$config['plugins'] = array('managesieve', 'password');
$config['plugins'] = array('html5_notifier');
$config['plugins'] = array('antibrutforce');
$config['plugins'] = array('drcaptcha');
$config['plugins'] = array('report_junk');
$config['plugins'] = array('zipdownload');
$config['plugins'] = array('dkimstatus');

In case of such nastrostroyka only a few plug-ins work
$config['plugins'] = array('managesieve', 'password'); - ok
$config['plugins'] = array('dkimstatus'); - ok
others plugins - fail

Folders with plugins:
acl                         
example_addressbook     
new_user_identity
additional_message_headers 
filesystem_attachments 
password
antiBruteForce             
help                   
redundant_attachments
archive                     
hide_blockquote         
report_junk
attachment_reminder         
html5_notifier         
show_additional_headers
autologon                   
http_authentication     
squirrelmail_usercopy
database_attachments       
identity_select         
subscriptions_option
debug_logger               
jqueryui               
userinfo
dkimstatus                 
legacy_browser         
vcard_attachments
drcaptcha                   
managesieve             
virtuser_file
duo_auth                   
markasjunk             
virtuser_query
emoticons                   
newmail_notifier       
zipdownload

I tried to disconnect some plug-ins and then something from them worked. But not all together.
When I the first time added plug-ins that they worked correctly. After reset of the server plug-ins don't work.

please help me with my problem.

Roundcube Webmail 1.1.3
**********************************
на русском
Плагины не все работают.
Из списка выше работает только 2 - managesieve и dkimstatus
Если какие-то пробовать отключать в конфигурации, то какие-то начинают работать.
Когда я первый раз их добавил, то все работали. Но после перезагрузки - перестали работать.
Папки все на месте (выше).
Пожалуйста, помогите решить эту проблему.

Roundcube Webmail 1.1.3

SKaero

You can only supply on plugin array, what your currently doing is over writing the previous plugin array. Here is an example of what you want:

$config['plugins'] = array('managesieve', 'password', 'html5_notifier', 'antibrutforce', 'drcaptcha', 'report_junk', 'zipdownload', 'dkimstatus');

DimmKo