├── webinterface └── files │ ├── root │ └── opt │ │ └── enigmabox │ │ └── webinterface │ │ ├── __init__.py │ │ ├── app │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ └── __init__.py │ │ ├── templates │ │ │ ├── 404.html │ │ │ └── 500.html │ │ └── admin.py │ │ ├── VERSION │ │ ├── django-version.txt │ │ ├── ansi2html │ │ ├── __init__.py │ │ └── util.py │ │ ├── helpers.py │ │ ├── media │ │ ├── img │ │ │ ├── arrows.png │ │ │ ├── icon57.png │ │ │ ├── icon72.png │ │ │ ├── icon76.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── flags │ │ │ │ ├── ch.png │ │ │ │ ├── de.png │ │ │ │ ├── hu.png │ │ │ │ ├── ru.png │ │ │ │ ├── se.png │ │ │ │ └── us.png │ │ │ ├── icon114.png │ │ │ ├── icon120.png │ │ │ ├── icon144.png │ │ │ ├── icon152.png │ │ │ ├── icon180.png │ │ │ ├── ajax-loader.gif │ │ │ ├── jquery.colorpicker │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ ├── saturation.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ └── alpha-horizontal.png │ │ │ ├── jquery.select2 │ │ │ │ ├── select2.png │ │ │ │ ├── select2x2.png │ │ │ │ └── select2-spinner.gif │ │ │ ├── jquery.datatables │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc@2x.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── sort_both@2x.png │ │ │ │ ├── sort_desc@2x.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_desc_disabled.png │ │ │ │ ├── sort_asc_disabled@2x.png │ │ │ │ └── sort_desc_disabled@2x.png │ │ │ ├── jquery.chosen │ │ │ │ ├── chosen-sprite.png │ │ │ │ └── chosen-sprite@2x.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 │ │ └── css │ │ │ └── fonts │ │ │ ├── google │ │ │ ├── OpenSans.woff2 │ │ │ ├── OpenSans-Bold.woff2 │ │ │ ├── OpenSans-Light.woff2 │ │ │ ├── OpenSans-Italic.woff2 │ │ │ ├── OpenSans-BoldItalic.woff2 │ │ │ ├── OpenSans-Semibold.woff2 │ │ │ └── OpenSans-SemiboldItalic.woff2 │ │ │ ├── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── glyphicons.pro │ │ │ ├── glyphicons-regular.eot │ │ │ ├── glyphicons-regular.ttf │ │ │ └── glyphicons-regular.woff │ │ │ ├── glyphicons.social.pro │ │ │ ├── glyphicons-social-regular.eot │ │ │ ├── glyphicons-social-regular.ttf │ │ │ └── glyphicons-social-regular.woff │ │ │ ├── glyphicons.filetypes.pro │ │ │ ├── glyphicons-filetypes-regular.eot │ │ │ ├── glyphicons-filetypes-regular.ttf │ │ │ └── glyphicons-filetypes-regular.woff │ │ │ └── glyphicons.halflings.pro │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── static │ │ └── admin │ │ │ └── img │ │ │ ├── icon-no.gif │ │ │ ├── nav-bg.gif │ │ │ ├── icon-yes.gif │ │ │ ├── tool-left.gif │ │ │ ├── chooser-bg.gif │ │ │ ├── default-bg.gif │ │ │ ├── icon-unknown.gif │ │ │ ├── icon_addlink.gif │ │ │ ├── icon_alert.gif │ │ │ ├── icon_clock.gif │ │ │ ├── icon_error.gif │ │ │ ├── icon_success.gif │ │ │ ├── tool-right.gif │ │ │ ├── tooltag-add.gif │ │ │ ├── changelist-bg.gif │ │ │ ├── icon_calendar.gif │ │ │ ├── icon_searchbox.png │ │ │ ├── inline-delete.png │ │ │ ├── inline-restore.png │ │ │ ├── nav-bg-grabber.gif │ │ │ ├── nav-bg-reverse.gif │ │ │ ├── selector-icons.gif │ │ │ ├── sorting-icons.gif │ │ │ ├── tool-left_over.gif │ │ │ ├── changelist-bg_rtl.gif │ │ │ ├── deleted-overlay.gif │ │ │ ├── icon_changelink.gif │ │ │ ├── icon_deletelink.gif │ │ │ ├── nav-bg-selected.gif │ │ │ ├── selector-search.gif │ │ │ ├── tool-right_over.gif │ │ │ ├── tooltag-add_over.gif │ │ │ ├── chooser_stacked-bg.gif │ │ │ ├── default-bg-reverse.gif │ │ │ ├── gis │ │ │ ├── move_vertex_off.png │ │ │ └── move_vertex_on.png │ │ │ ├── inline-delete-8bit.png │ │ │ ├── inline-restore-8bit.png │ │ │ ├── inline-splitter-bg.gif │ │ │ ├── tooltag-arrowright.gif │ │ │ └── tooltag-arrowright_over.gif │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.mo │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ └── django.mo │ │ ├── Makefile │ │ └── manage.py │ └── set-country ├── roundcube └── files │ ├── root │ └── opt │ │ └── enigmabox │ │ └── roundcube │ │ ├── SQL │ │ ├── mssql │ │ │ ├── 2013042700.sql │ │ │ ├── 2014042900.sql │ │ │ ├── 2011111600.sql │ │ │ └── 2012080700.sql │ │ ├── mysql │ │ │ ├── 2013042700.sql │ │ │ ├── 2014042900.sql │ │ │ ├── 2008060900.sql │ │ │ ├── 2011111600.sql │ │ │ ├── 2010042300.sql │ │ │ ├── 2012080700.sql │ │ │ ├── 2013011000.sql │ │ │ └── 2010100600.sql │ │ ├── sqlite │ │ │ ├── 2013042700.sql │ │ │ ├── 2014042900.sql │ │ │ ├── 2013011700.sql │ │ │ ├── 2008060900.sql │ │ │ ├── 2008092100.sql │ │ │ └── 2013011000.sql │ │ └── postgres │ │ │ ├── 2014042900.sql │ │ │ ├── 2011111600.sql │ │ │ ├── 2013011000.sql │ │ │ ├── 2008060900.sql │ │ │ ├── 2010042300.sql │ │ │ ├── 2011121400.sql │ │ │ ├── 2011011200.sql │ │ │ ├── 2012080700.sql │ │ │ ├── 2009090400.sql │ │ │ └── 2010100600.sql │ │ ├── plugins │ │ ├── archive │ │ │ └── skins │ │ │ │ ├── larry │ │ │ │ └── .gitignore │ │ │ │ └── classic │ │ │ │ ├── foldericon.png │ │ │ │ ├── archive_act.png │ │ │ │ ├── archive_pas.png │ │ │ │ ├── archive.min.css │ │ │ │ └── archive.css │ │ ├── markasjunk │ │ │ └── skins │ │ │ │ ├── larry │ │ │ │ └── .gitignore │ │ │ │ └── classic │ │ │ │ ├── markasjunk.min.css │ │ │ │ ├── markasjunk.css │ │ │ │ ├── junk_act.png │ │ │ │ └── junk_pas.png │ │ ├── enigma │ │ │ ├── home │ │ │ │ └── .htaccess │ │ │ └── skins │ │ │ │ └── classic │ │ │ │ ├── key.png │ │ │ │ ├── enigma.png │ │ │ │ ├── key_add.png │ │ │ │ ├── enigma_error.png │ │ │ │ └── keys_toolbar.png │ │ ├── managesieve │ │ │ ├── tests │ │ │ │ └── src │ │ │ │ │ ├── parser_kep14 │ │ │ │ │ ├── parser_kep14.out │ │ │ │ │ ├── parser_prefix │ │ │ │ │ ├── parser_include │ │ │ │ │ ├── parser_imapflags │ │ │ │ │ ├── parser_relational │ │ │ │ │ ├── parser_vacation │ │ │ │ │ ├── parser_vacation_seconds │ │ │ │ │ └── parser_subaddress │ │ │ └── skins │ │ │ │ ├── larry │ │ │ │ └── images │ │ │ │ │ ├── add.png │ │ │ │ │ ├── del.png │ │ │ │ │ ├── erase.png │ │ │ │ │ ├── up_small.gif │ │ │ │ │ ├── down_small.gif │ │ │ │ │ └── vacation_icons.png │ │ │ │ └── classic │ │ │ │ └── images │ │ │ │ ├── add.png │ │ │ │ ├── del.png │ │ │ │ ├── erase.png │ │ │ │ ├── filter.png │ │ │ │ ├── up_small.gif │ │ │ │ └── down_small.gif │ │ ├── enigmabox_additions │ │ │ └── eb.js │ │ ├── zipdownload │ │ │ └── skins │ │ │ │ ├── larry │ │ │ │ ├── zipdownload.min.css │ │ │ │ └── zipdownload.css │ │ │ │ └── classic │ │ │ │ ├── zipdownload.min.css │ │ │ │ ├── zip.png │ │ │ │ └── zipdownload.css │ │ ├── help │ │ │ └── skins │ │ │ │ ├── larry │ │ │ │ ├── help.png │ │ │ │ └── icons.psd │ │ │ │ └── classic │ │ │ │ └── help.gif │ │ ├── newmail_notifier │ │ │ ├── mail.png │ │ │ ├── sound.mp3 │ │ │ ├── sound.wav │ │ │ ├── favicon.ico │ │ │ └── overlay.ico │ │ ├── acl │ │ │ └── skins │ │ │ │ ├── classic │ │ │ │ └── images │ │ │ │ │ ├── enabled.png │ │ │ │ │ └── partial.png │ │ │ │ └── larry │ │ │ │ └── images │ │ │ │ ├── enabled.png │ │ │ │ └── partial.png │ │ ├── vcard_attachments │ │ │ └── skins │ │ │ │ ├── classic │ │ │ │ ├── vcard.png │ │ │ │ └── vcard_add_contact.png │ │ │ │ └── larry │ │ │ │ ├── vcard.png │ │ │ │ └── vcard_add_contact.png │ │ └── jqueryui │ │ │ └── themes │ │ │ ├── classic │ │ │ └── images │ │ │ │ ├── listheader.png │ │ │ │ ├── buttongradient.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 │ │ │ │ ├── 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 │ │ │ ├── larry │ │ │ └── images │ │ │ │ ├── ui-dialog-close.png │ │ │ │ ├── ui-icons-datepicker.png │ │ │ │ ├── ui-icons_004458_256x240.png │ │ │ │ ├── ui-icons_d7211e_256x240.png │ │ │ │ ├── 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 │ │ │ └── redmond │ │ │ └── images │ │ │ ├── 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 │ │ │ ├── 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_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ └── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ ├── robots.txt │ │ ├── config │ │ └── .htaccess │ │ ├── logs │ │ └── .htaccess │ │ ├── skins │ │ ├── high_security │ │ │ ├── VERSION │ │ │ ├── thumbnail.png │ │ │ ├── images │ │ │ │ ├── linen.jpg │ │ │ │ ├── quota.png │ │ │ │ ├── buttons.gif │ │ │ │ ├── buttons.png │ │ │ │ ├── buttons_.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── filedrop.png │ │ │ │ ├── main_bg.png │ │ │ │ ├── messages.png │ │ │ │ ├── selector.png │ │ │ │ ├── splitter.png │ │ │ │ ├── actionBar.png │ │ │ │ ├── addcontact.png │ │ │ │ ├── ajaxloader.gif │ │ │ │ ├── boxfooter.png │ │ │ │ ├── contactpic.png │ │ │ │ ├── filetypes.png │ │ │ │ ├── industrial.gif │ │ │ │ ├── listicons.png │ │ │ │ ├── loginLogo.png │ │ │ │ ├── watermark.jpg │ │ │ │ ├── watermark.png │ │ │ │ ├── actionBarBlue.png │ │ │ │ ├── linen_header.jpg │ │ │ │ ├── linen_login.jpg │ │ │ │ ├── loginLogoFull.png │ │ │ │ ├── login_shadow.png │ │ │ │ ├── selectorBlack.png │ │ │ │ ├── selectorWhite.png │ │ │ │ ├── contactpic_32px.png │ │ │ │ ├── contactpic_48px.png │ │ │ │ ├── googiespell │ │ │ │ │ ├── ok.gif │ │ │ │ │ ├── spellc.gif │ │ │ │ │ ├── change_lang.gif │ │ │ │ │ └── indicator.gif │ │ │ │ ├── overflowshadow.png │ │ │ │ ├── roundcube_logo.png │ │ │ │ └── folderBackground.png │ │ │ └── meta.json │ │ ├── larry │ │ │ ├── thumbnail.png │ │ │ ├── addressbook.css │ │ │ ├── images │ │ │ │ ├── linen.jpg │ │ │ │ ├── quota.png │ │ │ │ ├── buttons.gif │ │ │ │ ├── buttons.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── filedrop.png │ │ │ │ ├── messages.png │ │ │ │ ├── selector.png │ │ │ │ ├── splitter.png │ │ │ │ ├── addcontact.png │ │ │ │ ├── ajaxloader.gif │ │ │ │ ├── contactpic.png │ │ │ │ ├── filetypes.png │ │ │ │ ├── linen_login.jpg │ │ │ │ ├── listicons.png │ │ │ │ ├── watermark.jpg │ │ │ │ ├── contactgroup.png │ │ │ │ ├── linen_header.jpg │ │ │ │ ├── login_shadow.png │ │ │ │ ├── messages_dark.png │ │ │ │ ├── ajaxloader_dark.gif │ │ │ │ ├── contactpic_32px.png │ │ │ │ ├── contactpic_48px.png │ │ │ │ ├── googiespell │ │ │ │ │ ├── ok.gif │ │ │ │ │ ├── spellc.gif │ │ │ │ │ ├── indicator.gif │ │ │ │ │ └── change_lang.gif │ │ │ │ ├── overflowshadow.png │ │ │ │ └── roundcube_logo.png │ │ │ └── meta.json │ │ └── classic │ │ │ ├── images │ │ │ ├── tree.gif │ │ │ ├── dimple.png │ │ │ ├── quota.gif │ │ │ ├── quota.png │ │ │ ├── cleardot.png │ │ │ ├── dbutton.png │ │ │ ├── favicon.ico │ │ │ ├── icons │ │ │ │ ├── dot.png │ │ │ │ ├── blank.gif │ │ │ │ ├── glass.gif │ │ │ │ ├── glass.png │ │ │ │ ├── html.png │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── reset.gif │ │ │ │ ├── sort.gif │ │ │ │ ├── text.png │ │ │ │ ├── delete.png │ │ │ │ ├── deleted.png │ │ │ │ ├── expanded.png │ │ │ │ ├── extwin.png │ │ │ │ ├── flagged.png │ │ │ │ ├── folders.gif │ │ │ │ ├── folders.png │ │ │ │ ├── rename.png │ │ │ │ ├── replied.png │ │ │ │ ├── unread.png │ │ │ │ ├── up_small.gif │ │ │ │ ├── attachment.png │ │ │ │ ├── collapsed.png │ │ │ │ ├── down_small.gif │ │ │ │ ├── forwarded.png │ │ │ │ ├── glass_roll.png │ │ │ │ ├── silhouette.png │ │ │ │ ├── unflagged.png │ │ │ │ ├── columnpicker.gif │ │ │ │ ├── groupactions.gif │ │ │ │ ├── groupactions.png │ │ │ │ ├── unread_children.png │ │ │ │ └── forwarded_replied.png │ │ │ ├── pagenav.gif │ │ │ ├── tabs-left.gif │ │ │ ├── taskbar.gif │ │ │ ├── taskbar.png │ │ │ ├── taskicons.gif │ │ │ ├── taskicons.png │ │ │ ├── watermark.gif │ │ │ ├── buttons │ │ │ │ ├── bg.gif │ │ │ │ ├── add_act.png │ │ │ │ ├── add_pas.png │ │ │ │ └── add_sel.png │ │ │ ├── contactpic.png │ │ │ ├── listheader.gif │ │ │ ├── mail_footer.gif │ │ │ ├── mail_footer.png │ │ │ ├── searchfield.gif │ │ │ ├── tabs-right.gif │ │ │ ├── abook_toolbar.gif │ │ │ ├── abook_toolbar.png │ │ │ ├── contactgroup.png │ │ │ ├── display │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_blue.gif │ │ │ ├── googiespell │ │ │ │ ├── ok.gif │ │ │ │ ├── spellc.gif │ │ │ │ ├── indicator.gif │ │ │ │ └── change_lang.gif │ │ │ ├── mail_toolbar.gif │ │ │ ├── mail_toolbar.png │ │ │ ├── messageactions.gif │ │ │ ├── messageactions.png │ │ │ ├── messageicons.gif │ │ │ ├── messageicons.png │ │ │ ├── quota-colors.png │ │ │ └── roundcube_logo.png │ │ │ ├── thumbnail.png │ │ │ ├── includes │ │ │ └── header.html │ │ │ └── meta.json │ │ ├── temp │ │ └── .htaccess │ │ ├── program │ │ ├── lib │ │ │ ├── Net │ │ │ │ └── IDNA2 │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── Exception │ │ │ │ │ └── Nameprep.php │ │ │ └── Roundcube │ │ │ │ └── rcube_html2text.php │ │ ├── js │ │ │ └── tiny_mce │ │ │ │ ├── plugins │ │ │ │ ├── example │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ └── img │ │ │ │ │ │ └── example.gif │ │ │ │ ├── spellchecker │ │ │ │ │ ├── css │ │ │ │ │ │ └── content.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── wline.gif │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── advhr │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── fr_dlg.js │ │ │ │ │ │ ├── is_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── sv_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── lv_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── tr_dlg.js │ │ │ │ │ │ ├── ja_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ │ │ ├── az_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── ko_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── vi_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── el_dlg.js │ │ │ │ │ │ ├── he_dlg.js │ │ │ │ │ │ ├── ka_dlg.js │ │ │ │ │ │ ├── fa_dlg.js │ │ │ │ │ │ └── ar_dlg.js │ │ │ │ │ └── css │ │ │ │ │ │ └── advhr.css │ │ │ │ ├── media │ │ │ │ │ └── moxieplayer.swf │ │ │ │ ├── advimage │ │ │ │ │ └── img │ │ │ │ │ │ └── sample.gif │ │ │ │ ├── emotions │ │ │ │ │ └── img │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ ├── smiley-yell.gif │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ └── smiley-foot-in-mouth.gif │ │ │ │ ├── paste │ │ │ │ │ └── langs │ │ │ │ │ │ ├── id_dlg.js │ │ │ │ │ │ ├── eu_dlg.js │ │ │ │ │ │ ├── br_dlg.js │ │ │ │ │ │ ├── pt_dlg.js │ │ │ │ │ │ ├── eo_dlg.js │ │ │ │ │ │ ├── nl_dlg.js │ │ │ │ │ │ ├── sq_dlg.js │ │ │ │ │ │ ├── gl_dlg.js │ │ │ │ │ │ ├── sk_dlg.js │ │ │ │ │ │ ├── bn_dlg.js │ │ │ │ │ │ ├── bs_dlg.js │ │ │ │ │ │ ├── da_dlg.js │ │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ │ ├── et_dlg.js │ │ │ │ │ │ ├── hi_dlg.js │ │ │ │ │ │ ├── hr_dlg.js │ │ │ │ │ │ ├── ps_dlg.js │ │ │ │ │ │ ├── si_dlg.js │ │ │ │ │ │ ├── sr_dlg.js │ │ │ │ │ │ ├── ta_dlg.js │ │ │ │ │ │ ├── th_dlg.js │ │ │ │ │ │ ├── es_dlg.js │ │ │ │ │ │ ├── sl_dlg.js │ │ │ │ │ │ ├── nb_dlg.js │ │ │ │ │ │ ├── nn_dlg.js │ │ │ │ │ │ ├── fi_dlg.js │ │ │ │ │ │ ├── ms_dlg.js │ │ │ │ │ │ ├── cs_dlg.js │ │ │ │ │ │ ├── it_dlg.js │ │ │ │ │ │ ├── ca_dlg.js │ │ │ │ │ │ ├── cy_dlg.js │ │ │ │ │ │ ├── de_dlg.js │ │ │ │ │ │ ├── pl_dlg.js │ │ │ │ │ │ ├── ro_dlg.js │ │ │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ │ │ ├── hu_dlg.js │ │ │ │ │ │ ├── lt_dlg.js │ │ │ │ │ │ └── fr_dlg.js │ │ │ │ ├── inlinepopups │ │ │ │ │ └── skins │ │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ └── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── vertical.gif │ │ │ │ │ │ └── horizontal.gif │ │ │ │ ├── searchreplace │ │ │ │ │ └── css │ │ │ │ │ │ └── searchreplace.css │ │ │ │ ├── table │ │ │ │ │ └── css │ │ │ │ │ │ └── table.css │ │ │ │ ├── xhtmlxtras │ │ │ │ │ └── css │ │ │ │ │ │ └── attributes.css │ │ │ │ └── autosave │ │ │ │ │ └── langs │ │ │ │ │ └── en.js │ │ │ │ └── themes │ │ │ │ ├── advanced │ │ │ │ ├── img │ │ │ │ │ ├── flash.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ ├── video.gif │ │ │ │ │ ├── iframe.gif │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ ├── colorpicker.jpg │ │ │ │ │ └── windowsmedia.gif │ │ │ │ └── skins │ │ │ │ │ ├── default │ │ │ │ │ └── img │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── tabs.gif │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ └── menu_check.gif │ │ │ │ │ └── o2k7 │ │ │ │ │ └── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ └── simple │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── skins │ │ │ │ └── o2k7 │ │ │ │ │ └── img │ │ │ │ │ └── button_bg.png │ │ │ │ └── langs │ │ │ │ └── nn.js │ │ └── resources │ │ │ ├── blank.gif │ │ │ ├── blank.tif │ │ │ └── blocked.gif │ │ └── installer │ │ └── images │ │ ├── add.png │ │ ├── error.png │ │ ├── delete.png │ │ ├── banner_gradient.gif │ │ ├── roundcube_logo.png │ │ └── banner_schraffur.gif │ └── lighttpd-site.conf ├── .gitignore ├── cfengine-promises └── files │ ├── root │ ├── system_network │ │ └── templates │ │ │ ├── autoupdates.mustache │ │ │ ├── display_names.mustache │ │ │ └── lan-range.mustache │ ├── app_email │ │ └── templates │ │ │ └── users.conf.mustache │ ├── app_security │ │ └── templates │ │ │ └── webinterface.htpasswd.mustache │ ├── app_hypesites │ │ └── templates │ │ │ └── volumes.mustache │ ├── system_base │ │ └── templates │ │ │ ├── inittab │ │ │ └── crontab │ └── app_cjdns │ │ └── templates │ │ └── cjdnsadmin.mustache │ ├── lan-range │ ├── rebuild-iptables.init │ ├── setup-cjdns-networking.init │ ├── init-mysql │ ├── tts-de │ ├── tts-en │ ├── resolv.conf │ └── cfengine-promises.init ├── provision-grandstream └── files │ └── lighttpd-site.conf ├── hypesites └── files │ ├── index.html │ └── hypesites.conf └── beanstalkd ├── patches └── 000-replace-posix_fallocate.patch └── files └── beanstalkd.init /webinterface/files/root/opt/enigmabox/webinterface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/2013042700.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2013042700.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/sqlite/2014042900.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | webinterface/files/root/opt/enigmabox/webinterface/django/ 3 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/SQL/postgres/2014042900.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/larry/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/larry/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/VERSION: -------------------------------------------------------------------------------- 1 | Enigmasuite Version 2.15.0 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_network/templates/autoupdates.mustache: -------------------------------------------------------------------------------- 1 | {{autoupdates}} 2 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/config/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/logs/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/VERSION: -------------------------------------------------------------------------------- 1 | Alpha (version 3.5.1) 2 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/temp/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/django-version.txt: -------------------------------------------------------------------------------- 1 | pip install django==1.4 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_email/templates/users.conf.mustache: -------------------------------------------------------------------------------- 1 | mail@box:{SHA1}{{mailbox_password}} 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/lan-range: -------------------------------------------------------------------------------- 1 | { 2 | "lan_range_first": 100, 3 | "lan_range_second": 101 4 | } 5 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/home/.htaccess: -------------------------------------------------------------------------------- 1 | Order allow,deny 2 | Deny from all -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_security/templates/webinterface.htpasswd.mustache: -------------------------------------------------------------------------------- 1 | admin:{{webinterface_password}} 2 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/app_hypesites/templates/volumes.mustache: -------------------------------------------------------------------------------- 1 | {{#volumes}} 2 | {{identifier}} {{name}} 3 | {{/volumes}} 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/plugins/managesieve/tests/src/parser_kep14: -------------------------------------------------------------------------------- 1 | # EDITOR Roundcube 2 | # EDITOR_VERSION 123 3 | -------------------------------------------------------------------------------- /cfengine-promises/files/root/system_network/templates/display_names.mustache: -------------------------------------------------------------------------------- 1 | {{#addresses}} 2 | {{hostname}}|{{display_name}} 3 | {{/addresses}} 4 | -------------------------------------------------------------------------------- /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/program/lib/Net/IDNA2/Exception.php: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/larry/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/larry/icons.psd -------------------------------------------------------------------------------- /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/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/newmail_notifier/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/mail.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/sound.wav -------------------------------------------------------------------------------- /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/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/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/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/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/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/skins/classic/images/cleardot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/cleardot.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/dbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/dbutton.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/favicon.ico -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/dot.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/pagenav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/pagenav.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/tabs-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/tabs-left.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskbar.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskbar.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskicons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskicons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/taskicons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/watermark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/watermark.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/thumbnail.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/ajaxloader.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/contactpic.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/filetypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/filetypes.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/linen_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/listicons.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/watermark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/watermark.jpg -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-no.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg.gif -------------------------------------------------------------------------------- /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/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/installer/images/banner_gradient.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/installer/images/banner_gradient.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/installer/images/roundcube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/installer/images/roundcube_logo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/classic/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/help/skins/classic/help.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/favicon.ico -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/overlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/newmail_notifier/overlay.ico -------------------------------------------------------------------------------- /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/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/lib/Net/IDNA2/Exception/Nameprep.php: -------------------------------------------------------------------------------- 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/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon-unknown.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_addlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_alert.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_clock.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_error.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_success.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/key_add.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/classic/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/zipdownload/skins/classic/zip.png -------------------------------------------------------------------------------- /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/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/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/lib/Roundcube/rcube_html2text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/program/lib/Roundcube/rcube_html2text.php -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/buttons/add_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/buttons/add_act.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/buttons/add_pas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/buttons/add_pas.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/buttons/add_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/buttons/add_sel.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/display/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/display/loading.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/attachment.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/collapsed.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/down_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/down_small.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/forwarded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/forwarded.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/glass_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/glass_roll.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/silhouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/silhouette.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/unflagged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/unflagged.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBar.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/boxfooter.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/filetypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/filetypes.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/industrial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/industrial.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/listicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/loginLogo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/watermark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/watermark.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/spellc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/spellc.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_calendar.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_searchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_searchbox.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-grabber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-reverse.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-icons.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/sorting-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/sorting-icons.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-left_over.gif -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/classic/images/enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/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/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/acl/skins/larry/images/partial.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/foldericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/foldericon.png -------------------------------------------------------------------------------- /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/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/skins/classic/images/googiespell/spellc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/googiespell/spellc.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/columnpicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/columnpicker.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/groupactions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/groupactions.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/groupactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/groupactions.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBarBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/actionBarBlue.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/linen_login.jpg -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/loginLogoFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/login_shadow.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selectorBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/selectorWhite.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/indicator.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/alpha.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/hue.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2x2.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/changelist-bg_rtl.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/deleted-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/deleted-overlay.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_changelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_changelink.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_deletelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/icon_deletelink.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/nav-bg-selected.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/selector-search.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tool-right_over.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-add_over.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/archive/skins/classic/archive_pas.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/enigma_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/enigma_error.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/keys_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/enigma/skins/classic/keys_toolbar.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/del.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/junk_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/markasjunk/skins/classic/junk_pas.png -------------------------------------------------------------------------------- /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/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/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/skins/classic/images/display/loading_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/display/loading_blue.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/googiespell/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/googiespell/indicator.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/unread_children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/unread_children.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/contactpic_48px.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/ok.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/overflowshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/overflowshadow.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/roundcube_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/roundcube_logo.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/change_lang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/larry/images/googiespell/change_lang.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/chooser_stacked-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/default-bg-reverse.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/gis/move_vertex_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/gis/move_vertex_on.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-delete-8bit.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-restore-8bit.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-splitter-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/inline-splitter-bg.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/del.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/erase.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/classic/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/classic/vcard.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/larry/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/vcard_attachments/skins/larry/vcard.png -------------------------------------------------------------------------------- /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/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/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/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/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/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/googiespell/change_lang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/googiespell/change_lang.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/forwarded_replied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/classic/images/icons/forwarded_replied.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/folderBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/folderBackground.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/spellc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/skins/high_security/images/googiespell/spellc.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Bold.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Light.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.colorpicker/saturation.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_asc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_both.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_dark_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/template/ie8_opacity_light_75.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/filter.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/up_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/up_small.gif -------------------------------------------------------------------------------- /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/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/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/themes/advanced/img/iframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /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/media/css/fonts/google/OpenSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/css/fonts/google/OpenSans-Italic.woff2 -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_both@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.datatables/sort_desc@2x.png -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/media/img/jquery.select2/select2-spinner.gif -------------------------------------------------------------------------------- /webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/webinterface/files/root/opt/enigmabox/webinterface/static/admin/img/tooltag-arrowright_over.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/listheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/jqueryui/themes/classic/images/listheader.png -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/classic/images/up_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/down_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/roundcube/files/root/opt/enigmabox/roundcube/plugins/managesieve/skins/larry/images/down_small.gif -------------------------------------------------------------------------------- /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/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/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enigmagroup/enigmabox-openwrt/HEAD/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/HEAD/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/HEAD/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/HEAD/roundcube/files/root/opt/enigmabox/roundcube/program/js/tiny_mce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /roundcube/files/root/opt/enigmabox/roundcube/skins/classic/includes/header.html: -------------------------------------------------------------------------------- 1 |