├── .gitignore ├── .travis.yml.disabled ├── LICENSE ├── README.md ├── beanstalkd ├── Makefile ├── files │ └── beanstalkd.init └── patches │ └── 000-replace-posix_fallocate.patch ├── cfengine-promises ├── Config.in ├── Makefile └── files │ ├── cfengine-apply │ ├── cfengine-promises.init │ ├── generate-enigmabox-statusmsg │ ├── hello │ ├── init-mysql │ ├── lan-range │ ├── rebuild-iptables.init │ ├── resolv.conf │ ├── root │ ├── app_cjdns │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── cjdnsadmin.mustache │ │ │ ├── cjdroute.conf.mustache │ │ │ ├── setup-cjdns-networking.mustache │ │ │ └── wpa_supplicant.conf.mustache │ ├── app_database │ │ ├── bundle.cf │ │ └── templates │ │ │ └── my.cnf │ ├── app_email │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── dovecot.conf │ │ │ ├── exim4.conf.mustache │ │ │ ├── php.ini │ │ │ └── users.conf.mustache │ ├── app_hypesites │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── dokuwiki.conf.mustache │ │ │ ├── index.conf.mustache │ │ │ ├── owncloud.conf.mustache │ │ │ ├── renew-notice.mustache │ │ │ ├── stikked.conf.mustache │ │ │ └── volumes.mustache │ ├── app_security │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── webinterface.conf.mustache │ │ │ └── webinterface.htpasswd.mustache │ ├── app_telephony │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── extensions.conf.mustache │ │ │ ├── sip.conf.mustache │ │ │ ├── sip_notify.conf │ │ │ └── voicemail.conf │ ├── app_webfilter │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── etc-config-privoxy.mustache │ │ │ ├── match-all.action │ │ │ └── user.action.mustache │ ├── bootstrap.cf │ ├── lib │ │ ├── bundles.cf │ │ ├── commands.cf │ │ ├── common.cf │ │ ├── databases.cf │ │ ├── feature.cf │ │ ├── files.cf │ │ ├── guest_environments.cf │ │ ├── monitor.cf │ │ ├── packages.cf │ │ ├── paths.cf │ │ ├── processes.cf │ │ ├── services.cf │ │ ├── stdlib.cf │ │ ├── storage.cf │ │ └── users.cf │ ├── site.cf │ ├── system_base │ │ ├── bundle.cf │ │ └── templates │ │ │ ├── banner │ │ │ ├── config-network.alix.mustache │ │ │ ├── config-network.apu.mustache │ │ │ ├── config-network.raspi.mustache │ │ │ ├── config-radvd.alix │ │ │ ├── config-radvd.apu │ │ │ ├── config-radvd.raspi │ │ │ ├── config-system │ │ │ ├── crontab │ │ │ ├── inittab │ │ │ ├── lighttpd.conf │ │ │ ├── sysctl.conf │ │ │ └── sysupgrade.conf │ └── system_network │ │ ├── bundle.cf │ │ └── templates │ │ ├── autoupdates.mustache │ │ ├── config-dhcp │ │ ├── dhcpd.conf.mustache │ │ ├── display_names.mustache │ │ ├── hosts.mustache │ │ ├── lan-range.mustache │ │ └── rebuild-iptables.mustache │ ├── setup-cjdns-networking.init │ ├── speedtest_cli.py │ ├── tts-de │ └── tts-en ├── cfengine ├── Makefile ├── files │ ├── cfengine.init │ ├── localhost.priv │ └── localhost.pub └── patches │ └── 001-configure.ac-fix-failing-pam-check ├── cjdns-master ├── Makefile ├── files │ └── cjdns.init └── patches │ ├── 001-libuv-multiarch-compile.patch │ ├── 002-cjdns-ldflags.patch │ └── 003-fuck-openwrt-disable-ssp-support-for-x86.patch ├── cjdns-v16-avx ├── Makefile └── patches │ ├── 001-libuv-multiarch-compile.patch │ ├── 002-cjdns-ldflags.patch │ ├── 003-fuck-openwrt-disable-ssp-support-for-x86.patch │ └── 004-no-glibc-here.patch ├── cjdns-v16 ├── Makefile └── patches │ ├── 001-libuv-multiarch-compile.patch │ ├── 002-cjdns-ldflags.patch │ ├── 003-fuck-openwrt-disable-ssp-support-for-x86.patch │ └── 004-no-glibc-here.patch ├── cjdns-v6 ├── Makefile └── patches │ ├── 001-libuv-multiarch-compile.patch │ └── 002-fuck-openwrt-disable-ssp-support-for-x86.patch ├── django-south └── Makefile ├── dokuwiki └── Makefile ├── exim4 ├── Makefile ├── files │ ├── Makefile │ └── exim.init └── patches │ └── 001-Makefile-Base.patch ├── golang └── Makefile ├── hypesites ├── Makefile └── files │ ├── hypesites.conf │ └── index.html ├── owncloud-documents └── Makefile ├── owncloud └── Makefile ├── provision-grandstream ├── Makefile └── files │ ├── cfg.xml │ └── lighttpd-site.conf ├── python-beanstalkc └── Makefile ├── python-cython └── Makefile ├── python-django-1.4 └── Makefile ├── python-gevent └── Makefile ├── python-greenlet └── Makefile ├── python-gunicorn └── Makefile ├── python-requests └── Makefile ├── python-setuptools └── Makefile ├── python-six └── Makefile ├── python-unidecode └── Makefile ├── roundcube ├── Makefile └── files │ ├── lighttpd-site.conf │ └── root │ └── opt │ └── enigmabox │ └── roundcube │ ├── .htaccess │ ├── CHANGELOG │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── SQL │ ├── mssql.initial.sql │ ├── mssql │ │ ├── 2009103100.sql │ │ ├── 2010100600.sql │ │ ├── 2011011200.sql │ │ ├── 2011092800.sql │ │ ├── 2011111600.sql │ │ ├── 2011121400.sql │ │ ├── 2012051800.sql │ │ ├── 2012080700.sql │ │ ├── 2013011000.sql │ │ ├── 2013042700.sql │ │ ├── 2013052500.sql │ │ ├── 2013061000.sql │ │ └── 2014042900.sql │ ├── mysql.initial.sql │ ├── mysql │ │ ├── 2008030300.sql │ │ ├── 2008040500.sql │ │ ├── 2008060900.sql │ │ ├── 2008092100.sql │ │ ├── 2009090400.sql │ │ ├── 2009103100.sql │ │ ├── 2010042300.sql │ │ ├── 2010100600.sql │ │ ├── 2011011200.sql │ │ ├── 2011092800.sql │ │ ├── 2011111600.sql │ │ ├── 2011121400.sql │ │ ├── 2012080700.sql │ │ ├── 2013011000.sql │ │ ├── 2013042700.sql │ │ ├── 2013052500.sql │ │ ├── 2013061000.sql │ │ └── 2014042900.sql │ ├── postgres.initial.sql │ ├── postgres │ │ ├── 2008030300.sql │ │ ├── 2008060900.sql │ │ ├── 2008092100.sql │ │ ├── 2009090400.sql │ │ ├── 2009103100.sql │ │ ├── 2010042300.sql │ │ ├── 2010100600.sql │ │ ├── 2011011200.sql │ │ ├── 2011092800.sql │ │ ├── 2011111600.sql │ │ ├── 2011121400.sql │ │ ├── 2012080700.sql │ │ ├── 2013011000.sql │ │ ├── 2013042700.sql │ │ ├── 2013052500.sql │ │ ├── 2013061000.sql │ │ └── 2014042900.sql │ ├── sqlite.initial.sql │ └── sqlite │ │ ├── 2008030300.sql │ │ ├── 2008060900.sql │ │ ├── 2008092100.sql │ │ ├── 2009090400.sql │ │ ├── 2009103100.sql │ │ ├── 2010042300.sql │ │ ├── 2010100600.sql │ │ ├── 2011011200.sql │ │ ├── 2011092800.sql │ │ ├── 2011111600.sql │ │ ├── 2011121400.sql │ │ ├── 2012080700.sql │ │ ├── 2013011000.sql │ │ ├── 2013011700.sql │ │ ├── 2013042700.sql │ │ ├── 2013052500.sql │ │ ├── 2013061000.sql │ │ └── 2014042900.sql │ ├── UPGRADING │ ├── bin │ ├── cleandb.sh │ ├── cssshrink.sh │ ├── decrypt.sh │ ├── exportgettext.sh │ ├── gc.sh │ ├── importgettext.sh │ ├── indexcontacts.sh │ ├── installto.sh │ ├── jsshrink.sh │ ├── moduserprefs.sh │ ├── msgexport.sh │ ├── msgimport.sh │ ├── package2composer.sh │ ├── transifexpull.sh │ ├── update.sh │ ├── updatecss.sh │ └── updatedb.sh │ ├── composer.json-dist │ ├── config │ ├── .htaccess │ ├── config.inc.php │ ├── config.inc.php.sample │ ├── db.inc.php.dist │ ├── defaults.inc.php │ ├── main.inc.php.dist │ └── mimetypes.php │ ├── index.php │ ├── installer │ ├── check.php │ ├── client.js │ ├── config.php │ ├── images │ │ ├── add.png │ │ ├── banner_gradient.gif │ │ ├── banner_schraffur.gif │ │ ├── delete.png │ │ ├── error.png │ │ └── roundcube_logo.png │ ├── index.php │ ├── rcube_install.php │ ├── styles.css │ └── test.php │ ├── logs │ └── .htaccess │ ├── plugins │ ├── acl │ │ ├── acl.js │ │ ├── acl.min.js │ │ ├── acl.php │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── th_TH.inc │ │ │ ├── ti.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── skins │ │ │ ├── classic │ │ │ │ ├── acl.css │ │ │ │ ├── acl.min.css │ │ │ │ ├── images │ │ │ │ │ ├── enabled.png │ │ │ │ │ └── partial.png │ │ │ │ └── templates │ │ │ │ │ └── table.html │ │ │ └── larry │ │ │ │ ├── acl.css │ │ │ │ ├── acl.min.css │ │ │ │ ├── images │ │ │ │ ├── enabled.png │ │ │ │ └── partial.png │ │ │ │ └── templates │ │ │ │ └── table.html │ │ └── tests │ │ │ └── Acl.php │ ├── additional_message_headers │ │ ├── additional_message_headers.php │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── package.xml │ │ └── tests │ │ │ └── AdditionalMessageHeaders.php │ ├── archive │ │ ├── archive.js │ │ ├── archive.min.js │ │ ├── archive.php │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── ast.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── ku.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── si_LK.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── skins │ │ │ ├── classic │ │ │ │ ├── archive.css │ │ │ │ ├── archive.min.css │ │ │ │ ├── archive_act.png │ │ │ │ ├── archive_pas.png │ │ │ │ └── foldericon.png │ │ │ └── larry │ │ │ │ └── .gitignore │ │ └── tests │ │ │ └── Archive.php │ ├── attachment_reminder │ │ ├── attachment_reminder.js │ │ ├── attachment_reminder.min.js │ │ ├── attachment_reminder.php │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar.inc │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── bn_BD.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── es_MX.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hi_IN.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── ia.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── kn_IN.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mn_MN.inc │ │ │ ├── ms_MY.inc │ │ │ ├── my_MM.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_BE.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── nqo.inc │ │ │ ├── om.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── te_IN.inc │ │ │ ├── th_TH.inc │ │ │ ├── ti.inc │ │ │ ├── tr_TR.inc │ │ │ ├── tzm.inc │ │ │ ├── uk_UA.inc │ │ │ ├── ur_PK.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ └── package.xml │ ├── autologon │ │ ├── autologon.php │ │ └── tests │ │ │ └── Autologon.php │ ├── database_attachments │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── database_attachments.php │ │ ├── package.xml │ │ └── tests │ │ │ └── DatabaseAttachments.php │ ├── debug_logger │ │ ├── composer.json │ │ ├── debug_logger.php │ │ ├── package.xml │ │ ├── runlog │ │ │ └── runlog.php │ │ └── tests │ │ │ └── DebugLogger.php │ ├── emoticons │ │ ├── composer.json │ │ ├── emoticons.php │ │ ├── package.xml │ │ └── tests │ │ │ └── Emoticons.php │ ├── enigma │ │ ├── README │ │ ├── config.inc.php.dist │ │ ├── enigma.js │ │ ├── enigma.min.js │ │ ├── enigma.php │ │ ├── home │ │ │ └── .htaccess │ │ ├── lib │ │ │ ├── enigma_driver.php │ │ │ ├── enigma_driver_gnupg.php │ │ │ ├── enigma_driver_phpssl.php │ │ │ ├── enigma_engine.php │ │ │ ├── enigma_error.php │ │ │ ├── enigma_key.php │ │ │ ├── enigma_signature.php │ │ │ ├── enigma_subkey.php │ │ │ ├── enigma_ui.php │ │ │ └── enigma_userid.php │ │ ├── localization │ │ │ ├── en_US.inc │ │ │ ├── ja_JP.inc │ │ │ └── ru_RU.inc │ │ ├── skins │ │ │ └── classic │ │ │ │ ├── enigma.css │ │ │ │ ├── enigma.min.css │ │ │ │ ├── enigma.png │ │ │ │ ├── enigma_error.png │ │ │ │ ├── key.png │ │ │ │ ├── key_add.png │ │ │ │ ├── keys_toolbar.png │ │ │ │ └── templates │ │ │ │ ├── keyimport.html │ │ │ │ ├── keyinfo.html │ │ │ │ └── keys.html │ │ └── tests │ │ │ └── Enigma.php │ ├── enigmabox_additions │ │ ├── eb.js │ │ ├── enigmabook.php │ │ └── enigmabox_additions.php │ ├── example_addressbook │ │ ├── example_addressbook.php │ │ ├── example_addressbook_backend.php │ │ ├── package.xml │ │ └── tests │ │ │ └── ExampleAddressbook.php │ ├── filesystem_attachments │ │ ├── composer.json │ │ ├── filesystem_attachments.php │ │ ├── package.xml │ │ └── tests │ │ │ └── FilesystemAttachments.php │ ├── help │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── content │ │ │ └── license.html │ │ ├── help.js │ │ ├── help.min.js │ │ ├── help.php │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── ast.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── kn_IN.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── ti.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── skins │ │ │ ├── classic │ │ │ │ ├── help.css │ │ │ │ ├── help.gif │ │ │ │ ├── help.min.css │ │ │ │ └── templates │ │ │ │ │ └── help.html │ │ │ └── larry │ │ │ │ ├── help.css │ │ │ │ ├── help.min.css │ │ │ │ ├── help.png │ │ │ │ ├── icons.psd │ │ │ │ └── templates │ │ │ │ └── help.html │ │ └── tests │ │ │ └── Help.php │ ├── hide_blockquote │ │ ├── composer.json │ │ ├── hide_blockquote.js │ │ ├── hide_blockquote.min.js │ │ ├── hide_blockquote.php │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── skins │ │ │ └── larry │ │ │ │ ├── style.css │ │ │ │ └── style.min.css │ │ └── tests │ │ │ └── HideBlockquote.php │ ├── http_authentication │ │ ├── config.inc.php.dist │ │ ├── http_authentication.php │ │ ├── logout.html │ │ ├── package.xml │ │ └── tests │ │ │ └── HttpAuthentication.php │ ├── identity_select │ │ ├── composer.json │ │ ├── identity_select.php │ │ ├── package.xml │ │ └── tests │ │ │ └── IdentitySelect.php │ ├── jqueryui │ │ ├── README │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── jqueryui.php │ │ ├── js │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de-CH.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-kz.js │ │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── package.xml │ │ ├── tests │ │ │ └── Jqueryui.php │ │ └── themes │ │ │ ├── classic │ │ │ ├── images │ │ │ │ ├── buttongradient.png │ │ │ │ ├── listheader.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_90_cc3333_40x100.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-hard_90_a3a3a3_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_90_e6e6e7_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_90_f4f4f4_1x100.png │ │ │ │ ├── ui-icons_000000_256x240.png │ │ │ │ ├── ui-icons_333333_256x240.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_cc3333_256x240.png │ │ │ │ └── ui-icons_dddddd_256x240.png │ │ │ ├── jquery-ui-1.9.2.custom.css │ │ │ └── roundcube-custom.diff │ │ │ ├── larry │ │ │ ├── images │ │ │ │ ├── ui-bg_highlight-hard_55_b0ccd7_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_65_ffffff_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_75_eaeaea_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_75_f8f8f8_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_fafafa_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_90_e4e4e4_1x100.png │ │ │ │ ├── ui-dialog-close.png │ │ │ │ ├── ui-icons-datepicker.png │ │ │ │ ├── ui-icons_004458_256x240.png │ │ │ │ └── ui-icons_d7211e_256x240.png │ │ │ └── jquery-ui-1.9.2.custom.css │ │ │ └── redmond │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ └── jquery-ui-1.9.2.custom.css │ ├── managesieve │ │ ├── Changelog │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── lib │ │ │ └── Roundcube │ │ │ │ ├── rcube_sieve.php │ │ │ │ ├── rcube_sieve_engine.php │ │ │ │ ├── rcube_sieve_script.php │ │ │ │ └── rcube_sieve_vacation.php │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── ia.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── si_LK.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sv_SE.inc │ │ │ ├── th_TH.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── managesieve.js │ │ ├── managesieve.min.js │ │ ├── managesieve.php │ │ ├── package.xml │ │ ├── skins │ │ │ ├── classic │ │ │ │ ├── images │ │ │ │ │ ├── add.png │ │ │ │ │ ├── del.png │ │ │ │ │ ├── down_small.gif │ │ │ │ │ ├── erase.png │ │ │ │ │ ├── filter.png │ │ │ │ │ └── up_small.gif │ │ │ │ ├── managesieve.css │ │ │ │ ├── managesieve.min.css │ │ │ │ ├── managesieve_mail.css │ │ │ │ ├── managesieve_mail.min.css │ │ │ │ └── templates │ │ │ │ │ ├── filteredit.html │ │ │ │ │ ├── managesieve.html │ │ │ │ │ ├── setedit.html │ │ │ │ │ └── vacation.html │ │ │ └── larry │ │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── del.png │ │ │ │ ├── down_small.gif │ │ │ │ ├── erase.png │ │ │ │ ├── up_small.gif │ │ │ │ └── vacation_icons.png │ │ │ │ ├── managesieve.css │ │ │ │ ├── managesieve.min.css │ │ │ │ ├── managesieve_mail.css │ │ │ │ ├── managesieve_mail.min.css │ │ │ │ └── templates │ │ │ │ ├── filteredit.html │ │ │ │ ├── managesieve.html │ │ │ │ ├── setedit.html │ │ │ │ └── vacation.html │ │ └── tests │ │ │ ├── Managesieve.php │ │ │ ├── Parser.php │ │ │ ├── Tokenizer.php │ │ │ └── src │ │ │ ├── parser │ │ │ ├── parser.out │ │ │ ├── parser_body │ │ │ ├── parser_date │ │ │ ├── parser_enotify_a │ │ │ ├── parser_enotify_b │ │ │ ├── parser_imapflags │ │ │ ├── parser_include │ │ │ ├── parser_index │ │ │ ├── parser_kep14 │ │ │ ├── parser_kep14.out │ │ │ ├── parser_notify_a │ │ │ ├── parser_notify_b │ │ │ ├── parser_prefix │ │ │ ├── parser_relational │ │ │ ├── parser_subaddress │ │ │ ├── parser_vacation │ │ │ ├── parser_vacation_seconds │ │ │ └── parser_variables │ ├── markasjunk │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar.inc │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── ku.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── si_LK.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── markasjunk.js │ │ ├── markasjunk.min.js │ │ ├── markasjunk.php │ │ ├── package.xml │ │ ├── skins │ │ │ ├── classic │ │ │ │ ├── junk_act.png │ │ │ │ ├── junk_pas.png │ │ │ │ ├── markasjunk.css │ │ │ │ └── markasjunk.min.css │ │ │ └── larry │ │ │ │ └── .gitignore │ │ └── tests │ │ │ └── Markasjunk.php │ ├── new_user_dialog │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar.inc │ │ │ ├── ar_SA.inc │ │ │ ├── ast.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── ku.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── new_user_dialog.php │ │ ├── newuserdialog.css │ │ ├── newuserdialog.min.css │ │ ├── package.xml │ │ └── tests │ │ │ └── NewUserDialog.php │ ├── new_user_identity │ │ ├── composer.json │ │ ├── new_user_identity.php │ │ ├── package.xml │ │ └── tests │ │ │ └── NewUserIdentity.php │ ├── newmail_notifier │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── favicon.ico │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── ast.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── ia.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── si_LK.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── ti.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── mail.png │ │ ├── newmail_notifier.js │ │ ├── newmail_notifier.min.js │ │ ├── newmail_notifier.php │ │ ├── overlay.ico │ │ ├── package.xml │ │ ├── sound.mp3 │ │ ├── sound.wav │ │ └── tests │ │ │ └── NewmailNotifier.php │ ├── password │ │ ├── README │ │ ├── config.inc.php.dist │ │ ├── drivers │ │ │ ├── chpasswd.php │ │ │ ├── cpanel.php │ │ │ ├── dbmail.php │ │ │ ├── directadmin.php │ │ │ ├── domainfactory.php │ │ │ ├── expect.php │ │ │ ├── hmail.php │ │ │ ├── ldap.php │ │ │ ├── ldap_simple.php │ │ │ ├── pam.php │ │ │ ├── poppassd.php │ │ │ ├── pw_usermod.php │ │ │ ├── sasl.php │ │ │ ├── smb.php │ │ │ ├── sql.php │ │ │ ├── virtualmin.php │ │ │ ├── vpopmaild.php │ │ │ ├── ximss.php │ │ │ └── xmail.php │ │ ├── helpers │ │ │ ├── chgdbmailusers.c │ │ │ ├── chgsaslpasswd.c │ │ │ ├── chgvirtualminpasswd.c │ │ │ ├── chpass-wrapper.py │ │ │ └── passwd-expect │ │ ├── localization │ │ │ ├── ar.inc │ │ │ ├── ar_SA.inc │ │ │ ├── ast.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── ku.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── ti.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── password.js │ │ ├── password.min.js │ │ ├── password.php │ │ └── tests │ │ │ └── Password.php │ ├── redundant_attachments │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── package.xml │ │ ├── redundant_attachments.php │ │ └── tests │ │ │ └── RedundantAttachments.php │ ├── show_additional_headers │ │ ├── composer.json │ │ ├── package.xml │ │ ├── show_additional_headers.php │ │ └── tests │ │ │ └── ShowAdditionalHeaders.php │ ├── squirrelmail_usercopy │ │ ├── config.inc.php.dist │ │ ├── squirrelmail_usercopy.php │ │ └── tests │ │ │ └── SquirrelmailUsercopy.php │ ├── subscriptions_option │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── subscriptions_option.php │ │ └── tests │ │ │ └── SubscriptionsOption.php │ ├── userinfo │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar.inc │ │ │ ├── ar_SA.inc │ │ │ ├── ast.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── br.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_AF.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── ia.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── ku.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── ti.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── tests │ │ │ └── Userinfo.php │ │ ├── userinfo.js │ │ ├── userinfo.min.js │ │ └── userinfo.php │ ├── vcard_attachments │ │ ├── composer.json │ │ ├── localization │ │ │ ├── ar.inc │ │ │ ├── ar_SA.inc │ │ │ ├── az_AZ.inc │ │ │ ├── be_BE.inc │ │ │ ├── bg_BG.inc │ │ │ ├── bs_BA.inc │ │ │ ├── ca_ES.inc │ │ │ ├── cs_CZ.inc │ │ │ ├── cy_GB.inc │ │ │ ├── da_DK.inc │ │ │ ├── de_CH.inc │ │ │ ├── de_DE.inc │ │ │ ├── el_GR.inc │ │ │ ├── en_CA.inc │ │ │ ├── en_GB.inc │ │ │ ├── en_US.inc │ │ │ ├── eo.inc │ │ │ ├── es_419.inc │ │ │ ├── es_AR.inc │ │ │ ├── es_ES.inc │ │ │ ├── et_EE.inc │ │ │ ├── eu_ES.inc │ │ │ ├── fa_IR.inc │ │ │ ├── fi_FI.inc │ │ │ ├── fo_FO.inc │ │ │ ├── fr_FR.inc │ │ │ ├── gl_ES.inc │ │ │ ├── he_IL.inc │ │ │ ├── hr_HR.inc │ │ │ ├── hu_HU.inc │ │ │ ├── hy_AM.inc │ │ │ ├── id_ID.inc │ │ │ ├── it_IT.inc │ │ │ ├── ja_JP.inc │ │ │ ├── km_KH.inc │ │ │ ├── ko_KR.inc │ │ │ ├── lb_LU.inc │ │ │ ├── lt_LT.inc │ │ │ ├── lv_LV.inc │ │ │ ├── ml_IN.inc │ │ │ ├── mr_IN.inc │ │ │ ├── nb_NO.inc │ │ │ ├── nl_NL.inc │ │ │ ├── nn_NO.inc │ │ │ ├── pl_PL.inc │ │ │ ├── pt_BR.inc │ │ │ ├── pt_PT.inc │ │ │ ├── ro_RO.inc │ │ │ ├── ru_RU.inc │ │ │ ├── si_LK.inc │ │ │ ├── sk_SK.inc │ │ │ ├── sl_SI.inc │ │ │ ├── sr_CS.inc │ │ │ ├── sv_SE.inc │ │ │ ├── tr_TR.inc │ │ │ ├── uk_UA.inc │ │ │ ├── vi_VN.inc │ │ │ ├── zh_CN.inc │ │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── skins │ │ │ ├── classic │ │ │ │ ├── style.css │ │ │ │ ├── style.min.css │ │ │ │ ├── vcard.png │ │ │ │ └── vcard_add_contact.png │ │ │ └── larry │ │ │ │ ├── style.css │ │ │ │ ├── style.min.css │ │ │ │ ├── vcard.png │ │ │ │ └── vcard_add_contact.png │ │ ├── tests │ │ │ └── VcardAttachments.php │ │ ├── vcard_attachments.php │ │ ├── vcardattach.js │ │ └── vcardattach.min.js │ ├── virtuser_file │ │ ├── composer.json │ │ ├── package.xml │ │ ├── tests │ │ │ └── VirtuserFile.php │ │ └── virtuser_file.php │ ├── virtuser_query │ │ ├── composer.json │ │ ├── package.xml │ │ ├── tests │ │ │ └── VirtuserQuery.php │ │ └── virtuser_query.php │ └── zipdownload │ │ ├── README │ │ ├── composer.json │ │ ├── config.inc.php.dist │ │ ├── localization │ │ ├── ar.inc │ │ ├── ar_SA.inc │ │ ├── az_AZ.inc │ │ ├── be_BE.inc │ │ ├── bg_BG.inc │ │ ├── br.inc │ │ ├── bs_BA.inc │ │ ├── ca_ES.inc │ │ ├── cs_CZ.inc │ │ ├── cy_GB.inc │ │ ├── da_DK.inc │ │ ├── de_CH.inc │ │ ├── de_DE.inc │ │ ├── el_GR.inc │ │ ├── en_CA.inc │ │ ├── en_GB.inc │ │ ├── en_US.inc │ │ ├── eo.inc │ │ ├── es_419.inc │ │ ├── es_AR.inc │ │ ├── es_ES.inc │ │ ├── et_EE.inc │ │ ├── eu_ES.inc │ │ ├── fa_AF.inc │ │ ├── fa_IR.inc │ │ ├── fi_FI.inc │ │ ├── fo_FO.inc │ │ ├── fr_FR.inc │ │ ├── gl_ES.inc │ │ ├── he_IL.inc │ │ ├── hr_HR.inc │ │ ├── hu_HU.inc │ │ ├── hy_AM.inc │ │ ├── id_ID.inc │ │ ├── it_IT.inc │ │ ├── ja_JP.inc │ │ ├── km_KH.inc │ │ ├── ko_KR.inc │ │ ├── lb_LU.inc │ │ ├── lt_LT.inc │ │ ├── lv_LV.inc │ │ ├── nb_NO.inc │ │ ├── nl_NL.inc │ │ ├── nn_NO.inc │ │ ├── pl_PL.inc │ │ ├── pt_BR.inc │ │ ├── pt_PT.inc │ │ ├── ro_RO.inc │ │ ├── ru_RU.inc │ │ ├── sk_SK.inc │ │ ├── sl_SI.inc │ │ ├── sr_CS.inc │ │ ├── sv_SE.inc │ │ ├── tr_TR.inc │ │ ├── uk_UA.inc │ │ ├── vi_VN.inc │ │ ├── zh_CN.inc │ │ └── zh_TW.inc │ │ ├── package.xml │ │ ├── skins │ │ ├── classic │ │ │ ├── zip.png │ │ │ ├── zipdownload.css │ │ │ └── zipdownload.min.css │ │ └── larry │ │ │ ├── zipdownload.css │ │ │ └── zipdownload.min.css │ │ ├── tests │ │ └── Zipdownload.php │ │ ├── zipdownload.js │ │ ├── zipdownload.min.js │ │ └── zipdownload.php │ ├── program │ ├── include │ │ ├── bc.php │ │ ├── clisetup.php │ │ ├── iniset.php │ │ ├── rcmail.php │ │ ├── rcmail_html_page.php │ │ ├── rcmail_output.php │ │ ├── rcmail_output_html.php │ │ ├── rcmail_output_json.php │ │ └── rcmail_string_replacer.php │ ├── js │ │ ├── app.js │ │ ├── app.min.js │ │ ├── common.js │ │ ├── common.min.js │ │ ├── editor.js │ │ ├── editor.min.js │ │ ├── googiespell.js │ │ ├── googiespell.min.js │ │ ├── jquery.min.js │ │ ├── jstz.min.js │ │ ├── list.js │ │ ├── list.min.js │ │ ├── tiny_mce │ │ │ ├── langs │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── ta.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ │ ├── advhr │ │ │ │ │ ├── css │ │ │ │ │ │ └── advhr.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── rule.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ └── rule.htm │ │ │ │ ├── advimage │ │ │ │ │ ├── css │ │ │ │ │ │ └── advimage.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── image.htm │ │ │ │ │ ├── img │ │ │ │ │ │ └── sample.gif │ │ │ │ │ ├── js │ │ │ │ │ │ └── image.js │ │ │ │ │ └── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ ├── advlink │ │ │ │ │ ├── css │ │ │ │ │ │ └── advlink.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── advlink.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ └── link.htm │ │ │ │ ├── advlist │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── autolink │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── autoresize │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── autosave │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── langs │ │ │ │ │ │ └── en.js │ │ │ │ ├── bbcode │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── contextmenu │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── directionality │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── emotions │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── emotions.htm │ │ │ │ │ ├── img │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ └── smiley-yell.gif │ │ │ │ │ ├── js │ │ │ │ │ │ └── emotions.js │ │ │ │ │ └── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ ├── example │ │ │ │ │ ├── dialog.htm │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── img │ │ │ │ │ │ └── example.gif │ │ │ │ │ ├── js │ │ │ │ │ │ └── dialog.js │ │ │ │ │ └── langs │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── example_dependency │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── fullpage │ │ │ │ │ ├── css │ │ │ │ │ │ └── fullpage.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── fullpage.htm │ │ │ │ │ ├── js │ │ │ │ │ │ └── fullpage.js │ │ │ │ │ └── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ ├── fullscreen │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── fullscreen.htm │ │ │ │ ├── iespell │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── inlinepopups │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── skins │ │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ │ │ └── vertical.gif │ │ │ │ │ │ │ └── window.css │ │ │ │ │ └── template.htm │ │ │ │ ├── insertdatetime │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── layer │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── legacyoutput │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── lists │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── media.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ ├── embed.js │ │ │ │ │ │ └── media.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ ├── media.htm │ │ │ │ │ └── moxieplayer.swf │ │ │ │ ├── nonbreaking │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── noneditable │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── pagebreak │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── paste │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ ├── pastetext.js │ │ │ │ │ │ └── pasteword.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ ├── pastetext.htm │ │ │ │ │ └── pasteword.htm │ │ │ │ ├── preview │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── example.html │ │ │ │ │ ├── jscripts │ │ │ │ │ │ └── embed.js │ │ │ │ │ └── preview.html │ │ │ │ ├── print │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── save │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── searchreplace │ │ │ │ │ ├── css │ │ │ │ │ │ └── searchreplace.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── searchreplace.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ └── searchreplace.htm │ │ │ │ ├── spellchecker │ │ │ │ │ ├── css │ │ │ │ │ │ └── content.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── img │ │ │ │ │ │ └── wline.gif │ │ │ │ ├── style │ │ │ │ │ ├── css │ │ │ │ │ │ └── props.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── props.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ ├── props.htm │ │ │ │ │ └── readme.txt │ │ │ │ ├── tabfocus │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── table │ │ │ │ │ ├── cell.htm │ │ │ │ │ ├── css │ │ │ │ │ │ ├── cell.css │ │ │ │ │ │ ├── row.css │ │ │ │ │ │ └── table.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ ├── cell.js │ │ │ │ │ │ ├── merge_cells.js │ │ │ │ │ │ ├── row.js │ │ │ │ │ │ └── table.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ ├── merge_cells.htm │ │ │ │ │ ├── row.htm │ │ │ │ │ └── table.htm │ │ │ │ ├── template │ │ │ │ │ ├── blank.htm │ │ │ │ │ ├── css │ │ │ │ │ │ └── template.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── template.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ └── template.htm │ │ │ │ ├── visualblocks │ │ │ │ │ ├── css │ │ │ │ │ │ └── visualblocks.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── visualchars │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── wordcount │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ └── xhtmlxtras │ │ │ │ │ ├── abbr.htm │ │ │ │ │ ├── acronym.htm │ │ │ │ │ ├── attributes.htm │ │ │ │ │ ├── cite.htm │ │ │ │ │ ├── css │ │ │ │ │ ├── attributes.css │ │ │ │ │ └── popup.css │ │ │ │ │ ├── del.htm │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── ins.htm │ │ │ │ │ ├── js │ │ │ │ │ ├── abbr.js │ │ │ │ │ ├── acronym.js │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── cite.js │ │ │ │ │ ├── del.js │ │ │ │ │ ├── element_common.js │ │ │ │ │ └── ins.js │ │ │ │ │ └── langs │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ └── zh-tw_dlg.js │ │ │ ├── themes │ │ │ │ ├── advanced │ │ │ │ │ ├── about.htm │ │ │ │ │ ├── anchor.htm │ │ │ │ │ ├── charmap.htm │ │ │ │ │ ├── color_picker.htm │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── editor_template_src.js │ │ │ │ │ ├── image.htm │ │ │ │ │ ├── img │ │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ │ ├── flash.gif │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── iframe.gif │ │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ ├── video.gif │ │ │ │ │ │ └── windowsmedia.gif │ │ │ │ │ ├── js │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ ├── charmap.js │ │ │ │ │ │ ├── color_picker.js │ │ │ │ │ │ ├── image.js │ │ │ │ │ │ ├── link.js │ │ │ │ │ │ └── source_editor.js │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── ar_dlg.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bg_dlg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ ├── hy_dlg.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mk_dlg.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ps.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── ru_dlg.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── ta.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── uk_dlg.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ │ └── zh-tw_dlg.js │ │ │ │ │ ├── link.htm │ │ │ │ │ ├── shortcuts.htm │ │ │ │ │ ├── skins │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ │ ├── highcontrast │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ │ └── o2k7 │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ │ ├── ui.css │ │ │ │ │ │ │ ├── ui_black.css │ │ │ │ │ │ │ └── ui_silver.css │ │ │ │ │ └── source_editor.htm │ │ │ │ └── simple │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── editor_template_src.js │ │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── langs │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh-tw.js │ │ │ │ │ └── skins │ │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ └── ui.css │ │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── img │ │ │ │ │ └── button_bg.png │ │ │ │ │ └── ui.css │ │ │ ├── tiny_mce.js │ │ │ ├── tiny_mce_popup.js │ │ │ ├── tiny_mce_src.js │ │ │ └── utils │ │ │ │ ├── editable_selects.js │ │ │ │ ├── form_utils.js │ │ │ │ ├── mctabs.js │ │ │ │ └── validate.js │ │ ├── treelist.js │ │ └── treelist.min.js │ ├── lib │ │ ├── Auth │ │ │ ├── SASL.php │ │ │ └── SASL │ │ │ │ ├── Anonymous.php │ │ │ │ ├── Common.php │ │ │ │ ├── CramMD5.php │ │ │ │ ├── DigestMD5.php │ │ │ │ ├── External.php │ │ │ │ ├── Login.php │ │ │ │ ├── Plain.php │ │ │ │ └── SCRAM.php │ │ ├── Crypt │ │ │ ├── GPG.php │ │ │ ├── GPG │ │ │ │ ├── ByteUtils.php │ │ │ │ ├── DecryptStatusHandler.php │ │ │ │ ├── Engine.php │ │ │ │ ├── Exceptions.php │ │ │ │ ├── Key.php │ │ │ │ ├── KeyGenerator.php │ │ │ │ ├── KeyGeneratorErrorHandler.php │ │ │ │ ├── KeyGeneratorStatusHandler.php │ │ │ │ ├── PinEntry.php │ │ │ │ ├── ProcessControl.php │ │ │ │ ├── Signature.php │ │ │ │ ├── SubKey.php │ │ │ │ ├── UserId.php │ │ │ │ └── VerifyStatusHandler.php │ │ │ └── GPGAbstract.php │ │ ├── Mail │ │ │ ├── mime.php │ │ │ ├── mimeDecode.php │ │ │ └── mimePart.php │ │ ├── Net │ │ │ ├── IDNA2.php │ │ │ ├── IDNA2 │ │ │ │ ├── Exception.php │ │ │ │ └── Exception │ │ │ │ │ └── Nameprep.php │ │ │ ├── SMTP.php │ │ │ ├── Sieve.php │ │ │ └── Socket.php │ │ ├── PEAR.php │ │ ├── PEAR5.php │ │ ├── Roundcube │ │ │ ├── README.md │ │ │ ├── bootstrap.php │ │ │ ├── html.php │ │ │ ├── rcube.php │ │ │ ├── rcube_addressbook.php │ │ │ ├── rcube_base_replacer.php │ │ │ ├── rcube_browser.php │ │ │ ├── rcube_cache.php │ │ │ ├── rcube_cache_shared.php │ │ │ ├── rcube_charset.php │ │ │ ├── rcube_config.php │ │ │ ├── rcube_contacts.php │ │ │ ├── rcube_content_filter.php │ │ │ ├── rcube_csv2vcard.php │ │ │ ├── rcube_db.php │ │ │ ├── rcube_db_mssql.php │ │ │ ├── rcube_db_mysql.php │ │ │ ├── rcube_db_pgsql.php │ │ │ ├── rcube_db_sqlite.php │ │ │ ├── rcube_db_sqlsrv.php │ │ │ ├── rcube_enriched.php │ │ │ ├── rcube_html2text.php │ │ │ ├── rcube_image.php │ │ │ ├── rcube_imap.php │ │ │ ├── rcube_imap_cache.php │ │ │ ├── rcube_imap_generic.php │ │ │ ├── rcube_ldap.php │ │ │ ├── rcube_ldap_generic.php │ │ │ ├── rcube_ldap_result.php │ │ │ ├── rcube_message.php │ │ │ ├── rcube_message_header.php │ │ │ ├── rcube_message_part.php │ │ │ ├── rcube_mime.php │ │ │ ├── rcube_output.php │ │ │ ├── rcube_plugin.php │ │ │ ├── rcube_plugin_api.php │ │ │ ├── rcube_result_index.php │ │ │ ├── rcube_result_set.php │ │ │ ├── rcube_result_thread.php │ │ │ ├── rcube_session.php │ │ │ ├── rcube_smtp.php │ │ │ ├── rcube_spellcheck_atd.php │ │ │ ├── rcube_spellcheck_enchant.php │ │ │ ├── rcube_spellcheck_engine.php │ │ │ ├── rcube_spellcheck_googie.php │ │ │ ├── rcube_spellcheck_pspell.php │ │ │ ├── rcube_spellchecker.php │ │ │ ├── rcube_storage.php │ │ │ ├── rcube_string_replacer.php │ │ │ ├── rcube_user.php │ │ │ ├── rcube_utils.php │ │ │ ├── rcube_vcard.php │ │ │ └── rcube_washtml.php │ │ ├── des.inc │ │ ├── encoding │ │ │ ├── CP1250.map │ │ │ ├── CP1251.map │ │ │ ├── CP1252.map │ │ │ ├── CP1253.map │ │ │ ├── CP1254.map │ │ │ ├── CP1255.map │ │ │ ├── CP1256.map │ │ │ ├── CP1257.map │ │ │ ├── CP1258.map │ │ │ ├── ISO-8859-1.map │ │ │ ├── ISO-8859-10.map │ │ │ ├── ISO-8859-11.map │ │ │ ├── ISO-8859-13.map │ │ │ ├── ISO-8859-14.map │ │ │ ├── ISO-8859-15.map │ │ │ ├── ISO-8859-16.map │ │ │ ├── ISO-8859-2.map │ │ │ ├── ISO-8859-3.map │ │ │ ├── ISO-8859-4.map │ │ │ ├── ISO-8859-5.map │ │ │ ├── ISO-8859-6.map │ │ │ ├── ISO-8859-7.map │ │ │ ├── ISO-8859-8.map │ │ │ ├── ISO-8859-9.map │ │ │ ├── KOI8R.map │ │ │ └── KSC5601.map │ │ ├── tnef_decoder.php │ │ └── utf8.class.php │ ├── localization │ │ ├── ar │ │ │ └── labels.inc │ │ ├── ar_SA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ast │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── az_AZ │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── be_BE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ber │ │ │ └── labels.inc │ │ ├── bg_BG │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── bn_BD │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── br │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── bs_BA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ca_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── cs_CZ │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── cy_GB │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── da_DK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── de_CH │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── de_DE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── el_GR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── en_CA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── en_GB │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── en_US │ │ │ ├── csv2vcard.inc │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── eo │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── es_419 │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── es_AR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── es_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── et_EE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── eu_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fa_AF │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fa_IR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fi_FI │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fo_FO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fr_FR │ │ │ ├── csv2vcard.inc │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── fy_NL │ │ │ └── labels.inc │ │ ├── ga_IE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── gl_ES │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── he_IL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hi_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hr_HR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hu_HU │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── hy_AM │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ia │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── id_ID │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── index.inc │ │ ├── is_IS │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── it_IT │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ja_JP │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ka_GE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── km_KH │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── kn_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ko_KR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ku │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── lb_LU │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── lt_LT │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── lv_LV │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── mk_MK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ml_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── mr_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ms_MY │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nb_NO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ne_NP │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nl_BE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nl_NL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── nn_NO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── pl_PL │ │ │ ├── csv2vcard.inc │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ps │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── pt_BR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── pt_PT │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ro_RO │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ru_RU │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── si_LK │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sk_SK │ │ │ ├── csv2vcard.inc │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sl_SI │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sq_AL │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sr_CS │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── sv_SE │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ta_IN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── th_TH │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ti │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── tr_TR │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── uk_UA │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── ur_PK │ │ │ └── labels.inc │ │ ├── vi_VN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ ├── zh_CN │ │ │ ├── labels.inc │ │ │ └── messages.inc │ │ └── zh_TW │ │ │ ├── csv2vcard.inc │ │ │ ├── labels.inc │ │ │ └── messages.inc │ ├── resources │ │ ├── blank.gif │ │ ├── blank.tif │ │ └── blocked.gif │ └── steps │ │ ├── addressbook │ │ ├── copy.inc │ │ ├── delete.inc │ │ ├── edit.inc │ │ ├── export.inc │ │ ├── func.inc │ │ ├── groups.inc │ │ ├── import.inc │ │ ├── list.inc │ │ ├── mailto.inc │ │ ├── move.inc │ │ ├── photo.inc │ │ ├── save.inc │ │ ├── search.inc │ │ ├── show.inc │ │ ├── undo.inc │ │ └── upload_photo.inc │ │ ├── mail │ │ ├── addcontact.inc │ │ ├── attachments.inc │ │ ├── autocomplete.inc │ │ ├── check_recent.inc │ │ ├── compose.inc │ │ ├── copy.inc │ │ ├── folders.inc │ │ ├── func.inc │ │ ├── get.inc │ │ ├── getunread.inc │ │ ├── headers.inc │ │ ├── import.inc │ │ ├── list.inc │ │ ├── list_contacts.inc │ │ ├── mark.inc │ │ ├── move_del.inc │ │ ├── pagenav.inc │ │ ├── search.inc │ │ ├── search_contacts.inc │ │ ├── sendmail.inc │ │ ├── sendmdn.inc │ │ ├── show.inc │ │ └── viewsource.inc │ │ ├── settings │ │ ├── about.inc │ │ ├── delete_identity.inc │ │ ├── edit_folder.inc │ │ ├── edit_identity.inc │ │ ├── edit_prefs.inc │ │ ├── edit_response.inc │ │ ├── folders.inc │ │ ├── func.inc │ │ ├── identities.inc │ │ ├── responses.inc │ │ ├── save_folder.inc │ │ ├── save_identity.inc │ │ └── save_prefs.inc │ │ └── utils │ │ ├── error.inc │ │ ├── html2text.inc │ │ ├── killcache.inc │ │ ├── modcss.inc │ │ ├── save_pref.inc │ │ ├── spell.inc │ │ └── spell_html.inc │ ├── robots.txt │ ├── skins │ ├── classic │ │ ├── README │ │ ├── addressbook.css │ │ ├── addressbook.min.css │ │ ├── common.css │ │ ├── common.min.css │ │ ├── editor_content.css │ │ ├── editor_content.min.css │ │ ├── embed.css │ │ ├── embed.min.css │ │ ├── functions.js │ │ ├── functions.min.js │ │ ├── googiespell.css │ │ ├── googiespell.min.css │ │ ├── ie6hacks.css │ │ ├── ie6hacks.min.css │ │ ├── iehacks.css │ │ ├── iehacks.min.css │ │ ├── images │ │ │ ├── abook_toolbar.gif │ │ │ ├── abook_toolbar.png │ │ │ ├── buttons │ │ │ │ ├── add_act.png │ │ │ │ ├── add_pas.png │ │ │ │ ├── add_sel.png │ │ │ │ └── bg.gif │ │ │ ├── cleardot.png │ │ │ ├── contactgroup.png │ │ │ ├── contactpic.png │ │ │ ├── dbutton.png │ │ │ ├── dimple.png │ │ │ ├── display │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_blue.gif │ │ │ ├── favicon.ico │ │ │ ├── googiespell │ │ │ │ ├── change_lang.gif │ │ │ │ ├── indicator.gif │ │ │ │ ├── ok.gif │ │ │ │ └── spellc.gif │ │ │ ├── icons │ │ │ │ ├── attachment.png │ │ │ │ ├── blank.gif │ │ │ │ ├── collapsed.png │ │ │ │ ├── columnpicker.gif │ │ │ │ ├── delete.png │ │ │ │ ├── deleted.png │ │ │ │ ├── dot.png │ │ │ │ ├── down_small.gif │ │ │ │ ├── expanded.png │ │ │ │ ├── extwin.png │ │ │ │ ├── flagged.png │ │ │ │ ├── folders.gif │ │ │ │ ├── folders.png │ │ │ │ ├── forwarded.png │ │ │ │ ├── forwarded_replied.png │ │ │ │ ├── glass.gif │ │ │ │ ├── glass.png │ │ │ │ ├── glass_roll.png │ │ │ │ ├── groupactions.gif │ │ │ │ ├── groupactions.png │ │ │ │ ├── html.png │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── rename.png │ │ │ │ ├── replied.png │ │ │ │ ├── reset.gif │ │ │ │ ├── silhouette.png │ │ │ │ ├── sort.gif │ │ │ │ ├── text.png │ │ │ │ ├── unflagged.png │ │ │ │ ├── unread.png │ │ │ │ ├── unread_children.png │ │ │ │ └── up_small.gif │ │ │ ├── listheader.gif │ │ │ ├── mail_footer.gif │ │ │ ├── mail_footer.png │ │ │ ├── mail_toolbar.gif │ │ │ ├── mail_toolbar.png │ │ │ ├── messageactions.gif │ │ │ ├── messageactions.png │ │ │ ├── messageicons.gif │ │ │ ├── messageicons.png │ │ │ ├── pagenav.gif │ │ │ ├── quota-colors.png │ │ │ ├── quota.gif │ │ │ ├── quota.png │ │ │ ├── roundcube_logo.png │ │ │ ├── searchfield.gif │ │ │ ├── tabs-left.gif │ │ │ ├── tabs-right.gif │ │ │ ├── taskbar.gif │ │ │ ├── taskbar.png │ │ │ ├── taskicons.gif │ │ │ ├── taskicons.png │ │ │ ├── tree.gif │ │ │ └── watermark.gif │ │ ├── includes │ │ │ ├── header.html │ │ │ ├── links.html │ │ │ ├── messagetoolbar.html │ │ │ ├── settingstabs.html │ │ │ └── taskbar.html │ │ ├── mail.css │ │ ├── mail.min.css │ │ ├── meta.json │ │ ├── pngbehavior.htc │ │ ├── print.css │ │ ├── print.min.css │ │ ├── safari.css │ │ ├── safari.min.css │ │ ├── settings.css │ │ ├── settings.min.css │ │ ├── splitter.js │ │ ├── splitter.min.js │ │ ├── templates │ │ │ ├── about.html │ │ │ ├── addressbook.html │ │ │ ├── compose.html │ │ │ ├── contact.html │ │ │ ├── contactadd.html │ │ │ ├── contactedit.html │ │ │ ├── contactsearch.html │ │ │ ├── error.html │ │ │ ├── folderedit.html │ │ │ ├── folders.html │ │ │ ├── identities.html │ │ │ ├── identityedit.html │ │ │ ├── importcontacts.html │ │ │ ├── login.html │ │ │ ├── mail.html │ │ │ ├── message.html │ │ │ ├── messageerror.html │ │ │ ├── messagepart.html │ │ │ ├── messagepreview.html │ │ │ ├── messageprint.html │ │ │ ├── plugin.html │ │ │ ├── responseedit.html │ │ │ ├── responses.html │ │ │ ├── settings.html │ │ │ └── settingsedit.html │ │ ├── thumbnail.png │ │ └── watermark.html │ ├── high_security │ │ ├── CHANGE_LOG │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── addressbook.css │ │ ├── editor_content.css │ │ ├── embed.css │ │ ├── googiespell.css │ │ ├── ie7hacks.css │ │ ├── iehacks.css │ │ ├── images │ │ │ ├── actionBar.png │ │ │ ├── actionBarBlue.png │ │ │ ├── addcontact.png │ │ │ ├── ajaxloader.gif │ │ │ ├── boxfooter.png │ │ │ ├── buttons.gif │ │ │ ├── buttons.png │ │ │ ├── buttons_.png │ │ │ ├── contactpic.png │ │ │ ├── contactpic_32px.png │ │ │ ├── contactpic_48px.png │ │ │ ├── favicon.ico │ │ │ ├── filedrop.png │ │ │ ├── filetypes.png │ │ │ ├── folderBackground.png │ │ │ ├── googiespell │ │ │ │ ├── change_lang.gif │ │ │ │ ├── indicator.gif │ │ │ │ ├── ok.gif │ │ │ │ └── spellc.gif │ │ │ ├── industrial.gif │ │ │ ├── linen.jpg │ │ │ ├── linen_header.jpg │ │ │ ├── linen_login.jpg │ │ │ ├── listicons.png │ │ │ ├── loginLogo.png │ │ │ ├── loginLogoFull.png │ │ │ ├── login_shadow.png │ │ │ ├── main_bg.png │ │ │ ├── messages.png │ │ │ ├── overflowshadow.png │ │ │ ├── quota.png │ │ │ ├── roundcube_logo.png │ │ │ ├── selector.png │ │ │ ├── selectorBlack.png │ │ │ ├── selectorWhite.png │ │ │ ├── splitter.png │ │ │ ├── watermark.jpg │ │ │ └── watermark.png │ │ ├── includes │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── links.html │ │ │ ├── mailtoolbar.html │ │ │ └── settingstabs.html │ │ ├── mail.css │ │ ├── meta.json │ │ ├── print.css │ │ ├── settings.css │ │ ├── styles.css │ │ ├── svggradient.php │ │ ├── svggradients.css │ │ ├── templates │ │ │ ├── about.html │ │ │ ├── addressbook.html │ │ │ ├── compose.html │ │ │ ├── contact.html │ │ │ ├── contactedit.html │ │ │ ├── contactsearch.html │ │ │ ├── error.html │ │ │ ├── folderedit.html │ │ │ ├── folders.html │ │ │ ├── identities.html │ │ │ ├── identityedit.html │ │ │ ├── importcontacts.html │ │ │ ├── login.html │ │ │ ├── mail.html │ │ │ ├── message.html │ │ │ ├── messageerror.html │ │ │ ├── messagepart.html │ │ │ ├── messagepreview.html │ │ │ ├── messageprint.html │ │ │ ├── plugin.html │ │ │ ├── settings.html │ │ │ └── settingsedit.html │ │ ├── thumbnail.png │ │ ├── ui.js │ │ ├── watermark.html │ │ ├── xs.css │ │ └── xs.js │ └── larry │ │ ├── README │ │ ├── addressbook.css │ │ ├── addressbook.min.css │ │ ├── editor_content.css │ │ ├── editor_content.min.css │ │ ├── embed.css │ │ ├── embed.min.css │ │ ├── googiespell.css │ │ ├── googiespell.min.css │ │ ├── ie7hacks.css │ │ ├── ie7hacks.min.css │ │ ├── iehacks.css │ │ ├── iehacks.min.css │ │ ├── images │ │ ├── addcontact.png │ │ ├── ajaxloader.gif │ │ ├── ajaxloader_dark.gif │ │ ├── buttons.gif │ │ ├── buttons.png │ │ ├── contactgroup.png │ │ ├── contactpic.png │ │ ├── contactpic_32px.png │ │ ├── contactpic_48px.png │ │ ├── favicon.ico │ │ ├── filedrop.png │ │ ├── filetypes.png │ │ ├── googiespell │ │ │ ├── change_lang.gif │ │ │ ├── indicator.gif │ │ │ ├── ok.gif │ │ │ └── spellc.gif │ │ ├── linen.jpg │ │ ├── linen_header.jpg │ │ ├── linen_login.jpg │ │ ├── listicons.png │ │ ├── login_shadow.png │ │ ├── messages.png │ │ ├── messages_dark.png │ │ ├── overflowshadow.png │ │ ├── quota.png │ │ ├── roundcube_logo.png │ │ ├── selector.png │ │ ├── splitter.png │ │ └── watermark.jpg │ │ ├── includes │ │ ├── footer.html │ │ ├── header.html │ │ ├── links.html │ │ ├── mailtoolbar.html │ │ └── settingstabs.html │ │ ├── mail.css │ │ ├── mail.min.css │ │ ├── meta.json │ │ ├── print.css │ │ ├── print.min.css │ │ ├── settings.css │ │ ├── settings.min.css │ │ ├── styles.css │ │ ├── styles.min.css │ │ ├── svggradient.php │ │ ├── svggradients.css │ │ ├── svggradients.min.css │ │ ├── templates │ │ ├── about.html │ │ ├── addressbook.html │ │ ├── compose.html │ │ ├── contact.html │ │ ├── contactedit.html │ │ ├── contactsearch.html │ │ ├── error.html │ │ ├── folderedit.html │ │ ├── folders.html │ │ ├── identities.html │ │ ├── identityedit.html │ │ ├── importcontacts.html │ │ ├── login.html │ │ ├── mail.html │ │ ├── message.html │ │ ├── messageerror.html │ │ ├── messagepart.html │ │ ├── messagepreview.html │ │ ├── messageprint.html │ │ ├── plugin.html │ │ ├── responseedit.html │ │ ├── responses.html │ │ ├── settings.html │ │ └── settingsedit.html │ │ ├── thumbnail.png │ │ ├── ui.js │ │ ├── ui.min.js │ │ └── watermark.html │ └── temp │ └── .htaccess ├── stikked ├── Makefile └── files │ └── stikked.php ├── teletext ├── Makefile └── files │ ├── lighttpd-site.conf │ └── teletext.init └── webinterface ├── Makefile └── files ├── backup-stuff ├── lighttpd-site.conf ├── restore-stuff ├── root └── opt │ └── enigmabox │ └── webinterface │ ├── Makefile │ ├── VERSION │ ├── __init__.py │ ├── ansi2html │ ├── __init__.py │ ├── converter.py │ ├── style.py │ └── util.py │ ├── app │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_get_ipv6.py │ │ ├── 0003_save_cjdns_config.py │ │ ├── 0004_auto__add_peering.py │ │ ├── 0005_generate_ipv6.py │ │ ├── 0006_auto__add_puppetmaster.py │ │ ├── 0007_auto__add_field_peering_description__add_field_peering_custom.py │ │ ├── 0008_hostname_dashes.py │ │ ├── 0009_hostname_lowercase.py │ │ ├── 0010_set_rootpw.py │ │ ├── 0011_auto__add_field_address_display_name.py │ │ ├── 0012_displayname.py │ │ ├── 0013_auto__add_country.py │ │ ├── 0014_auto__del_puppetmaster__add_missioncontrol.py │ │ ├── 0015_auto__del_missioncontrol.py │ │ ├── 0016_auto__add_hypeaccess.py │ │ ├── 0017_ipv6_remove_leading_zeroes.py │ │ ├── 0018_auto__add_volume.py │ │ ├── 0019_auto__add_portforward__add_portforwardaccess.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── addressbook │ │ │ ├── address_table.html │ │ │ ├── detail.html │ │ │ ├── overview-global-edit.html │ │ │ ├── overview-global.html │ │ │ └── overview.html │ │ ├── backup │ │ │ ├── backupwizard │ │ │ │ ├── backup_to_usb.html │ │ │ │ ├── check_usb.html │ │ │ │ ├── ensure_usb_unplugged.html │ │ │ │ └── format_usb.html │ │ │ ├── overview.html │ │ │ ├── restorewizard │ │ │ │ ├── check_usb.html │ │ │ │ ├── ensure_usb_unplugged.html │ │ │ │ └── restore_from_usb.html │ │ │ ├── sslcerts.html │ │ │ └── system.html │ │ ├── base.html │ │ ├── countryselect │ │ │ └── overview.html │ │ ├── home │ │ │ ├── overview.html │ │ │ └── system_status.html │ │ ├── hypesites │ │ │ ├── configure.html │ │ │ ├── manage_access.html │ │ │ └── overview.html │ │ ├── lan_range │ │ │ └── overview.html │ │ ├── passwords │ │ │ ├── edit.html │ │ │ └── overview.html │ │ ├── peerings │ │ │ ├── detail.html │ │ │ └── overview.html │ │ ├── portforwarding │ │ │ ├── detail.html │ │ │ ├── manage_access.html │ │ │ └── overview.html │ │ ├── storage │ │ │ └── overview.html │ │ ├── subscription │ │ │ └── overview.html │ │ ├── teletext │ │ │ └── overview.html │ │ ├── updates │ │ │ └── overview.html │ │ ├── upgrade │ │ │ └── overview.html │ │ ├── webfilter │ │ │ └── overview.html │ │ └── wlan_settings │ │ │ ├── overview.html │ │ │ └── scan.html │ ├── templatetags │ │ ├── __init__.py │ │ └── apptags.py │ ├── tests.py │ └── views.py │ ├── condtag.py │ ├── django-version.txt │ ├── helpers.py │ ├── initial_data.json │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── es │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── manage.py │ ├── media │ ├── css │ │ ├── ansi2html.css │ │ ├── bootstrap.min.css │ │ ├── box.css │ │ ├── flag-icon.css │ │ ├── fonts │ │ │ ├── Glyphicons PRO (License).txt │ │ │ ├── fontawesome │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── glyphicons.filetypes.pro │ │ │ │ ├── glyphicons-filetypes-regular.eot │ │ │ │ ├── glyphicons-filetypes-regular.svg │ │ │ │ ├── glyphicons-filetypes-regular.ttf │ │ │ │ └── glyphicons-filetypes-regular.woff │ │ │ ├── glyphicons.halflings.pro │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons.pro │ │ │ │ ├── glyphicons-regular.eot │ │ │ │ ├── glyphicons-regular.svg │ │ │ │ ├── glyphicons-regular.ttf │ │ │ │ └── glyphicons-regular.woff │ │ │ ├── glyphicons.social.pro │ │ │ │ ├── glyphicons-social-regular.eot │ │ │ │ ├── glyphicons-social-regular.svg │ │ │ │ ├── glyphicons-social-regular.ttf │ │ │ │ └── glyphicons-social-regular.woff │ │ │ └── google │ │ │ │ ├── OpenSans-Bold.woff2 │ │ │ │ ├── OpenSans-BoldItalic.woff2 │ │ │ │ ├── OpenSans-Italic.woff2 │ │ │ │ ├── OpenSans-Light.woff2 │ │ │ │ ├── OpenSans-Semibold.woff2 │ │ │ │ ├── OpenSans-SemiboldItalic.woff2 │ │ │ │ └── OpenSans.woff2 │ │ ├── google-fonts.css │ │ ├── main.css │ │ ├── plugins.css │ │ ├── themes.css │ │ └── themes │ │ │ ├── amethyst.css │ │ │ ├── autumn.css │ │ │ ├── blackberry.css │ │ │ ├── coral.css │ │ │ ├── emerald.css │ │ │ ├── fancy.css │ │ │ ├── fire.css │ │ │ ├── flatie.css │ │ │ ├── forest.css │ │ │ ├── lake.css │ │ │ ├── modern.css │ │ │ ├── night.css │ │ │ ├── spring.css │ │ │ └── waterlily.css │ ├── img │ │ ├── ajax-loader.gif │ │ ├── arrows.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── flags │ │ │ ├── ch.png │ │ │ ├── ch.svg │ │ │ ├── de.png │ │ │ ├── de.svg │ │ │ ├── hu.png │ │ │ ├── hu.svg │ │ │ ├── ru.png │ │ │ ├── ru.svg │ │ │ ├── se.png │ │ │ ├── se.svg │ │ │ ├── us.png │ │ │ └── us.svg │ │ ├── icon114.png │ │ ├── icon120.png │ │ ├── icon144.png │ │ ├── icon152.png │ │ ├── icon180.png │ │ ├── icon57.png │ │ ├── icon72.png │ │ ├── icon76.png │ │ ├── jquery.chosen │ │ │ ├── chosen-sprite.png │ │ │ └── chosen-sprite@2x.png │ │ ├── jquery.colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── jquery.datatables │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc@2x.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_asc_disabled@2x.png │ │ │ ├── sort_both.png │ │ │ ├── sort_both@2x.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_desc@2x.png │ │ │ ├── sort_desc_disabled.png │ │ │ └── sort_desc_disabled@2x.png │ │ ├── jquery.select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ └── template │ │ │ ├── ie8_opacity_dark_15.png │ │ │ ├── ie8_opacity_dark_20.png │ │ │ ├── ie8_opacity_dark_30.png │ │ │ ├── ie8_opacity_dark_40.png │ │ │ ├── ie8_opacity_dark_60.png │ │ │ ├── ie8_opacity_light_10.png │ │ │ └── ie8_opacity_light_75.png │ └── js │ │ ├── app.js │ │ ├── box.js │ │ ├── helpers │ │ ├── excanvas.min.js │ │ └── gmaps.min.js │ │ ├── pages │ │ ├── compAnimations.js │ │ ├── compCalendar.js │ │ ├── compCharts.js │ │ ├── compMaps.js │ │ ├── ecomDashboard.js │ │ ├── ecomOrders.js │ │ ├── ecomProducts.js │ │ ├── formsGeneral.js │ │ ├── formsValidation.js │ │ ├── formsWizard.js │ │ ├── icons.js │ │ ├── index.js │ │ ├── index2.js │ │ ├── login.js │ │ ├── readyChat.js │ │ ├── readyComingSoon.js │ │ ├── readyFiles.js │ │ ├── readyInbox.js │ │ ├── readyInboxCompose.js │ │ ├── readyProfile.js │ │ ├── readyTasks.js │ │ ├── readyTickets.js │ │ ├── readyTimeline.js │ │ ├── tablesDatatables.js │ │ ├── tablesGeneral.js │ │ ├── uiDraggable.js │ │ ├── uiProgress.js │ │ ├── uiTypography.js │ │ ├── widgetsSocial.js │ │ └── widgetsStats.js │ │ ├── plugins.js │ │ └── vendor │ │ ├── bootstrap.min.js │ │ ├── jquery-1.11.2.min.js │ │ └── modernizr-respond.min.js │ ├── settings.py │ ├── slugify │ └── __init__.py │ ├── static │ └── admin │ │ ├── css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── forms.css │ │ ├── ie.css │ │ ├── login.css │ │ ├── rtl.css │ │ └── widgets.css │ │ ├── img │ │ ├── changelist-bg.gif │ │ ├── changelist-bg_rtl.gif │ │ ├── chooser-bg.gif │ │ ├── chooser_stacked-bg.gif │ │ ├── default-bg-reverse.gif │ │ ├── default-bg.gif │ │ ├── deleted-overlay.gif │ │ ├── gis │ │ │ ├── move_vertex_off.png │ │ │ └── move_vertex_on.png │ │ ├── icon-no.gif │ │ ├── icon-unknown.gif │ │ ├── icon-yes.gif │ │ ├── icon_addlink.gif │ │ ├── icon_alert.gif │ │ ├── icon_calendar.gif │ │ ├── icon_changelink.gif │ │ ├── icon_clock.gif │ │ ├── icon_deletelink.gif │ │ ├── icon_error.gif │ │ ├── icon_searchbox.png │ │ ├── icon_success.gif │ │ ├── inline-delete-8bit.png │ │ ├── inline-delete.png │ │ ├── inline-restore-8bit.png │ │ ├── inline-restore.png │ │ ├── inline-splitter-bg.gif │ │ ├── nav-bg-grabber.gif │ │ ├── nav-bg-reverse.gif │ │ ├── nav-bg-selected.gif │ │ ├── nav-bg.gif │ │ ├── selector-icons.gif │ │ ├── selector-search.gif │ │ ├── sorting-icons.gif │ │ ├── tool-left.gif │ │ ├── tool-left_over.gif │ │ ├── tool-right.gif │ │ ├── tool-right_over.gif │ │ ├── tooltag-add.gif │ │ ├── tooltag-add_over.gif │ │ ├── tooltag-arrowright.gif │ │ └── tooltag-arrowright_over.gif │ │ └── js │ │ ├── LICENSE-JQUERY.txt │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ ├── RelatedObjectLookups.js │ │ └── ordering.js │ │ ├── calendar.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── compress.py │ │ ├── core.js │ │ ├── getElementsBySelector.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── timeparse.js │ │ └── urlify.js │ ├── status-500.html │ ├── urls.py │ └── wsgi.py ├── set-country ├── trigger-volume-mounter ├── volumes-mounter └── webinterface.init /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | webinterface/files/root/opt/enigmabox/webinterface/django/ 3 | -------------------------------------------------------------------------------- /beanstalkd/files/beanstalkd.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | # Beanstalk 3 | 4 | START=89 5 | STOP=11 6 | 7 | start() { 8 | /usr/bin/beanstalkd & 9 | } 10 | 11 | stop() { 12 | killall beanstalkd 13 | } 14 | 15 | restart() { 16 | stop 17 | start 18 | } 19 | 20 | -------------------------------------------------------------------------------- /beanstalkd/patches/000-replace-posix_fallocate.patch: -------------------------------------------------------------------------------- 1 | --- a/linux.c 2 | +++ b/linux.c 3 | @@ -19,7 +19,7 @@ static int epfd; 4 | int 5 | rawfalloc(int fd, int len) 6 | { 7 | - return posix_fallocate(fd, 0, len); 8 | + return ftruncate(fd, len); 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /cfengine-promises/files/cfengine-promises.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | # cfengine promises apply service 3 | 4 | START=92 5 | 6 | start() { 7 | /usr/sbin/cfengine-apply 8 | (sleep 60 && /usr/sbin/asterisk -rx 'sip notify gsreboot 100') & 9 | } 10 | 11 | -------------------------------------------------------------------------------- /cfengine-promises/files/init-mysql: -------------------------------------------------------------------------------- 1 | #!/bin/ash 2 | 3 | /usr/bin/mysql_install_db --force 4 | 5 | /etc/init.d/mysqld start 6 | /etc/init.d/mysqld enable 7 | 8 | mysqladmin -u root password 'root' 9 | 10 | -------------------------------------------------------------------------------- /cfengine-promises/files/lan-range: -------------------------------------------------------------------------------- 1 | { 2 | "lan_range_first": 100, 3 | "lan_range_second": 101 4 | } 5 | -------------------------------------------------------------------------------- /cfengine-promises/files/rebuild-iptables.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | # rebuild iptables 3 | 4 | START=86 5 | 6 | start() { 7 | /usr/sbin/rebuild-iptables 8 | } 9 | 10 | -------------------------------------------------------------------------------- /cfengine-promises/files/resolv.conf: -------------------------------------------------------------------------------- 1 | domain box 2 | search box 3 | nameserver ::1 4 | nameserver 127.0.0.1 5 | nameserver 91.219.237.212 6 | nameserver 8.8.8.8 7 | nameserver 4.2.2.1 8 | nameserver 4.2.2.2 9 | nameserver 4.2.2.3 10 | nameserver 4.2.2.4 11 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_cjdns/templates/cjdnsadmin.mustache: -------------------------------------------------------------------------------- 1 | { 2 | "addr": "127.0.0.1", 3 | "port": 11234, 4 | "password": "6v60ggy58qu0x0013vh64gzsu2lch0y" 5 | } 6 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_email/templates/users.conf.mustache: -------------------------------------------------------------------------------- 1 | mail@box:{SHA1}{{mailbox_password}} 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_hypesites/templates/volumes.mustache: -------------------------------------------------------------------------------- 1 | {{#volumes}} 2 | {{identifier}} {{name}} 3 | {{/volumes}} 4 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_security/templates/webinterface.htpasswd.mustache: -------------------------------------------------------------------------------- 1 | admin:{{webinterface_password}} 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_base/templates/crontab: -------------------------------------------------------------------------------- 1 | 2 | # cjdns networking 3 | * * * * * /usr/sbin/setup-cjdns-networking &> /dev/null 4 | 5 | # subscriber stuff 6 | 0 */2 * * * /usr/sbin/subscriber-stuff sleep &> /dev/null 7 | 8 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_base/templates/inittab: -------------------------------------------------------------------------------- 1 | ::sysinit:/etc/init.d/rcS S boot 2 | ::shutdown:/etc/init.d/rcS K shutdown 3 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_network/templates/autoupdates.mustache: -------------------------------------------------------------------------------- 1 | {{autoupdates}} 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_network/templates/display_names.mustache: -------------------------------------------------------------------------------- 1 | {{#addresses}} 2 | {{hostname}}|{{display_name}} 3 | {{/addresses}} 4 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_network/templates/lan-range.mustache: -------------------------------------------------------------------------------- 1 | { 2 | "lan_range_first": {{ lan_range_first }}, 3 | "lan_range_second": {{ lan_range_second }} 4 | } 5 | -------------------------------------------------------------------------------- /cfengine-promises/files/setup-cjdns-networking.init: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | # setup cjdns networking 3 | 4 | START=94 5 | 6 | start() { 7 | /usr/sbin/setup-cjdns-networking 8 | } 9 | 10 | -------------------------------------------------------------------------------- /cfengine-promises/files/tts-de: -------------------------------------------------------------------------------- 1 | #!/bin/ash 2 | 3 | temptts=/tmp/tts 4 | 5 | /usr/bin/pico2wave -l de-DE -w $temptts.wav "$@" 6 | /usr/bin/sox $temptts.wav -r 8000 -c1 -e gsm $temptts.gsm norm -3 7 | /bin/rm $temptts.wav 8 | 9 | -------------------------------------------------------------------------------- /cfengine-promises/files/tts-en: -------------------------------------------------------------------------------- 1 | #!/bin/ash 2 | 3 | temptts=/tmp/tts 4 | 5 | /usr/bin/pico2wave -l en-US -w $temptts.wav "$@" 6 | /usr/bin/sox $temptts.wav -r 8000 -c1 -e gsm $temptts.gsm norm -3 7 | /bin/rm $temptts.wav 8 | 9 | -------------------------------------------------------------------------------- /hypesites/files/hypesites.conf: -------------------------------------------------------------------------------- 1 | 2 | $SERVER["socket"] == "[::]:80" { 3 | 4 | # parameters for directory listing 5 | dir-listing.encoding = "utf-8" 6 | dir-listing.hide-dotfiles = "enable" 7 | 8 | include_shell "cat hypesites.d/*.conf 2> /dev/null" 9 | 10 | } 11 | 12 | -------------------------------------------------------------------------------- /hypesites/files/index.html: -------------------------------------------------------------------------------- 1 |

This Hypesite is running

2 |

Welcome to the club.

3 |

Document root is /srv/www

4 |

Webserver configuration files at /etc/lighttpd/hypesites.d

5 | -------------------------------------------------------------------------------- /provision-grandstream/files/lighttpd-site.conf: -------------------------------------------------------------------------------- 1 | $SERVER["socket"] == ":8080" { 2 | server.document-root = "/opt/enigmabox/provision-grandstream" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /roundcube/files/lighttpd-site.conf: -------------------------------------------------------------------------------- 1 | 2 | $HTTP["host"] == "mail.box" { 3 | 4 | # max post request: 120M 5 | server.max-request-size = 122880 6 | 7 | server.document-root = "/opt/enigmabox/roundcube" 8 | 9 | # php 10 | cgi.assign = ( ".php" => "/usr/bin/php-cgi" ) 11 | 12 | } 13 | 14 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mssql/2011111600.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.7-beta 2 | 3 | ALTER TABLE [dbo].[session] ALTER COLUMN [sess_id] [varchar] (128) COLLATE Latin1_General_CI_AI NOT NULL 4 | GO 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mssql/2012080700.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.8 2 | 3 | ALTER TABLE [dbo].[cache] DROP COLUMN [cache_id] 4 | GO 5 | ALTER TABLE [dbo].[users] DROP COLUMN [alias] 6 | GO 7 | CREATE INDEX [IX_identities_email] ON [dbo].[identities]([email],[del]) ON [PRIMARY] 8 | GO 9 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mssql/2013042700.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mssql/2014042900.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2008060900.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.2-alpha 2 | 3 | ALTER TABLE `messages` 4 | ADD INDEX `created_index` (`created`); 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2010042300.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.4-beta 2 | 3 | ALTER TABLE `users` CHANGE `last_login` `last_login` datetime DEFAULT NULL; 4 | UPDATE `users` SET `last_login` = NULL WHERE `last_login` = '1000-01-01 00:00:00'; 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2010100600.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.4.2 2 | 3 | ALTER TABLE `users` DROP INDEX `username_index`; 4 | ALTER TABLE `users` ADD UNIQUE `username` (`username`, `mail_host`); 5 | 6 | ALTER TABLE `contacts` MODIFY `email` varchar(255) NOT NULL; 7 | 8 | TRUNCATE TABLE `messages`; 9 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2011111600.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.7-beta 2 | 3 | ALTER TABLE `session` CHANGE `sess_id` `sess_id` varchar(128) NOT NULL; 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2012080700.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.8 2 | 3 | ALTER TABLE `cache` DROP COLUMN `cache_id`; 4 | ALTER TABLE `users` DROP COLUMN `alias`; 5 | ALTER TABLE `identities` ADD INDEX `email_identities_index` (`email`, `del`); 6 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2013011000.sql: -------------------------------------------------------------------------------- 1 | -- Upgrade from 0.9-beta 2 | 3 | CREATE TABLE IF NOT EXISTS `system` ( 4 | `name` varchar(64) NOT NULL, 5 | `value` mediumtext, 6 | PRIMARY KEY(`name`) 7 | ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2013042700.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/mysql/2014042900.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `users` CHANGE `preferences` `preferences` longtext; 2 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2008060900.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.2-alpha 2 | 3 | CREATE INDEX messages_created_idx ON messages (created); 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2009090400.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.3-stable 2 | 3 | TRUNCATE messages; 4 | CREATE INDEX messages_index_idx ON messages (user_id, cache_key, idx); 5 | DROP INDEX contacts_user_id_idx; 6 | CREATE INDEX contacts_user_id_idx ON contacts (user_id, email); 7 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2010042300.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.4-beta 2 | 3 | ALTER TABLE users ALTER last_login DROP NOT NULL; 4 | ALTER TABLE users ALTER last_login SET DEFAULT NULL; 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2010100600.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.4.2 2 | 3 | DROP INDEX users_username_id_idx; 4 | ALTER TABLE users ADD CONSTRAINT users_username_key UNIQUE (username, mail_host); 5 | ALTER TABLE contacts ALTER email TYPE varchar(255); 6 | 7 | TRUNCATE messages; 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2011011200.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.5.x 2 | 3 | ALTER TABLE contacts ADD words TEXT NULL; 4 | CREATE INDEX contactgroupmembers_contact_id_idx ON contactgroupmembers (contact_id); 5 | 6 | TRUNCATE messages; 7 | TRUNCATE cache; 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2011111600.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.7-beta 2 | 3 | ALTER TABLE "session" ALTER sess_id TYPE varchar(128); 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2011121400.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.7 2 | 3 | DROP INDEX contacts_user_id_idx; 4 | CREATE INDEX contacts_user_id_idx ON contacts USING btree (user_id, del); 5 | ALTER TABLE contacts ALTER email TYPE text; 6 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2012080700.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.8 2 | 3 | ALTER TABLE cache DROP COLUMN cache_id; 4 | DROP SEQUENCE cache_ids; 5 | 6 | ALTER TABLE users DROP COLUMN alias; 7 | CREATE INDEX identities_email_idx ON identities (email, del); 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2013011000.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE "system" ( 2 | name varchar(64) NOT NULL PRIMARY KEY, 3 | value text 4 | ); 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2014042900.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2008060900.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.2-alpha 2 | 3 | CREATE INDEX ix_messages_created ON messages (created); 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2008092100.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.2-beta 2 | 3 | CREATE INDEX ix_session_changed ON session (changed); 4 | CREATE INDEX ix_cache_created ON cache (created); 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2013011000.sql: -------------------------------------------------------------------------------- 1 | -- Updates from version 0.9-beta 2 | 3 | CREATE TABLE IF NOT EXISTS system ( 4 | name varchar(64) NOT NULL PRIMARY KEY, 5 | value text NOT NULL 6 | ); 7 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2013011700.sql: -------------------------------------------------------------------------------- 1 | -- drop temp table created in 2012080700.sql 2 | DROP TABLE IF EXISTS tmp_users; 3 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2013042700.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2014042900.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/config/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/installer/images/add.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/banner_gradient.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/installer/images/banner_gradient.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/banner_schraffur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/installer/images/banner_schraffur.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/installer/images/delete.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/installer/images/error.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/roundcube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/installer/images/roundcube_logo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/logs/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/classic/images/enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/classic/images/enabled.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/classic/images/partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/classic/images/partial.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/larry/images/enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/larry/images/enabled.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/larry/images/partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/larry/images/partial.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive.min.css: -------------------------------------------------------------------------------- 1 | #messagetoolbar a.button.archive{text-indent:-5000px;background:url(archive_act.png) 0 0 no-repeat}#mailboxlist li.mailbox.archive>a{background-image:url(foldericon.png);background-position:5px 1px} -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive_act.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive_pas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive_pas.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/foldericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/foldericon.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/larry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/larry/.gitignore -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/home/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/enigma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/enigma.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/enigma_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/enigma_error.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key_add.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/keys_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/keys_toolbar.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigmabox_additions/eb.js: -------------------------------------------------------------------------------- 1 | function rcube_check_email(a, b) { 2 | return true; 3 | } 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/classic/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/classic/help.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/larry/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/larry/help.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/larry/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/larry/icons.psd -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/buttongradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/buttongradient.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/listheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/listheader.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_flat_90_cc3333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_flat_90_cc3333_40x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_000000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_000000_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_333333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_333333_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_cc3333_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_cc3333_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_dddddd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/ui-icons_dddddd_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_55_b0ccd7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_55_b0ccd7_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_65_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_65_ffffff_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_75_eaeaea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_75_eaeaea_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_75_f8f8f8_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-hard_75_f8f8f8_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-soft_75_fafafa_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-soft_75_fafafa_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-soft_90_e4e4e4_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-bg_highlight-soft_90_e4e4e4_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-dialog-close.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-icons-datepicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-icons-datepicker.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-icons_004458_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-icons_004458_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-icons_d7211e_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/larry/images/ui-icons_d7211e_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/redmond/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/add.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/del.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/down_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/down_small.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/erase.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/filter.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/up_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/up_small.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/add.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/del.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/down_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/down_small.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/erase.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/up_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/up_small.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/vacation_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/vacation_icons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_imapflags: -------------------------------------------------------------------------------- 1 | require ["imap4flags"]; 2 | # rule:[imapflags] 3 | if header :matches "Subject" "^Test$" 4 | { 5 | setflag "\\Seen"; 6 | addflag ["\\Answered","\\Deleted"]; 7 | } 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_include: -------------------------------------------------------------------------------- 1 | require ["include"]; 2 | include "script.sieve"; 3 | # rule:[two] 4 | if true 5 | { 6 | include :optional "second.sieve"; 7 | } 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_kep14: -------------------------------------------------------------------------------- 1 | # EDITOR Roundcube 2 | # EDITOR_VERSION 123 3 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_kep14.out: -------------------------------------------------------------------------------- 1 | require ["variables"]; 2 | set "EDITOR" "Roundcube"; 3 | set "EDITOR_VERSION" "123"; 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_prefix: -------------------------------------------------------------------------------- 1 | # this is a comment 2 | # and the second line 3 | 4 | require ["variables"]; 5 | set "b" "c"; 6 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_relational: -------------------------------------------------------------------------------- 1 | require ["comparator-i;ascii-numeric","relational"]; 2 | # rule:[redirect] 3 | if header :value "ge" :comparator "i;ascii-numeric" "X-Spam-score" "14" 4 | { 5 | redirect "test@test.tld"; 6 | } 7 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_subaddress: -------------------------------------------------------------------------------- 1 | require ["envelope","fileinto","subaddress"]; 2 | if envelope :user "To" "postmaster" 3 | { 4 | fileinto "postmaster"; 5 | stop; 6 | } 7 | if envelope :detail :is "To" "mta-filters" 8 | { 9 | fileinto "mta-filters"; 10 | stop; 11 | } 12 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_vacation: -------------------------------------------------------------------------------- 1 | require ["vacation"]; 2 | # rule:[test-vacation] 3 | if header :contains "Subject" "vacation" 4 | { 5 | vacation :days 1 text: 6 | # test 7 | test test /* test */ 8 | test 9 | . 10 | ; 11 | stop; 12 | } 13 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/tests/src/parser_vacation_seconds: -------------------------------------------------------------------------------- 1 | require ["vacation-seconds"]; 2 | # rule:[test-vacation] 3 | if header :contains "Subject" "vacation" 4 | { 5 | vacation :seconds 0 text: 6 | # test 7 | test test /* test */ 8 | test 9 | . 10 | ; 11 | stop; 12 | } 13 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/junk_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/junk_act.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/junk_pas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/junk_pas.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/markasjunk.css: -------------------------------------------------------------------------------- 1 | 2 | #messagetoolbar a.button.junk { 3 | text-indent: -5000px; 4 | background: url(junk_act.png) 0 0 no-repeat; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/markasjunk.min.css: -------------------------------------------------------------------------------- 1 | #messagetoolbar a.button.junk{text-indent:-5000px;background:url(junk_act.png) 0 0 no-repeat} -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/larry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/larry/.gitignore -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/favicon.ico -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/mail.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/overlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/overlay.ico -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/sound.mp3 -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/sound.wav -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/classic/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/classic/vcard.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/classic/vcard_add_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/classic/vcard_add_contact.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/larry/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/larry/vcard.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/larry/vcard_add_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/larry/vcard_add_contact.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/classic/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/classic/zip.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/classic/zipdownload.css: -------------------------------------------------------------------------------- 1 | /* Roundcube Zipdownload plugin styles for classic skin */ 2 | 3 | a.zipdownload { 4 | display: inline-block; 5 | padding: 0 0 2px 20px; 6 | background: url(zip.png) 0 1px no-repeat; 7 | font-style: italic; 8 | } 9 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/classic/zipdownload.min.css: -------------------------------------------------------------------------------- 1 | a.zipdownload{display:inline-block;padding:0 0 2px 20px;background:url(zip.png) 0 1px no-repeat;font-style:italic} -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/larry/zipdownload.css: -------------------------------------------------------------------------------- 1 | /* Roundcube Zipdownload plugin styles for skin "Larry" */ 2 | 3 | a.zipdownload { 4 | display: inline-block; 5 | margin-top: .5em; 6 | padding: 3px 5px 4px 5px; 7 | } 8 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/larry/zipdownload.min.css: -------------------------------------------------------------------------------- 1 | a.zipdownload{display:inline-block;margin-top:.5em;padding:3px 5px 4px 5px} -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/az_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('az.advhr_dlg',{size:"H\u00fcnd\u00fcrl\u00fcy\u00fc",noshade:"K\u00f6lg\u0259 yoxdur",width:"Eni",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.advhr_dlg',{size:"Altura",noshade:"Sem sombra",width:"Largura",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.advhr_dlg',{size:"Visina",noshade:"Bez sjene",width:"\u0160irina",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.advhr_dlg',{size:"Al\u00e7ada",noshade:"Sense sombra",width:"Amplada",normal:"Normal",widthunits:"Unitats"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.advhr_dlg',{size:"V\u00fd\u0161ka",noshade:"Bez st\u00ednu",width:"\u0160\u00ed\u0159ka",normal:"Norm\u00e1ln\u00ed",widthunits:"Jednotky"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.advhr_dlg',{size:"Uchder",noshade:"Dim cysgod",width:"Lled",normal:"Normal",widthunits:"Unedau"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.advhr_dlg',{size:"H\u00f8jde",noshade:"Ingen skygge",width:"Bredde",normal:"Normal",widthunits:"Enheder"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.advhr_dlg',{size:"H\u00f6he",noshade:"Kein Schatten",width:"Breite",normal:"Normal",widthunits:"Einheiten"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/el_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('el.advhr_dlg',{size:"\u038e\u03c8\u03bf\u03c2",noshade:"\u03a7\u03c9\u03c1\u03af\u03c2 \u03c3\u03ba\u03b9\u03ac",width:"\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{size:"Height",noshade:"No Shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/eo_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eo.advhr_dlg',{size:"Alteco",noshade:"Sen ombro",width:"Lar\u011deco",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.advhr_dlg',{size:"Alto",noshade:"Sin sombra",width:"Ancho",normal:"Normal",widthunits:"Unidades"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.advhr_dlg',{size:"K\u00f5rgus",noshade:"Ilma varjuta",width:"Laius",normal:"Normaalne",widthunits:"\u00dchikud"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.advhr_dlg',{size:"Altuera",noshade:"Itzalik gabe",width:"Zabalera",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.advhr_dlg',{size:"Korkeus",noshade:"Ei varjoa",width:"Leveys",normal:"Normaali",widthunits:"Yksik\u00f6t"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.advhr_dlg',{size:"Hauteur",noshade:"Pas d\'ombre",width:"Largeur",normal:"Normal",widthunits:"Unit\u00e9s"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.advhr_dlg',{size:"Alto",noshade:"Sen sombra",width:"Ancho",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/he_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.advhr_dlg',{size:"\u05d2\u05d5\u05d1\u05d4",noshade:"\u05dc\u05dc\u05d0 \u05e6\u05dc",width:"\u05e8\u05d5\u05d7\u05d1",normal:"\u05e8\u05d2\u05d9\u05dc",widthunits:"\u05d9\u05d7\u05d9\u05d3\u05d5\u05ea"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.advhr_dlg',{size:"Visina",noshade:"Bez sjene",width:"\u0160irina",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.advhr_dlg',{size:"Magass\u00e1g",noshade:"\u00c1rny\u00e9k n\u00e9lk\u00fcl",width:"Sz\u00e9less\u00e9g",normal:"Norm\u00e1l",widthunits:"M\u00e9rt\u00e9kegys\u00e9gek"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.advhr_dlg',{size:"Tinggi",noshade:"Tanpa bayangan",width:"Lebar",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.advhr_dlg',{size:"H\u00e6\u00f0",noshade:"Enginn skuggi",width:"Breidd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.advhr_dlg',{size:"Altezza",noshade:"Senza ombreggiatura",width:"Larghezza",normal:"Normale",widthunits:"Unit\u00e0"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.advhr_dlg',{size:"\u9ad8\u3055",noshade:"\u5f71\u306a\u3057",width:"\u5e45",normal:"\u901a\u5e38",widthunits:"\u5358\u4f4d"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ka_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ka.advhr_dlg',{size:"\u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4",noshade:"\u10e9\u10e0\u10d3\u10d8\u10da\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4",width:"\u10e1\u10d8\u10d2\u10d0\u10dc\u10d4",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ko_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ko.advhr_dlg',{size:"\ub192\uc774",noshade:"\uadf8\ub9bc\uc790 \uc5c6\uc74c",width:"\ud3ed",normal:"\ubcf4\ud1b5",widthunits:"\ub2e8\uc704"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.advhr_dlg',{size:"Auk\u0161tis",noshade:"Be \u0161e\u0161\u0117lio",width:"Ilgis",normal:"Normalus",widthunits:"Vienetai"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.advhr_dlg',{size:"Augstums",noshade:"Bez \u0113nas",width:"Platums",normal:"Norm\u0101ls",widthunits:"Vien\u012bbas"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.advhr_dlg',{size:"Tinggi",noshade:"Tanpa bayang",width:"Lebar",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.advhr_dlg',{size:"St\u00f8rrelse",noshade:"Ingen skygge",width:"Bredde",normal:"Normal",widthunits:"Enheter"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.advhr_dlg',{size:"Hoogte",noshade:"Geen schaduw",width:"Breedte",normal:"Normaal",widthunits:"Eenheden"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.advhr_dlg',{size:"Storleik",noshade:"Inga skugge",width:"Breidd",normal:"Normal",widthunits:"Einingar"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.advhr_dlg',{size:"Wysoko\u015b\u0107",noshade:"Bez cienia",width:"Szeroko\u015b\u0107",normal:"Normalny",widthunits:"Jednostki"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.advhr_dlg',{size:"Altura",noshade:"Sem sombra",width:"Largura",normal:"Normal",widthunits:"Unids"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.advhr_dlg',{size:"\u00cen\u0103l\u021bime",noshade:"F\u0103r\u0103 umbre",width:"L\u0103\u021bime",normal:"Normal",widthunits:"Unit\u0103\u021bi"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.advhr_dlg',{size:"V\u00fd\u0161ka",noshade:"Bez tie\u0148a",width:"\u0160\u00edrka",normal:"Norm\u00e1lne",widthunits:"Jednotky"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.advhr_dlg',{size:"Vi\u0161ina",noshade:"Brez sen\u010denja",width:"\u0160irina",normal:"Obi\u010dajno",widthunits:"Enote"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.advhr_dlg',{size:"Gjat\u00ebsia",noshade:"Pa hije",width:"Gjer\u00ebsia",normal:"Normal",widthunits:"Nj\u00ebsi"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.advhr_dlg',{size:"Visina",noshade:"Bez senke",width:"\u0160irina",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.advhr_dlg',{size:"H\u00f6jd",noshade:"Ingen skugga",width:"Bredd",normal:"Normal",widthunits:"Enheter"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.advhr_dlg',{size:"\u0e2a\u0e39\u0e07",noshade:"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e07\u0e32",width:"\u0e01\u0e27\u0e49\u0e32\u0e07",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.advhr_dlg',{size:"Y\u00fckseklik",noshade:"G\u00f6lge yok",width:"Geni\u015flik",normal:"Normal",widthunits:"Birimler"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.advhr_dlg',{size:"Chi\u1ec1u r\u1ed9ng",noshade:"Kh\u00f4ng c\u00f3 b\u00f3ng",width:"Chi\u1ec1u d\u00e0i",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd\u5ea6",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advhr/langs/zh-tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-tw.advhr_dlg',{size:"\u9ad8",noshade:"\u7121\u9670\u5f71\u6548\u679c",width:"\u5bec",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.paste_dlg',{"word_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prijelome","text_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.paste_dlg',{"word_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten.","text_linebreaks":"Bevar linieskift","text_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/eo_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eo.paste_dlg',{"word_title":"Uzu CTRL V por alglui tekston en la fenestron.","text_linebreaks":"Konservi linisaltojn","text_title":"Uzu CTRL V por alglui tekston en la fenestron."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.paste_dlg',{"word_title":"Use CTRL+V en su teclado para pegar el texto en la ventana.","text_linebreaks":"Mantener saltos de l\u00ednea","text_title":"Use CTRL+V en su teclado para pegar el texto en la ventana."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.paste_dlg',{"word_title":"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.","text_linebreaks":"J\u00e4ta reavahetused","text_title":"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.paste_dlg',{"word_title":"Erabili CTRL+V testua lehioan itsasteko.","text_linebreaks":"Mantendu lerro-jauziak","text_title":"Erabili CTRL+V testua lehioan itsasteko."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.paste_dlg',{"word_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan.","text_linebreaks":"S\u00e4ilyt\u00e4 rivinvaihdot","text_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.paste_dlg',{"word_title":"Use CTRL+V no teclado pra pega-lo texto na vent\u00e1.","text_linebreaks":"Manter salto de li\u00f1as","text_title":"Use CTRL+V no teclado pra pega-lo texto na vent\u00e1."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.paste_dlg',{"word_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prijelome","text_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.paste_dlg',{"word_title":"Gunakan CTRL+V pada keyboard untuk paste.","text_linebreaks":"Keep linebreaks","text_title":"Gunakan CTRL+V pada keyboard untuk paste."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.paste_dlg',{"word_title":"Guna CTRL+V pada papan kekunci anda untuk teks ke dalam tetingkap.","text_linebreaks":"Biarkan garisan pemisah","text_title":"Guna CTRL+V pada papan kekunci anda untuk Tempel teks ke dalam tetingkap."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.paste_dlg',{"word_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vinduet.","text_linebreaks":"Behold tekstbryting","text_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vinduet."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.paste_dlg',{"word_title":"Gebruik Ctrl+V om tekst in het venster te plakken.","text_linebreaks":"Regelafbreking bewaren","text_title":"Gebruik Ctrl+V om tekst in het venster te plakken."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.paste_dlg',{"word_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vindauget.","text_linebreaks":"Behald tekstbryting","text_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vindauget."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.paste_dlg',{"word_title":"Pou\u017eite CTRL+V pre vlo\u017eenie textu do okna.","text_linebreaks":"Zachova\u0165 zalamovanie riadkov","text_title":"Pou\u017eite CTRL+V pre vlo\u017eenie textu do okna."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.paste_dlg',{"word_title":"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.","text_linebreaks":"Obdr\u017ei prelome vrstic","text_title":"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.paste_dlg',{"word_title":"P\u00ebrdor CTRL+V p\u00ebr t\u00eb ngjitur tekstin.","text_linebreaks":"Ruaj linjat e reja","text_title":"P\u00ebrdor CTRL+V p\u00ebr t\u00eb ngjitur tekstin."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.paste_dlg',{"word_title":"Koristite CTRL V na tastaturi da zalepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prelome linija","text_title":"Koristite CTRL+V na tastaturi da zalepite tekst u prozor."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/paste/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/flash.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/iframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/pagebreak.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/quicktime.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/realmedia.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/trans.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/video.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/windowsmedia.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/lib/Net/IDNA2/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Classic", 3 | "author": "The Roundcube Dev Team", 4 | "license": "Creative Commons Attribution-ShareAlike", 5 | "license-url": "http://creativecommons.org/licenses/by-sa/3.0/" 6 | } -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/thumbnail.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/VERSION: -------------------------------------------------------------------------------- 1 | Alpha (version 3.5.1) 2 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBar.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBarBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBarBlue.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/addcontact.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/ajaxloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/ajaxloader.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/boxfooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/boxfooter.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/buttons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/buttons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/buttons_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/buttons_.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic_32px.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic_48px.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/favicon.ico -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/filedrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/filedrop.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/filetypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/filetypes.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/folderBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/folderBackground.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/change_lang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/change_lang.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/indicator.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/ok.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/spellc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/spellc.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/industrial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/industrial.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen_header.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen_login.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/listicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/listicons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/loginLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/loginLogo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/loginLogoFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/loginLogoFull.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/login_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/login_shadow.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/main_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/main_bg.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/messages.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/overflowshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/overflowshadow.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/quota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/quota.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/roundcube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/roundcube_logo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selector.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selectorBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selectorBlack.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selectorWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selectorWhite.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/splitter.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/watermark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/watermark.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/watermark.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Alpha", 3 | "author": "The Roundcube Dev Team", 4 | "license": "Creative Commons Attribution-ShareAlike", 5 | "license-url": "http://creativecommons.org/licenses/by-sa/3.0/" 6 | } 7 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/thumbnail.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/addressbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/addressbook.css -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/addcontact.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/ajaxloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/ajaxloader.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/ajaxloader_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/ajaxloader_dark.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/buttons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/buttons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactgroup.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic_32px.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic_48px.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/favicon.ico -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/filedrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/filedrop.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/filetypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/filetypes.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/change_lang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/change_lang.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/indicator.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/ok.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/spellc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/spellc.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen_header.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen_login.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/listicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/listicons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/login_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/login_shadow.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/messages.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/messages_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/messages_dark.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/overflowshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/overflowshadow.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/quota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/quota.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/roundcube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/roundcube_logo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/selector.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/splitter.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/watermark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/watermark.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Larry", 3 | "author": "FLINT / Büro für Gestaltung, Switzerland", 4 | "license": "Creative Commons Attribution-ShareAlike", 5 | "license-url": "http://creativecommons.org/licenses/by-sa/3.0/" 6 | } -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/thumbnail.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/temp/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | clear 3 | ./manage.py syncdb 4 | ./manage.py migrate app --noinput 5 | ./manage.py runserver 6 | 7 | trans: 8 | ./manage.py makemessages -a 9 | 10 | compiletrans: 11 | ./manage.py compilemessages 12 | 13 | .PHONY: all 14 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/VERSION: -------------------------------------------------------------------------------- 1 | Enigmasuite Version 2.15.0 2 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/__init__.py -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/ansi2html/__init__.py: -------------------------------------------------------------------------------- 1 | from ansi2html.converter import Ansi2HTMLConverter 2 | __all__ = ['Ansi2HTMLConverter'] 3 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/ansi2html/util.py: -------------------------------------------------------------------------------- 1 | def read_to_unicode(obj): 2 | return [line.decode('utf-8') for line in obj.readlines()] 3 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/app/__init__.py -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/admin.py: -------------------------------------------------------------------------------- 1 | from app.models import * 2 | from django.contrib import admin 3 | 4 | admin.site.register(Address) 5 | admin.site.register(Country) 6 | admin.site.register(Option) 7 | admin.site.register(Peering) 8 | admin.site.register(HypeAccess) 9 | admin.site.register(Volume) 10 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/app/migrations/__init__.py -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/templates/404.html: -------------------------------------------------------------------------------- 1 |

Seite nicht gefunden

2 |

Zurück zur Startseite 3 | 4 |

Page not found

5 |

Back to home 6 | 7 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/templates/500.html: -------------------------------------------------------------------------------- 1 |

Fehler

2 |

Es ist ein Fehler aufgetreten. Zurück zur Startseite 3 | 4 |

Error

5 |

An error occurred. Back to home 6 | 7 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/app/templatetags/__init__.py -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/django-version.txt: -------------------------------------------------------------------------------- 1 | pip install django==1.4 2 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/helpers.py: -------------------------------------------------------------------------------- 1 | 2 | def normalize_ipv6(ipv6): 3 | return ':'.join([str(x).lstrip('0') for x in ipv6.split(':')]) 4 | 5 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.pro/glyphicons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.pro/glyphicons-regular.eot -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.pro/glyphicons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.pro/glyphicons-regular.ttf -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.pro/glyphicons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.pro/glyphicons-regular.woff -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.social.pro/glyphicons-social-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.social.pro/glyphicons-social-regular.eot -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.social.pro/glyphicons-social-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.social.pro/glyphicons-social-regular.ttf -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.social.pro/glyphicons-social-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/glyphicons.social.pro/glyphicons-social-regular.woff -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Bold.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Italic.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Light.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Semibold.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-SemiboldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-SemiboldItalic.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/ajax-loader.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/arrows.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/favicon.ico -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/favicon.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/ch.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/de.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/hu.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/ru.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/se.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/flags/us.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon114.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon120.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon144.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon152.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon180.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon57.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon72.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/icon76.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/alpha.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/hue.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/saturation.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc_disabled.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc_disabled@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_both.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_both@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_both@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc_disabled.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc_disabled@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2-spinner.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2x2.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_15.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_20.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_30.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_40.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_60.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_light_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_light_10.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_light_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_light_75.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg_rtl.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser_stacked-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser_stacked-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg-reverse.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/deleted-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/deleted-overlay.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/gis/move_vertex_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/gis/move_vertex_off.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/gis/move_vertex_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/gis/move_vertex_on.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-no.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-unknown.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-yes.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_addlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_addlink.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_alert.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_calendar.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_changelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_changelink.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_clock.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_deletelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_deletelink.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_error.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_searchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_searchbox.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_success.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete-8bit.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore-8bit.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-splitter-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-splitter-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-grabber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-grabber.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-reverse.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-selected.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-icons.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-search.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/sorting-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/sorting-icons.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-left.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-left_over.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right_over.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add_over.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/63db2cda6271b7807ff2b20e117e1164818e5670/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright_over.gif -------------------------------------------------------------------------------- /webinterface/files/set-country: -------------------------------------------------------------------------------- 1 | #!/bin/ash 2 | 3 | # reset status lights 4 | echo 0 > /tmp/netstat-cjdns 5 | echo 0 > /tmp/netstat-cjdns_internet 6 | 7 | # run cfengine and setup cjdns networking 8 | /usr/sbin/cfengine-apply 9 | /usr/sbin/setup-cjdns-networking 10 | 11 | --------------------------------------------------------------------------------