RoundCube - как включить сразу все плагины: различия между версиями
Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Admin iph (обсуждение | вклад) |
Admin iph (обсуждение | вклад) |
||
Строка 7: | Строка 7: | ||
// List of active plugins (in plugins/ directory) | // List of active plugins (in plugins/ directory) | ||
$config['plugins'] = array('acl', 'additional_message_headers', 'archive', 'attachment_reminder', 'autologon', 'database_attachments', 'debug_logger', 'emoticons', 'enigma', 'example_addressbook', 'filesystem_attachments', 'help', 'hide_blockquote', 'http_authentication', 'identicon', 'identity_select', 'jqueryui', 'krb_authentication', 'managesieve', 'markasjunk', 'new_user_dialog', 'new_user_identity', 'newmail_notifier', 'password', 'redundant_attachments', 'show_additional_headers', 'squirrelmail_usercopy', 'subscriptions_option', 'userinfo', 'vcard_attachments', 'virtuser_file', 'virtuser_query', 'zipdownload'); | $config['plugins'] = array('acl', 'additional_message_headers', 'archive', 'attachment_reminder', 'autologon', 'database_attachments', 'debug_logger', 'emoticons', 'enigma', 'example_addressbook', 'filesystem_attachments', 'help', 'hide_blockquote', 'http_authentication', 'identicon', 'identity_select', 'jqueryui', 'krb_authentication', 'managesieve', 'markasjunk', 'new_user_dialog', 'new_user_identity', 'newmail_notifier', 'password', 'redundant_attachments', 'show_additional_headers', 'squirrelmail_usercopy', 'subscriptions_option', 'userinfo', 'vcard_attachments', 'virtuser_file', 'virtuser_query', 'zipdownload'); | ||
+ | |||
+ | Сами плагины расположены в папку /plugins: | ||
+ | # ls plugins/ | ||
+ | acl database_attachments filesystem_attachments identity_select newmail_notifier show_additional_headers virtuser_file | ||
+ | additional_message_headers debug_logger help jqueryui new_user_dialog squirrelmail_usercopy virtuser_query | ||
+ | archive emoticons hide_blockquote krb_authentication new_user_identity subscriptions_option zipdownload | ||
+ | attachment_reminder enigma http_authentication managesieve password userinfo | ||
+ | autologon example_addressbook identicon markasjunk redundant_attachments vcard_attachments |
Версия 14:40, 10 мая 2021
RoundCube - как включить сразу все плагины
Включить все конфиги Roundcube можно через конфиг config/config.inc.php - в конце файла добавить:
// PLUGINS // ---------------------------------- // List of active plugins (in plugins/ directory) $config['plugins'] = array('acl', 'additional_message_headers', 'archive', 'attachment_reminder', 'autologon', 'database_attachments', 'debug_logger', 'emoticons', 'enigma', 'example_addressbook', 'filesystem_attachments', 'help', 'hide_blockquote', 'http_authentication', 'identicon', 'identity_select', 'jqueryui', 'krb_authentication', 'managesieve', 'markasjunk', 'new_user_dialog', 'new_user_identity', 'newmail_notifier', 'password', 'redundant_attachments', 'show_additional_headers', 'squirrelmail_usercopy', 'subscriptions_option', 'userinfo', 'vcard_attachments', 'virtuser_file', 'virtuser_query', 'zipdownload');
Сами плагины расположены в папку /plugins:
# ls plugins/ acl database_attachments filesystem_attachments identity_select newmail_notifier show_additional_headers virtuser_file
additional_message_headers debug_logger help jqueryui new_user_dialog squirrelmail_usercopy virtuser_query archive emoticons hide_blockquote krb_authentication new_user_identity subscriptions_option zipdownload attachment_reminder enigma http_authentication managesieve password userinfo autologon example_addressbook identicon markasjunk redundant_attachments vcard_attachments