Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: DimmKo on December 22, 2015, 03:19:13 PM

Title: plugins problem (not work correctly) [DONE]
Post by: DimmKo on December 22, 2015, 03:19:13 PM
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
Title: Re: plugins problem (not work correctly)
Post by: SKaero on December 22, 2015, 03:27:57 PM
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');
Title: Re: plugins problem (not work correctly)
Post by: DimmKo on December 23, 2015, 12:32:18 AM
SKaero,
Thank you!!!
it`s work!  :P