{"id":112957,"date":"2023-04-25T13:42:12","date_gmt":"2023-04-25T11:42:12","guid":{"rendered":"https:\/\/staging.nextcloud.com\/?page_id=112957"},"modified":"2023-10-23T18:22:51","modified_gmt":"2023-10-23T16:22:51","slug":"features-test","status":"publish","type":"page","link":"https:\/\/staging.nextcloud.com\/da\/features-test\/","title":{"rendered":"Features"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_section el_class=&#8221;titlebar at_home noPaddingBottom&#8221; css=&#8221;.vc_custom_1670419950476{background-image: url(https:\/\/nextcloud.com\/wp-content\/uploads\/2022\/12\/nc-people-microsoft-integrations-titlebar.jpg?id=82729) !important;}&#8221;][vc_row content_placement=&#8221;middle&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_empty_space][vc_column_text el_class=&#8221;page-title centerMobile&#8221;]<\/p>\n<h1>Nextcloud features<\/h1>\n<p>[\/vc_column_text][vc_column_text el_class=&#8221;page-subtitle centerMobile&#8221; css=&#8221;.vc_custom_1689689601179{margin-top: 2rem !important;margin-bottom: 2rem !important;}&#8221;]Discover all features of Nextcloud that put you in control.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][\/vc_column][\/vc_row][\/vc_section][vc_section el_class=&#8221;nc_default_section&#8221; css=&#8221;.vc_custom_1682414288021{margin-top: 0px !important;margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_row gap=&#8221;30&#8243; content_placement=&#8221;middle&#8221;][vc_column][vc_column_text]<\/p>\n<h4 style=\"text-align: center;\">Filter through all features:<\/h4>\n<p>[\/vc_column_text][vc_column_text el_class=&#8221;features-filters-holder&#8221;]<\/p>\n<p style=\"text-align: center;\"><div class=\"features-filters-holder-inner\">\n\t<div class=\"search-holder\">\n\t\t<input type=\"text\" placeholder=\"Quick search..\" id=\"features_filter\">\n\t<\/div>\n<\/div>\n<div class=\"list_tags\" id=\"list_tags\">\n<\/div>\n<script>\n\tjQuery(document).ready(function ($) {\n\t\t$.expr[\":\"].contains = $.expr.createPseudo(function(arg) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;\n\t\t\t};\n\t\t});\n\n\t\tfunction unique(list) {\n\t\t\tvar result = [];\n\t\t\t$.each(list, function(i, e) {\n\t\t\t\tif ($.inArray(e, result) == -1) result.push(e);\n\t\t\t});\n\t\t\treturn result;\n\t\t}\n\n\t\tfunction filterFeatures() {\n\t\t\tvar searched_term = $('#features_filter').val();\n\t\t\t$('.nc_feature').each(function(){\n\t\t\t\tvar contains_search_term = false;\n\n\t\t\t\tif(searched_term != '') {\n\t\t\t\t\tif ($(this).children(':contains(\"'+searched_term+'\")').length > 0) {\n\t\t\t\t\t\t$(this).show();\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$(this).hide();\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t$(this).show();\n\t\t\t\t}\n\n\t\t\t});\n\t\t}\n\n\t\tfunction dynamicSort(property) {\n\t\t\tvar sortOrder = 1;\n\n\t\t\tif(property[0] === \"-\") {\n\t\t\t\tsortOrder = -1;\n\t\t\t\tproperty = property.substr(1);\n\t\t\t}\n\n\t\t\treturn function (a,b) {\n\t\t\t\tif(sortOrder == -1){\n\t\t\t\t\treturn b[property].localeCompare(a[property]);\n\t\t\t\t}else{\n\t\t\t\t\treturn a[property].localeCompare(b[property]);\n\t\t\t\t}        \n\t\t\t}\n\t\t}\n\t\t\n\n\t\tfunction filterTags(array_tags){\n\t\t\t$('.nc_feature').each(function(){\n\t\t\t\t\tvar contains_search_term = false;\n\t\t\t\t\tvar this_section = $(this);\n\t\t\t\t\tvar show_this_section = true;\n\n\t\t\t\t\tif(array_tags) {\n\t\t\t\t\t\t\/\/console.log(\"if test\");\n\t\t\t\t\t\t$.each( array_tags, function( key, value ) {\n\n\t\t\t\t\t\t\tvar feat_tags = this_section.find('.feature_tags');\n\t\t\t\t\t\t\tif (feat_tags.children(':contains(\"'+value+'\")').length > 0) {\n\t\t\t\t\t\t\t\t\/\/console.log(\"it contains the value!\")\n\t\t\t\t\t\t\t\t\/\/this_section.show();\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\/\/console.log(\"it does not contain the value!\")\n\t\t\t\t\t\t\t\t\/\/this_section.hide();\n\t\t\t\t\t\t\t\tshow_this_section = false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\n\n\t\t\t\t\t\tif(show_this_section) {\n\t\t\t\t\t\t\tthis_section.show();\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthis_section.hide();\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\t\/\/console.log(\"else: show section\");\n\t\t\t\t\t\tthis_section.show();\n\t\t\t\t\t}\n\n\t\t\t\t});\n\t\t}\n\n\t\tvar tags = '';\n\t\tvar tags_array;\n\t\tvar tags_array_total = [];\n\t\t$('.nc_feature').each(function(){\n\t\t\tif( $(this).find('.feature_tags').text()!='' ) {\n\t\t\t\tvar tag = $(this).find('.feature_tags').text().trim();\n\t\t\t\t\/\/console.log(\"tag:\"+tag);\n\n\t\t\t\tif (tag.indexOf(',') > -1) {\n\t\t\t\t\ttags_array = tag.split(\",\");\n\t\t\t\t\t\/\/add it to the main array\n\t\t\t\t\tfor (var i = 0; i < tags_array.length; ++i) {\n\t\t\t\t\t\t\/\/\n\t\t\t\t\t\tif(tags_array[i] != ''){\n\t\t\t\t\t\t\tvar tag_trimmed = tags_array[i].replace(\/^\\s+\/, \"\");\n\t\t\t\t\t\t\ttags_array_total.push(tag_trimmed);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif(tag != ''){\n\t\t\t\t\t\tvar tag_trimmed = tag.replace(\/^\\s+\/, \"\");\n\t\t\t\t\t\ttags_array_total.push(tag_trimmed);\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t});\n\n\t\tif(tags_array_total) {\n\t\t\t\/\/console.log(tags_array_total);\n\t\t\ttags_array_total = unique(tags_array_total); \/\/remove duplicates\n\t\t\ttags_array_total = tags_array_total.sort(); \/\/sort alphabetically\n\n\t\t\tvar i;\n\t\t\tfor (i = 0; i < tags_array_total.length; ++i) {\n\t\t\t\tif(tags_array_total[i]!=''){\n\t\t\t\t\t$('#list_tags').append('<a href=\"#\" class=\"link_tag\" title=\"Filter '+tags_array_total[i]+' tag\" data-tag=\"'+tags_array_total[i]+'\">'+tags_array_total[i]+'<\/a>');\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\t\n\t\t}\n\t\t\n\n\t\tvar searched_tags_text = '';\n\t\tvar searched_tags_URL = '';\n\t\tvar array_tags = [];\n\t\tvar url= document.location.href;\n\t\tconsole.log(\"Original URL: \"+url); \n\n\t\tconst queryString = window.location.search;\n\t\t\/\/console.log(\"queryString: \"+queryString);\n\n\n\t\t\/\/filter already if URL contains filter\n\t\tif(queryString != '') {\n\t\t\tconst urlParams = new URLSearchParams(queryString);\n\t\t\t\/\/console.log(\"urlParams: \"+urlParams);\n\n\t\t\tif(urlParams && urlParams.get('filter')) {\n\t\t\t\t\/\/filter found\n\t\t\t\t\/\/console.log('filter found!!');\n\n\t\t\t\tconst filters = urlParams.get('filter').replace(\/-\/g, ' ');\n\t\t\t\tvar filters_arr = filters.split(\",\");\n\t\t\t\t\/\/console.log(filters_arr);\n\t\t\t\tarray_tags = filters_arr;\n\n\t\t\t\t$.each( filters_arr, function( key, value ) {\n\t\t\t\t\t\/\/value = value.toTitleCase();\n\t\t\t\t\t$('.list_tags a').each(function(){\n\t\t\t\t\t\tif( $(this).text() == value ) {\n\t\t\t\t\t\t\t$(this).addClass('active');\t\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t\t\n\t\t\t\t\/\/filter tags\n\t\t\t\tfilterTags(filters_arr);\n\n\t\t\t\t\/\/populate the search field\n\t\t\t\t$('#features_filter').val(filters);\n\t\t\t}\n\n\t\t\t\n\t\t}\n\n\n\n\t\tvar adjustURLwithFilters = function(searched_tags_URL){\n\t\t\tconsole.log(\"searched_tags_URL: \"+searched_tags_URL);\n\n\t\t\t\/\/if(queryString != '' ) {\n\t\t\t\t\/\/if URL contains others parameters\n\n\t\t\t\tif(searched_tags_URL != '') {\n\t\t\t\t\tif(queryString.indexOf('filter')) {\n\t\t\t\t\t\t\/\/if the other parameters contain \"filter\"\n\t\t\t\t\t\twindow.history.replaceState(null, null, \"?filter=\"+searched_tags_URL);\n\t\t\t\t\t} else {\n\t\t\t\t\t\twindow.history.replaceState(null, null, \"&filter=\"+searched_tags_URL);\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t} else {\n\t\t\t\t\t\/\/remove also the empty filter\n\t\t\t\t\twindow.history.pushState(null, null, url.split(\"?\")[0]);\n\t\t\t\t}\n\n\t\t\t\/*\n\t\t\t} else {\n\t\t\t\tif(searched_tags_URL != '') {\n\t\t\t\t\twindow.history.replaceState(null, null, \"?filter=\"+searched_tags_URL);\n\t\t\t\t} else {\n\t\t\t\t\t\/\/remove also the empty filter\n\t\t\t\t\twindow.history.pushState(null, null, url.split(\"?\")[0]);\n\t\t\t\t}\n\t\t\t}\n\t\t\t\t*\/\n\n\t\t\t\n\t\t\t\n\t\t}\n\n\t\t$('.list_tags a').on('click', function(e){\n\t\t\te.preventDefault();\t\n\n\t\t\tif($(this).hasClass( \"active\" )){\n\t\t\t\t\/\/remove this tag\n\t\t\t\t\/\/console.log(\"searched_tags_text: \"+searched_tags_text);\n\n\t\t\t\t\/\/$(this).siblings().removeClass('active');\n\t\t\t\t$(this).removeClass('active');\t\n\n\t\t\t\t\/\/filterFeatures();\n\t\t\t\t\/\/console.log(\"deactivate this button and re-do search\");\n\t\t\t\tvar this_tag = $(this).html();\n\n\t\t\t\t\/\/remove this tag from the array_tags\n\t\t\t\tarray_tags = $.grep(array_tags, function(value) {\n\t\t\t\t\treturn value != this_tag;\n\t\t\t\t});\n\n\t\t\t\tsearched_tags_text = array_tags.join(\", \");\n\t\t\t\tsearched_tags_URL = array_tags.join(\",\").replace(\/\\s+\/g, '-');\n\n\t\t\t\t$('#features_filter').val(searched_tags_text);\n\t\t\t\t\n\t\t\t\t\/\/console.log(JSON.stringify(array_tags));\n\t\t\t\tfilterTags(array_tags);\n\n\t\t\t\t\/\/add filter to URL\n\t\t\t\tadjustURLwithFilters(searched_tags_URL);\n\n\t\t\t}else {\n\t\t\t\t\/\/add this tag\n\t\t\t\tarray_tags.push($(this).html());\n\t\t\t\tsearched_tags_text = array_tags.join(\", \");\n\t\t\t\tsearched_tags_URL = array_tags.join(\",\").replace(\/\\s+\/g, '-');\n\n\t\t\t\t$(this).addClass('active');\n\t\t\t\t$('#features_filter').val(searched_tags_text);\n\n\t\t\t\t\/\/console.log(JSON.stringify(array_tags));\n\t\t\t\tfilterTags(array_tags);\n\n\t\t\t\t\/\/add filter to URL\n\t\t\t\tadjustURLwithFilters(searched_tags_URL);\n\t\t\t}\n\n\t\t})\n\n\t\t$('#features_filter').keyup(filterFeatures);\n\t});\n<\/script>\n<\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][\/vc_section][vc_section full_width=&#8221;stretch_row_content&#8221; el_class=&#8221;nc_default_section all_features flex&#8221; css=&#8221;.vc_custom_1689690318294{margin-top: 0px !important;margin-bottom: 0px !important;}&#8221; el_id=&#8221;all_features&#8221;][vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221;][vc_column]<section class=\"nc_feature\" id=\"collaboration\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t<a class=\"popup-video\" href=\"https:\/\/player.vimeo.com\/video\/556890862?h=9afcd2fcad&amp;badge=0&amp;autopause=0&amp;dnt=1&amp;player_id=0&amp;app_id=58479\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"play-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"\" version=\"1.1\" viewBox=\"0 0 24 24\">\n\t\t\t\t<path class=\"st0\" d=\"M9.5,16.5l7-4.5-7-4.5v9ZM12,22c-1.383,0-2.683-.263-3.9-.788s-2.275-1.238-3.175-2.138-1.613-1.958-2.138-3.175-.788-2.517-.788-3.9.263-2.683.788-3.9,1.238-2.275,2.138-3.175,1.958-1.613,3.175-2.138,2.517-.788,3.9-.788,2.683.263,3.9.788,2.275,1.238,3.175,2.138,1.613,1.958,2.138,3.175.788,2.517.788,3.9-.263,2.683-.788,3.9-1.238,2.275-2.138,3.175-1.958,1.613-3.175,2.138-2.517.788-3.9.788ZM12,20c2.233,0,4.125-.775,5.675-2.325s2.325-3.442,2.325-5.675-.775-4.125-2.325-5.675-3.442-2.325-5.675-2.325-4.125.775-5.675,2.325-2.325,3.442-2.325,5.675.775,4.125,2.325,5.675,3.442,2.325,5.675,2.325Z\"><\/path>\n\t\t\t\t<\/svg>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-sidebar-1-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Nextcloud Sharing features\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-sidebar-1-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-sidebar-1-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-sidebar-1-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-sidebar-1-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-sidebar-1.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCollaboration<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Collaboration features<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Work, share, collaborate, enjoy<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tShare images, documents or music with colleagues on your server, send password protected public links to friends and get notifications on your phone when a user on another Nextcloud server shares files directly with you. Use File Drop to let customers upload files to you in a easy and secure way!<br \/>\nYou can trust that when you share, Nextcloud makes sure you stay in control over your data. You can easily see a list of shares, remove or change permissions and restore older versions of files.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Real-time push notifications on comments, mentions and new shares<\/li>\n<li>Edit documents with others using real-time document editors like Collabora Online or ONLYOFFICE.<\/li>\n<li>Smoothly transition between commenting on files to chat or video calls<\/li>\n<li>Transfer ownership of files and folders to other users<\/li>\n<li>Lock files so others know you are working with them<\/li>\n<li>Add a description to public links so you can keep them apart<\/li>\n<li>Tag and comment on files, and see tags and comments by others<\/li>\n<li>Search by file name, tags, comments or file content (with the full-text search app)<\/li>\n<li>See what is happening with your data in the Activity feed, get notified by mail or RSS feed<\/li>\n<li>Previous versions of files you modified are retained and can be brought back<\/li>\n<li>Share with individual users, groups or create custom groups with the <a class=\"hyperlink\" href=\"https:\/\/apps.nextcloud.com\/apps\/circles\">Circles app.<\/a><\/li>\n<li>Share photo galleries<\/li>\n<li>Share public links read-only, <a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/blog\/secure-view-prevent-your-shared-files-from-getting-downloaded\">secure view (no download\/print\/copy-paste)<\/a> or with editing capabilities<\/li>\n<li>Attach notes to a share, either to a Nextcloud user or to a public link<\/li>\n<li>Choose to automatically accept all incoming shares, or choose to accept them on a case by case basis<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"brute-force\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Nextcloud brute force protection\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-brute-force-settings_admin_security.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Brute force protection<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tBrute Force Protection logs invalid login attempts and slows down multiple attempts from a single IP address (or IPv6 range). This feature is enabled by default and protects against an attacker who tries to guess a password from one or more users.<br \/>\nPassword reset tokens are invalidated when critical information like user email has been changed to protect against phishing attacks.<br \/>\nNextcloud will ask system administrators for password confirmation on security critical actions.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"2fa\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png-1024x576.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png-1024x576.png 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png-300x169.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png-768x432.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png-1536x864.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/2FA-admin-temporary-code-generator.png-2048x1152.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Two-factor authentication<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud includes a variety of second factors like TOTP, U2F and SMS gateways. 2-factor authentication can be enforced and user sessions and devices can be managed.<br \/>\nNextcloud is also among the first in the industry to provide support for the WebAuthn standard, enabling password-less authentication and support for Windows Hello, various FIDO2 keys and other standards-compliant authentication devices.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"data-retention\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Nextcloud data retention\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-data-retention.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Data retention<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tDefine rules for data retention, allowing regular cleanup of files or ensurances that data stays put for a set amount of time.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"permissions\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2-1024x576.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2-1024x576.png 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2-300x169.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2-768x432.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2-1536x864.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/sharing_dialog_full-2-2048x1152.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSharing, Security<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Sharing permissions<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tSecurely sharing and collaborating on documents requires strong access control mechanisms. Nextcloud features a variety of sharing mechanisms and associated control solutions like ACLs and sharing permissions.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Fully enable or disable sharing<\/li>\n<li>Disable public link sharing<\/li>\n<li>Disable uploading on public links<\/li>\n<li>Enforce passwords and expiration dates<\/li>\n<li>Block resharing<\/li>\n<li>Block sharing with groups<\/li>\n<li>Block sharing outside own group<\/li>\n<li>Set default sharing permissions<\/li>\n<li>Control sharing between Nextcloud servers (federation)<\/li>\n<li>Read, Write, Create, Delete and Share permissions<\/li>\n<li>\u2018inherit\u2019 (default), \u2018allow\u2019 or \u2018deny\u2019<\/li>\n<li>Each property of each file can be configured for any number of users or groups<\/li>\n<li>Control can be delegated to group administrators<\/li>\n<li>Passwords for public link shares<\/li>\n<li>Expiration date in internal or public link shares<\/li>\n<li><a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/file-drop\/\">File-drop hides existing files, providing just an upload target<\/a><\/li>\n<li><a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/de\/blog\/secure-view-prevent-your-shared-files-from-getting-downloaded\/\">Hide Download <small>(Secure View)<\/small><\/a><\/li>\n<li>Ultimate protection for email shares with Video Verification<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"suspicious-login\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Machine learning based suspicious login detection\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/hub4-suspicious-login-detection.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity, AI<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Machine learning based suspicious login detection<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud includes a machine learning technology which trains a neural network on successful logins on the instance and uses it to classify login attempts. Should it detect a login classified as suspicious by the trained model, it will notify the user and store an entry in the log for the system administrator.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"onlyoffice\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"video-block vimeo_container\">\n\t\t\t\t\t\t\t<iframe src=\"https:\/\/player.vimeo.com\/video\/555695491?badge=0&amp;autopause=0&amp;dnt=1&amp;player_id=0&amp;app_id=58479\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen=\"\" title=\"\" frameborder=\"0\"><\/iframe>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tIntegrations<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>ONLYOFFICE integration<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Self-host secure office document collaboration with ONLYOFFICE<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tONLYOFFICE integration in Nextcloud empowers your users to collaborate on office documents with team members in real time.<br \/>\nCompatibility with Microsoft Office formats means perfect documents, every time.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"secure-view\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t<a class=\"popup-video\" href=\"https:\/\/player.vimeo.com\/video\/556062380?h=5b2569bb70&amp;badge=0&amp;autopause=0&amp;dnt=1&amp;player_id=0&amp;app_id=58479\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"play-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"\" version=\"1.1\" viewBox=\"0 0 24 24\">\n\t\t\t\t<path class=\"st0\" d=\"M9.5,16.5l7-4.5-7-4.5v9ZM12,22c-1.383,0-2.683-.263-3.9-.788s-2.275-1.238-3.175-2.138-1.613-1.958-2.138-3.175-.788-2.517-.788-3.9.263-2.683.788-3.9,1.238-2.275,2.138-3.175,1.958-1.613,3.175-2.138,2.517-.788,3.9-.788,2.683.263,3.9.788,2.275,1.238,3.175,2.138,1.613,1.958,2.138,3.175.788,2.517.788,3.9-.263,2.683-.788,3.9-1.238,2.275-2.138,3.175-1.958,1.613-3.175,2.138-2.517.788-3.9.788ZM12,20c2.233,0,4.125-.775,5.675-2.325s2.325-3.442,2.325-5.675-.775-4.125-2.325-5.675-3.442-2.325-5.675-2.325-4.125.775-5.675,2.325-2.325,3.442-2.325,5.675.775,4.125,2.325,5.675,3.442,2.325,5.675,2.325Z\"><\/path>\n\t\t\t\t<\/svg>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-video-verification.svg\" class=\"attachment-large size-large\" alt=\"Video verification through a Nextcloud Talk call\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Video verification<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tIn situations where extreme security is warranted and the identity of a recipient has to be verified with absolute certainty before they are granted access, Nextcloud includes the industry-first implementation of Video Verification.<\/p>\n<p>Video Verification enforces a Nextcloud Talk video call before access is given to a share, making sure the identity of the recipient is properly checked. The call can be picked up through the Nextcloud Talk Mobile apps as well as the web interface.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"secure-view\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Configuring secure view in Nextcloud Office\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/office-secure-watermarks-screenshot.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Secure view<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tWith secure view, our online office solutions can be configured to open PDF files, images and text files, making these files available in a watermark-protected way, while downloads and other apps are disabled using File Access Control. This setup is useful when data has to be protected from leaking but still has to be made available for review, as in a virtual data room scenario.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"federation\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Sharing files across Nextcloud servers\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-federation-screenshot.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSharing<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Share across Nextclouds (Federation)<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tSharing files across Nextcloud servers is as easy as sending an email from a Gmail address to a Yahoo account! Instead of an email address, you use a Federated Cloud ID.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"lock\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t<a class=\"popup-video\" href=\"https:\/\/player.vimeo.com\/video\/555691008?h=88f6729c99\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"play-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"\" version=\"1.1\" viewBox=\"0 0 24 24\">\n\t\t\t\t<path class=\"st0\" d=\"M9.5,16.5l7-4.5-7-4.5v9ZM12,22c-1.383,0-2.683-.263-3.9-.788s-2.275-1.238-3.175-2.138-1.613-1.958-2.138-3.175-.788-2.517-.788-3.9.263-2.683.788-3.9,1.238-2.275,2.138-3.175,1.958-1.613,3.175-2.138,2.517-.788,3.9-.788,2.683.263,3.9.788,2.275,1.238,3.175,2.138,1.613,1.958,2.138,3.175.788,2.517.788,3.9-.263,2.683-.788,3.9-1.238,2.275-2.138,3.175-1.958,1.613-3.175,2.138-2.517.788-3.9.788ZM12,20c2.233,0,4.125-.775,5.675-2.325s2.325-3.442,2.325-5.675-.775-4.125-2.325-5.675-3.442-2.325-5.675-2.325-4.125.775-5.675,2.325-2.325,3.442-2.325,5.675.775,4.125,2.325,5.675,3.442,2.325,5.675,2.325Z\"><\/path>\n\t\t\t\t<\/svg>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/07\/files-PS-file-locked-2-1024x576.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/07\/files-PS-file-locked-2-1024x576.png 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/07\/files-PS-file-locked-2-300x169.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/07\/files-PS-file-locked-2-768x432.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/07\/files-PS-file-locked-2-1536x864.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/07\/files-PS-file-locked-2.png 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCollaboration<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Locking files<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tFile locking helps users prevent conflicts with colleagues who are trying to edit the same files. While office documents and notes can be edited in real time in the browser, some files have to be downloaded to make changes. Lock the file and collisions are avoided! Other users can easily contact you in chat or by a comment to ask what is going on.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"global-scale\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2019\/09\/globalscale-small.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"750\" height=\"500\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2019\/09\/globalscale-small.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2019\/09\/globalscale-small.jpg 750w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2019\/09\/globalscale-small-300x200.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tArchitecture<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Global Scale<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Extreme scalability at commodity cost<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud Global Scale delivers a true globally scalable solution for deployments with hundreds of millions of users, giving unprecedented control over the locality of data and delivering dramatic cost reduction\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"android-client\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tClients<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Well integrated Android app<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe Nextcloud Android app makes accessing, syncing and sharing your files easy with its modern and intuitive interface. Our client supports Android 4.0 and later and works with a wide variety of screen sizes and Android features.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul class=\"\">\n<li>Display documents, photos, videos, audio files, as a list or thumbnails, sorted as you like.<\/li>\n<li>Stream media files (needs at least Nextcloud 14)<\/li>\n<li>Edit files on the phone built in or using other apps installed on your Android device.<\/li>\n<li>Local and server-side search<\/li>\n<li>Add, rename, copy, move and delete files and folders<\/li>\n<li>Keep your favorite files available offline<\/li>\n<li>Restore deleted files<\/li>\n<li>Share files with others<\/li>\n<li>Shared files view<\/li>\n<li>Simple contacts backup &amp; restore<\/li>\n<li>Auto-configuration of Contacts and Calendar integration through DAVDroid<\/li>\n<li>Client-side, <a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/endtoend\">End-to-end encryption<\/a><\/li>\n<li>Support for server push notifications and file activity feed<\/li>\n<li>View and reply to comments on files<\/li>\n<li>Real-time collaborative document editing<\/li>\n<li>TalkBack screenreader support<\/li>\n<li>Multi-account support<\/li>\n<li>Fingerprint locking<\/li>\n<li>Adjusts to Nextcloud server theming preferences<\/li>\n<li>Auto-upload of any type of data including photos and videos with custom file naming and folder sorting, wifi-only upload, differential handling of photos and videos<\/li>\n<li>monitor any number of folders for any file type so you can upload Whatsapp images, documents and anything else<\/li>\n<li>Quick configuration with a QR code<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"ios-client\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tClients<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>iOS client<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe Nextcloud iOS app provides a way for users to access and sync files on the go in a easy and intuitive interface. The client is kept always up to date with the latest iOS versions and designed for both smaller and newer iPhones, iPhone X and iPad.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Document scanner in action<\/li>\n<li>Display documents, photos, videos, audio files, as a list or thumbnails, sorted as you like.<\/li>\n<li>Edit files on the phone built in or using other apps installed on your iPhone or iPad.<\/li>\n<li>Add, rename, copy, move and delete files and folders<\/li>\n<li>Keep your favorite files available offline<\/li>\n<li>Real-time collaborative document editing<\/li>\n<li>Quick configuration with a QR code<\/li>\n<li>Share files with others<\/li>\n<li>Client-side, <a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/endtoend\">End-to-end encryption<\/a><\/li>\n<li>Local and server-side search<\/li>\n<li>Support for server notifications and file activity feed<\/li>\n<li>3D Touch peek&amp;pop and homescreen quick actions<\/li>\n<li>Scan-to-PDF with rotation and quality level control<\/li>\n<li>Multi-account support<\/li>\n<li>Adjusts to Nextcloud server theming preferences<\/li>\n<li>Auto-upload of photos and videos with custom file naming and folder sorting, wifi-only upload and HEIC support<\/li>\n<li>iOS 11 Files Integration<\/li>\n<li>Trash and versions integration<\/li>\n<li>Remote wipe to clean data and accounts from the client<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"clients\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Nextcloud Windows desktop client\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/nextcloud-windows-desktop-integration.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tClients<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Desktop client<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Sync and collaborate on your desktop or laptop<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe Nextcloud desktop client keeps photos and documents always up to date, enabling you to work like you always did.<br \/>\nAny file you add, modify or delete in the synced folders on your desktop or laptop will show up, change or disappear on the server and all other connected devices.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Protect your files with client side,\u00a0<a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/endtoend\">End-to-end encryption<\/a><\/li>\n<li>Set up multiple accounts with different servers<\/li>\n<li>Use the activity feed to track what happens to your data<\/li>\n<li>Sync and collaborate on your desktop or laptop<\/li>\n<li>Select any number of local folders to keep in sync with specified remote folders<\/li>\n<li>Exempt any number of subfolders in a synced folder from being synced<\/li>\n<li>Optional warning in case a very big new subfolder was added<\/li>\n<li>Easily pause and resume syncing<\/li>\n<li>Remote wipe to clean data and accounts from the client<\/li>\n<li>Receive notifications of server events like a new share or audio\/video call<\/li>\n<li>Use the activity feed to track what happens to your data<\/li>\n<li>Immediately reply to notifications to join a call or accept a share<\/li>\n<li>Protect your files with client side, <a class=\"hyperlink\" href=\"https:\/\/nextcloud.com\/endtoend\">End-to-end encryption<\/a> (version 2.7.0+)<\/li>\n<li>Easily configure a proxy or set bandwidth throttling<\/li>\n<li>Enjoy convenient file manager integration for easy sharing<\/li>\n<li>Set up multiple accounts with different servers<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"remote-wipe\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tData Loss Prevention<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Remote Wipe<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Clean data and accounts from the client<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tWhile Nextcloud supports Mobile Device Management solutions, thanks to built-in support, remote wipe will work on systems not under management of the company. This is useful for home users but also large universities and of course in a scenario where guest accounts were handed to a third party.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"branding\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/01\/nextcloud-hub-talk-25-preview-branding.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1003\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/01\/nextcloud-hub-talk-25-preview-branding-1003x576.png\" class=\"attachment-large size-large\" alt=\"Nextcloud branding\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/01\/nextcloud-hub-talk-25-preview-branding-1003x576.png 1003w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/01\/nextcloud-hub-talk-25-preview-branding-300x172.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/01\/nextcloud-hub-talk-25-preview-branding-768x441.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/01\/nextcloud-hub-talk-25-preview-branding.png 1200w\" sizes=\"(max-width: 1003px) 100vw, 1003px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCustomization<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Branding<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Easy, integrated branding support for enterprise customers<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tIn order to provide a seamless enterprise user experience, Nextcloud offers branded clients to their customers. As part of this we support deployment technologies like MSI for desktops and MDM for mobile platforms.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAutomation<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>All-in-one deployments<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tTo ease deployment for small and medium business, Nextcloud offers an All-in-one Docker and VM image and direct deployments in a number of cloud environments like Azure and AWS.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"dashboard\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t<a class=\"popup-video\" href=\"https:\/\/player.vimeo.com\/video\/555700010?h=004a4e7019\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"play-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"\" version=\"1.1\" viewBox=\"0 0 24 24\">\n\t\t\t\t<path class=\"st0\" d=\"M9.5,16.5l7-4.5-7-4.5v9ZM12,22c-1.383,0-2.683-.263-3.9-.788s-2.275-1.238-3.175-2.138-1.613-1.958-2.138-3.175-.788-2.517-.788-3.9.263-2.683.788-3.9,1.238-2.275,2.138-3.175,1.958-1.613,3.175-2.138,2.517-.788,3.9-.788,2.683.263,3.9.788,2.275,1.238,3.175,2.138,1.613,1.958,2.138,3.175.788,2.517.788,3.9-.263,2.683-.788,3.9-1.238,2.275-2.138,3.175-1.958,1.613-3.175,2.138-2.517.788-3.9.788ZM12,20c2.233,0,4.125-.775,5.675-2.325s2.325-3.442,2.325-5.675-.775-4.125-2.325-5.675-3.442-2.325-5.675-2.325-4.125.775-5.675,2.325-2.325,3.442-2.325,5.675.775,4.125,2.325,5.675,3.442,2.325,5.675,2.325Z\"><\/path>\n\t\t\t\t<\/svg>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/dashboard-bg-4-light-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"dashboard-bg-4-light\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/dashboard-bg-4-light-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/dashboard-bg-4-light-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/dashboard-bg-4-light-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/dashboard-bg-4-light.jpg 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCollaboration<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Nextcloud Dashboard<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>A great way to start your day<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe Nextcloud Dashboard is your starting point of the day, giving you an overview of your upcoming appointments, urgent emails, chat messages, incoming tickets, latest tweets and much more! Users can add the widgets they like and change the background to their liking.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Configurable dashboard widgets<\/li>\n<li>Widgets for social media apps<\/li>\n<li>Move the widgets where you want them<\/li>\n<li>View and edit files directly from the dashboard<\/li>\n<li>Change the background<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"status\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t<a class=\"popup-video\" href=\"https:\/\/player.vimeo.com\/video\/555700010?badge=0&amp;autopause=0&amp;dnt=1&amp;player_id=0&amp;app_id=58479\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"play-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"\" version=\"1.1\" viewBox=\"0 0 24 24\">\n\t\t\t\t<path class=\"st0\" d=\"M9.5,16.5l7-4.5-7-4.5v9ZM12,22c-1.383,0-2.683-.263-3.9-.788s-2.275-1.238-3.175-2.138-1.613-1.958-2.138-3.175-.788-2.517-.788-3.9.263-2.683.788-3.9,1.238-2.275,2.138-3.175,1.958-1.613,3.175-2.138,2.517-.788,3.9-.788,2.683.263,3.9.788,2.275,1.238,3.175,2.138,1.613,1.958,2.138,3.175.788,2.517.788,3.9-.263,2.683-.788,3.9-1.238,2.275-2.138,3.175-1.958,1.613-3.175,2.138-2.517.788-3.9.788ZM12,20c2.233,0,4.125-.775,5.675-2.325s2.325-3.442,2.325-5.675-.775-4.125-2.325-5.675-3.442-2.325-5.675-2.325-4.125.775-5.675,2.325-2.325,3.442-2.325,5.675.775,4.125,2.325,5.675,3.442,2.325,5.675,2.325Z\"><\/path>\n\t\t\t\t<\/svg>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-titlebar-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Sharing in Nextcloud\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-titlebar-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-titlebar-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-titlebar-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-titlebar-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-sharing-titlebar.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCollaboration<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Set your status<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>\ud83e\udd58 Having Lunch \ud83c\udfe0 Working from home \ud83d\udcde Calls all day<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tOn top of the dashboard, users can set their status, to show to colleagues what they are up to \u2013 traveling, working from home, concentrating, and so on. This status is then visible in Talk and other apps and it can automatically clear after a set time, so your colleagues do not think you are commuting for a whole day!\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"full-text-search\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"533\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch-1024x533.png\" class=\"attachment-large size-large\" alt=\"fulltextsearch\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch-1024x533.png 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch-300x156.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch-768x400.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch-1536x800.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/fulltextsearch.png 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSearching, Collaboration<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Powerful full-text search<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud includes a powerful full-text search engine capable of using ElasticSearch as back-end. Its flexible plugin-based interface enables search capabilities beyond files and accommodates other back-end solutions like Apache Solr.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"unified-search\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"video-block vimeo_container\">\n\t\t\t\t\t\t\t<iframe src=\"https:\/\/player.vimeo.com\/video\/555766609?badge=0&amp;autopause=0&amp;dnt=1&amp;player_id=0&amp;app_id=58479\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen=\"\" title=\"\" frameborder=\"0\"><\/iframe>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSearching<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Unified search<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Find everything in one place<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tOn the top-right of your Nextcloud window, a search glass shows search results from all over Nextcloud. Additional search providers can be installed and over a dozen different search providers are available to show you Github issues, Moodle courses, Jira tickets and more\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"monitoring\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/nextcloud.com\/blog\/data_sheets\/monitoring-and-auditing\/\" title=\"Auditing and monitoring datasheet\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/logging-monitoring-admin-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Logging and monitoring\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/logging-monitoring-admin-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/logging-monitoring-admin-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/logging-monitoring-admin-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/logging-monitoring-admin-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/logging-monitoring-admin.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAdministration, Security<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Monitoring and auditing<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Nextcloud has your back with our Server Information, Activities and Auditing apps.<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tWith your file sync and share solution central to the productivity of hundreds, thousands or even millions of users it is crucial to have an overview of its performance and service. Your users want to know what is happening to their files. And last but not least, so does your legal department!\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"https:\/\/nextcloud.com\/blog\/data_sheets\/monitoring-and-auditing\/\" target=\"\" title=\"Auditing and monitoring datasheet\">Auditing and monitoring datasheet <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Track file activity<\/li>\n<li>Built-in App for monitoring<\/li>\n<li>Auditing logs<\/li>\n<li>Monitoring API endpoint integration<\/li>\n<li>Protect and retire data<\/li>\n<li>Advanced file access control and retention capabilities<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"533\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5-1024x533.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5-1024x533.png 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5-300x156.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5-768x400.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5-1536x800.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/file-access-control-nw-5.png 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity, Automation<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>File access control<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Access on your terms<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThrough File Access Control and automatic file tagging, Nextcloud gives administrators control over data access by enabling them to define strict rules requests need to adhere to. If users in certain groups or geographic regions should not be given access to certain file types or if data with a specific tag should not be shared outside the company, administrators can make sure their Nextcloud instance enforces these rules.<br \/>\nCombined with our Secure Sharing Outlook addin (and by disabling direct email attachments), File Access Control can play a crucial role in enforcing company policy on data sharing.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"workflow\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"video-block vimeo_container\">\n\t\t\t\t\t\t\t<iframe src=\"https:\/\/player.vimeo.com\/video\/555688777?h=d5e1d6e39f&amp;color=0082c9&amp;title=0&amp;byline=0&amp;portrait=0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen=\"\" title=\"\" frameborder=\"0\"><\/iframe>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCollaboration, Security<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Nextcloud Workflow<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Automate, control and secure the flow of data on your Nextcloud server<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tFlow makes it easy to automate repetitive, boring tasks. For example, let\u2019s say you are a sales person and send quotes as PDF. You set up a flow that turns documents into a PDF when you add a tag, say \u201ato-pdf\u2018. Or, say you want to put a message in your teams\u2018 chat room when a partner uploads files in a specific folder.<br \/>\nApps can include flow elements like triggers or actions, and separate flow apps can be build. If you are interested in building for flow, check our Developer documentation.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Get work approved and documents digitally signed<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"file-versioning\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention-1024x576.png\" class=\"attachment-large size-large\" alt=\"tagging-retention\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention-1024x576.png 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention-300x169.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention-768x432.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention-1536x864.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/04\/tagging-retention-2048x1152.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tData Loss Prevention<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>File versioning, restore and retention control<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tFile retention and deletion can also be controlled based on tags set manually or automatically, ensuring legal or practical requirements for the longevity of data lifespans can be enforced.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAccessibility<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>High contrast mode<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tTo ensure Nextcloud is accessible to users with visual impairments, Nextcloud has extensive keyboard accessibility and screen reader support.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAccessibility<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Screen reader support<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tTo ensure Nextcloud is accessible to users with visual impairments, Nextcloud has extensive keyboard accessibility and screen reader support.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAccessibility<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Dyslexia font<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tTo ensure Nextcloud is accessible to users with visual impairments, Nextcloud has extensive keyboard accessibility and screen reader support.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"light-dark-theme\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/hub3-appearance-and-accessibility.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAccessibility<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Light\/Dark theme support<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tTo ensure Nextcloud is accessible to users with visual impairments, Nextcloud has extensive keyboard accessibility and screen reader support.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"gdpr\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/gdpr\/\" title=\"More about compliance\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"873\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-compliance-kit-873x576.jpg\" class=\"attachment-large size-large\" alt=\"Nextcloud GDPR compliance\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-compliance-kit-873x576.jpg 873w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-compliance-kit-300x198.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-compliance-kit-768x507.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/nextcloud-compliance-kit.jpg 1200w\" sizes=\"(max-width: 873px) 100vw, 873px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tCompliance<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Support for GDPR, CCPA, HIPAA, FERPA, COPPA<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe GDPR (General Data Protection Regulation) makes organizations liable for any violations of user privacy and deviations from a high data security standard. Legislation like the CCPA (California Consumer Privacy Act of 2018), HIPAA, FERPA, COPPA bring privacy regulation to other countries. The self-hosted Nextcloud Enterprise platform simplifies compliance, decreasing business risk and costs\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/gdpr\/\" target=\"\" title=\"More about compliance\">More about compliance <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Configurable imprint and privacy links for your login page<\/li>\n<li>Data Request app to allow users to request data deletion or modification from their user settings<\/li>\n<li>Delete Account app to allow users to delete their account<\/li>\n<li>Terms of Service app that only gives access to Nextcloud after users read and agreed to terms (handles updated terms as well)<\/li>\n<li>Export of data<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"file-drop\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t<a class=\"popup-video\" href=\"https:\/\/player.vimeo.com\/video\/556890169?h=89d971ced2&amp;badge=0&amp;autopause=0&amp;dnt=1&amp;player_id=0&amp;app_id=58479\" title=\"More about file drop\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"play-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg fill=\"currentColor\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"\" version=\"1.1\" viewBox=\"0 0 24 24\">\n\t\t\t\t<path class=\"st0\" d=\"M9.5,16.5l7-4.5-7-4.5v9ZM12,22c-1.383,0-2.683-.263-3.9-.788s-2.275-1.238-3.175-2.138-1.613-1.958-2.138-3.175-.788-2.517-.788-3.9.263-2.683.788-3.9,1.238-2.275,2.138-3.175,1.958-1.613,3.175-2.138,2.517-.788,3.9-.788,2.683.263,3.9.788,2.275,1.238,3.175,2.138,1.613,1.958,2.138,3.175.788,2.517.788,3.9-.263,2.683-.788,3.9-1.238,2.275-2.138,3.175-1.958,1.613-3.175,2.138-2.517.788-3.9.788ZM12,20c2.233,0,4.125-.775,5.675-2.325s2.325-3.442,2.325-5.675-.775-4.125-2.325-5.675-3.442-2.325-5.675-2.325-4.125.775-5.675,2.325-2.325,3.442-2.325,5.675.775,4.125,2.325,5.675,3.442,2.325,5.675,2.325Z\"><\/path>\n\t\t\t\t<\/svg>\n\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"911\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-file-drop-illustration-2-911x576.png\" class=\"attachment-large size-large\" alt=\"E2EE file drop\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-file-drop-illustration-2-911x576.png 911w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-file-drop-illustration-2-300x190.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-file-drop-illustration-2-768x485.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-file-drop-illustration-2.png 1500w\" sizes=\"(max-width: 911px) 100vw, 911px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity, Sharing<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>File Drop \u2013 Secure file exchange<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Convenient and secure file exchange for enterprises<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe File Drop feature in Nextcloud Files enables customers, patients, clients or partners to upload files for you in a secure cloud folder you shared through a hyperlink.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"https:\/\/nextcloud.com\/blog\/file-drop-convenient-and-secure-file-exchange-for-enterprises\/\" target=\"\" title=\"More about file drop\">More about file drop <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul class=\"\">\n<li>Easy creation of secure upload point<\/li>\n<li>Activity tracker notifies sender about file uploads\/downloads<\/li>\n<li>Integrated anti-virus scanning<\/li>\n<li>Unlimited shares and upload folders<\/li>\n<li>Unique links for each customer<\/li>\n<li>Edit\/rename without link change<\/li>\n<li>Read only\/write permissions<\/li>\n<li>Password protection<\/li>\n<li>Expiration date<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/encryption\/\" title=\"More about encryption\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/encryption-hub3-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Multi-layered encryption\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/encryption-hub3-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/encryption-hub3-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/encryption-hub3-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/encryption-hub3-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/encryption-hub3.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>End-to-end encryption<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Protecting data from source to destination<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud features an enterprise-grade, seamlessly integrated solution for end-to-end encryption. It enables users to pick one or more folders on their desktop or mobile client for end-to-end encryption. Folders can be shared with other users and synced between devices but are not readable by the server.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/encryption\/\" target=\"\" title=\"More about encryption\">More about encryption <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Any number of folders can be end to end encrypted.<\/li>\n<li>Easily add a new device with a strong passcode consisting of 12 dictionary words.<\/li>\n<li>Secure sharing with other users without the need to enter passwords. (not yet implemented)<\/li>\n<li>Efficient sharing and revoking shares without the need to re-encrypt large files. (not yet implemented)<\/li>\n<li>Supports a Hardware Security Module for enterprise environments which enables securely issuing new keys to users. (not yet implemented)<\/li>\n<li>Supports an offline administrator recovery key to be kept in a physically separated location. Users get warned when this key is enabled. (not yet implemented)<\/li>\n<li>Supports a complete audit log without compromising end to end security.<\/li>\n<li>Can be combined with our File Access Control to block specific file types or files by specific user groups from uploading unless they are end-to-end encrypted.<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"server-side-encryption\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/nc-server-side-encryption2-1.svg\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/04\/nc-server-side-encryption2-1.svg\" class=\"attachment-large size-large\" alt=\"Server-side encryption\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tEncryption<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Server-side encryption with flexible key handling<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud supports pluggable encryption key handling. If you have an external key server or Hardware Security Module, these can be made to work with Nextcloud.<br \/>\nOur default encryption key handling enables administrators to set a system wide recovery key for encrypted files,. This ensures that, even when users lose their password, files can always be decrypted. Encrypted files can be shared but after changing encryption settings, shares will have to be re-shared. Using our command line tools, data can be encrypted, decrypted or re-encrypted when needed.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"popup-screenshot\" href=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing.png\" title=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"983\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing-983x576.png\" class=\"attachment-large size-large\" alt=\"E2EE file sharing\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing-983x576.png 983w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing-300x176.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing-768x450.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing-1536x900.png 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/nc-files-e2ee-sharing.png 1920w\" sizes=\"(max-width: 983px) 100vw, 983px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tEncryption<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>E2EE file sharing<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tBefore, after picking a folder for end-to-end encryption, users could work in this folder and access it from all their clients, mobile and desktop, but not share it. It is now possible for the HR team to share their folders with confidential dossiers with each other!\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/usermanagement\/\" title=\"More about users management\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"913\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/10\/Users-Nextcloud-25-913x576.png\" class=\"attachment-large size-large\" alt=\"Nextcloud Hub 3 Users management\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/10\/Users-Nextcloud-25-913x576.png 913w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/10\/Users-Nextcloud-25-300x189.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/10\/Users-Nextcloud-25-768x484.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/10\/Users-Nextcloud-25.png 1473w\" sizes=\"(max-width: 913px) 100vw, 913px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tAdministration<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>LDAP\/Active Directory user management<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Integrated account management<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud features integration with external user directories like LDAP, Active Directory or others as well as built-in account management, two-factor authentication and Single-sign-on support.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/usermanagement\/\" target=\"\" title=\"More about users management\">More about users management <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Group admins<\/li>\n<li>Guest accounts<\/li>\n<li>Password security enforcement<\/li>\n<li>Add accounts easily with a QR code<\/li>\n<li>User-defined group management<\/li>\n<li>Automated or manual provisioning<\/li>\n<li>Multi-factor authentication<\/li>\n<li>Single-sign-on<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/microsoft-integrations\/\" title=\"More about Microsoft integrations\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/Nextcloud-Microsoft-integrations-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Microsoft integration capabilities\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/Nextcloud-Microsoft-integrations-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/Nextcloud-Microsoft-integrations-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/Nextcloud-Microsoft-integrations-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/Nextcloud-Microsoft-integrations-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/12\/Nextcloud-Microsoft-integrations.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tIntegrations<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Microsoft integrations<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tNextcloud Enterprise is designed to integrate well in Microsoft environments, with file storage, user directory, Outlook, Sharepoint, Windows Desktop, MS Office online server and Teams integrations available.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/microsoft-integrations\/\" target=\"\" title=\"More about Microsoft integrations\">More about Microsoft integrations <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\t<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex other-features-list\">\n\t\t<div class=\"wpb_column vc_column_container vc_col-sm-12\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t<ul>\n<li>Outlook integration (Files Sharing)<\/li>\n<li class=\"wpb_wrapper\">Outlook integration (Exchange Connector)<\/li>\n<li class=\"wpb_wrapper\">Teams integration<\/li>\n<li class=\"wpb_wrapper\">WND &amp; Sharepoint integration<\/li>\n<li class=\"wpb_wrapper\">Office Online Integration<\/li>\n<li>Secure email box (prevent leaking of email content and attachments with Outlook integration)<\/li>\n<\/ul>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/blog\/hub-4-pioneers-ethical-ai-integration-for-a-more-productive-and-collaborative-future\/#smart-picker\" title=\"More about smart picker\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/Nextcloud-talk-smart-picker-AI-image-generation-1024x576.jpg\" class=\"attachment-large size-large\" alt=\"Nextcloud smart picker AI image generation\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/Nextcloud-talk-smart-picker-AI-image-generation-1024x576.jpg 1024w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/Nextcloud-talk-smart-picker-AI-image-generation-300x169.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/Nextcloud-talk-smart-picker-AI-image-generation-768x432.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/Nextcloud-talk-smart-picker-AI-image-generation-1536x864.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/03\/Nextcloud-talk-smart-picker-AI-image-generation.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tUsability<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Smart picker<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tThe Smart Picker was created to enhance your workflow and to better collaborate. It is conveniently integrated across all your Nextcloud applications resulting in seamless collaboration.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/blog\/hub-4-pioneers-ethical-ai-integration-for-a-more-productive-and-collaborative-future\/#smart-picker\" target=\"\" title=\"More about smart picker\">More about smart picker <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/storage\/\" title=\"More about storage\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"923\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/external-storage-nc25-923x576.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/external-storage-nc25-923x576.png 923w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/external-storage-nc25-300x187.png 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/external-storage-nc25-768x479.png 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2022\/11\/external-storage-nc25.png 1488w\" sizes=\"(max-width: 923px) 100vw, 923px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tStorage<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>External storage<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-subtitle\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h3>Securely access your data anywhere<\/h3>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tAccess existing storage silos like FTP, Windows Network Drives, SharePoint, Object Storage and Samba shares seamlessly through Nextcloud.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/storage\/\" target=\"\" title=\"More about storage\">More about storage <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n<section class=\"nc_feature\" id=\"\">\n<div class=\"container\">\n<div class=\"vc_row wpb_row vc_row-fluid vc_column-gap-30 vc_row-o-content-middle vc_row-flex row-feature\">\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-4\">\n\t\t\t<div class=\"vc_column-inner\">\n\t\t\t\t<div class=\"wpb_wrapper\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"wpb_single_image wpb_content_element vc_align_center feature_main_image\">\n\t\t\t\t\t\t\t<figure class=\"wpb_wrapper vc_figure\">\n\t\t\t\t\t\t\t\t<div class=\"vc_single_image-wrapper vc_box_border_grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/virtual-data-room\/\" title=\"More about virtual data room\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"867\" height=\"576\" src=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/vdr-link-867x576.jpg\" class=\"attachment-large size-large\" alt=\"Virtual data room\" srcset=\"https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/vdr-link-867x576.jpg 867w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/vdr-link-300x199.jpg 300w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/vdr-link-768x510.jpg 768w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/vdr-link-1536x1020.jpg 1536w, https:\/\/staging.nextcloud.com\/wp-content\/uploads\/2023\/02\/vdr-link.jpg 1920w\" sizes=\"(max-width: 867px) 100vw, 867px\" \/>\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\t<div class=\"wpb_column vc_column_container vc_col-sm-8 \">\n\n\t\t<div class=\"vc_column-inner copy_element_link copy_feature\">\n\t\t\t<div class=\"wpb_wrapper\">\n\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc_text_as_separator feature_tags\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 -960 960 960\" fill=\"#0082c9\"><path d=\"M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h440q19 0 36 8.5t28 23.5l216 288-216 288q-11 15-28 23.5t-36 8.5H160Zm0-80h440l180-240-180-240H160v480Zm220-240Z\"\/><\/svg>\t\n\t\t\t\t\t\tSecurity<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element nc-section-title\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\t<h2>Virtual data room<\/h2>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\n\t\t\t\t<div class=\"wpb_text_column wpb_content_element\">\n\t\t\t\t\t<div class=\"wpb_wrapper\">\n\t\t\t\t\t\tIn settings where a firewall is needed between departments or organizations without impeding smooth and efficient collaboration, a separate Virtual Data Room can be set up.\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<div class=\"vc_btn3-container btn-main btn-small vc_btn3-inline\">\n\t\t\t\t\t\t<a class=\"vc_general vc_btn3 vc_btn3-size-md vc_btn3-shape-rounded vc_btn3-style-modern vc_btn3-icon-right vc_btn3-color-grey\" href=\"\/virtual-data-room\/\" target=\"\" title=\"More about virtual data room\">More about virtual data room <i class=\"vc_btn3-icon fas fa-angle-right\"><\/i><\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\n\t\t\n<\/div>\n<\/section>\n[\/vc_column][\/vc_row][\/vc_section][vc_section el_id=&#8221;cta-contact&#8221; el_class=&#8221;cta-contact nc-section-gradient-bg white-text&#8221; css=&#8221;.vc_custom_1663589051447{padding-top: 3rem !important;padding-bottom: 3rem !important;}&#8221;][vc_row content_placement=&#8221;middle&#8221;][vc_column width=&#8221;3\/5&#8243; el_class=&#8221;text-right&#8221;][vc_column_text el_class=&#8221;nc-section-title&#8221;]<\/p>\n<h2>Stay in touch<\/h2>\n<p>[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1670242805295{margin-bottom: 0px !important;}&#8221;]Contact us or stay up to date with latest enhancements.<br \/>\nSubscribe to our newsletter and never miss anything<br \/>\nPricing for the Sendent Outlook Add-in starts at <strong>\u20ac6,48\/user\/year<\/strong><br \/>\nwith discounts for larger user numbers.[\/vc_column_text][\/vc_column][vc_column width=&#8221;2\/5&#8243; el_class=&#8221;cta_buttons&#8221;][vc_btn title=&#8221;Contact us&#8221; align=&#8221;left&#8221; i_icon_fontawesome=&#8221;fas fa-paper-plane&#8221; add_icon=&#8221;true&#8221; el_class=&#8221;btn-white&#8221; link=&#8221;url:%2Fcontact%2F|title:Contact%20us&#8221;][vc_btn title=&#8221;Request a quote&#8221; align=&#8221;left&#8221; i_icon_fontawesome=&#8221;fas fa-paper-plane&#8221; add_icon=&#8221;true&#8221; el_class=&#8221;btn-white&#8221; link=&#8221;url:%2Fget-a-quote%2F|title:Request%20a%20quote&#8221;][vc_btn title=&#8221;Newsletter&#8221; align=&#8221;left&#8221; i_icon_fontawesome=&#8221;fas fa-envelope&#8221; add_icon=&#8221;true&#8221; el_class=&#8221;btn-white&#8221; link=&#8221;url:https%3A%2F%2Fnextcloud.com%2Fnewsletter%2F&#8221; css=&#8221;.vc_custom_1670918791905{margin-bottom: 0px !important;}&#8221;][\/vc_column][\/vc_row][\/vc_section]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_section el_class=&#8221;titlebar at_home noPaddingBottom&#8221; css=&#8221;.vc_custom_1670419950476{background-image: url(https:\/\/nextcloud.com\/wp-content\/uploads\/2022\/12\/nc-people-microsoft-integrations-titlebar.jpg?id=82729) !important;}&#8221;][vc_row content_placement=&#8221;middle&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_empty_space][vc_column_text el_class=&#8221;page-title centerMobile&#8221;] Nextcloud features [\/vc_column_text][vc_column_text el_class=&#8221;page-subtitle centerMobile&#8221; css=&#8221;.vc_custom_1689689601179{margin-top: 2rem !important;margin-bottom: 2rem !important;}&#8221;]Discover all features of Nextcloud that put you in control.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][\/vc_column][\/vc_row][\/vc_section][vc_section el_class=&#8221;nc_default_section&#8221; css=&#8221;.vc_custom_1682414288021{margin-top: 0px !important;margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_row gap=&#8221;30&#8243; content_placement=&#8221;middle&#8221;][vc_column][vc_column_text] Filter through all features: [\/vc_column_text][vc_column_text el_class=&#8221;features-filters-holder&#8221;] [\/vc_column_text][\/vc_column][\/vc_row][\/vc_section][vc_section full_width=&#8221;stretch_row_content&#8221; el_class=&#8221;nc_default_section all_features flex&#8221; css=&#8221;.vc_custom_1689690318294{margin-top: 0px !important;margin-bottom: [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"tags":[],"class_list":["post-112957","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Features - Nextcloud<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"da_DK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Features - Nextcloud\" \/>\n<meta property=\"og:description\" content=\"[vc_section el_class=&#8221;titlebar at_home noPaddingBottom&#8221; css=&#8221;.vc_custom_1670419950476{background-image: url(https:\/\/nextcloud.com\/wp-content\/uploads\/2022\/12\/nc-people-microsoft-integrations-titlebar.jpg?id=82729) !important;}&#8221;][vc_row content_placement=&#8221;middle&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_empty_space][vc_column_text el_class=&#8221;page-title centerMobile&#8221;] Nextcloud features [\/vc_column_text][vc_column_text el_class=&#8221;page-subtitle centerMobile&#8221; css=&#8221;.vc_custom_1689689601179{margin-top: 2rem !important;margin-bottom: 2rem !important;}&#8221;]Discover all features of Nextcloud that put you in control.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][\/vc_column][\/vc_row][\/vc_section][vc_section el_class=&#8221;nc_default_section&#8221; css=&#8221;.vc_custom_1682414288021{margin-top: 0px !important;margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_row gap=&#8221;30&#8243; content_placement=&#8221;middle&#8221;][vc_column][vc_column_text] Filter through all features: [\/vc_column_text][vc_column_text el_class=&#8221;features-filters-holder&#8221;] [\/vc_column_text][\/vc_column][\/vc_row][\/vc_section][vc_section full_width=&#8221;stretch_row_content&#8221; el_class=&#8221;nc_default_section all_features flex&#8221; css=&#8221;.vc_custom_1689690318294{margin-top: 0px !important;margin-bottom: [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.nextcloud.com\/da\/features-test\/\" \/>\n<meta property=\"og:site_name\" content=\"Nextcloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Nextclouders\/\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-23T16:22:51+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@nextclouders\" \/>\n<meta name=\"twitter:label1\" content=\"Estimeret l\u00e6setid\" \/>\n\t<meta name=\"twitter:data1\" content=\"22 minutter\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/features-test\\\/\",\"url\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/features-test\\\/\",\"name\":\"Features - Nextcloud\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/#website\"},\"datePublished\":\"2023-04-25T11:42:12+00:00\",\"dateModified\":\"2023-10-23T16:22:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/features-test\\\/#breadcrumb\"},\"inLanguage\":\"da-DK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/features-test\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/features-test\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Features\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/#website\",\"url\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/\",\"name\":\"Nextcloud\",\"description\":\"Regain control over your data\",\"publisher\":{\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"da-DK\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/#organization\",\"name\":\"Nextcloud\",\"url\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/staging.nextcloud.com\\\/c\\\/uploads\\\/2022\\\/10\\\/nextcloud-logo-blue-transparent.svg\",\"contentUrl\":\"https:\\\/\\\/staging.nextcloud.com\\\/c\\\/uploads\\\/2022\\\/10\\\/nextcloud-logo-blue-transparent.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"Nextcloud\"},\"image\":{\"@id\":\"https:\\\/\\\/staging.nextcloud.com\\\/da\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Nextclouders\\\/\",\"https:\\\/\\\/x.com\\\/nextclouders\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/10827569\\\/\",\"https:\\\/\\\/youtube.com\\\/nextcloud\",\"https:\\\/\\\/www.instagram.com\\\/nextclouders\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Features - Nextcloud","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"da_DK","og_type":"article","og_title":"Features - Nextcloud","og_description":"[vc_section el_class=&#8221;titlebar at_home noPaddingBottom&#8221; css=&#8221;.vc_custom_1670419950476{background-image: url(https:\/\/nextcloud.com\/wp-content\/uploads\/2022\/12\/nc-people-microsoft-integrations-titlebar.jpg?id=82729) !important;}&#8221;][vc_row content_placement=&#8221;middle&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_empty_space][vc_column_text el_class=&#8221;page-title centerMobile&#8221;] Nextcloud features [\/vc_column_text][vc_column_text el_class=&#8221;page-subtitle centerMobile&#8221; css=&#8221;.vc_custom_1689689601179{margin-top: 2rem !important;margin-bottom: 2rem !important;}&#8221;]Discover all features of Nextcloud that put you in control.[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][\/vc_column][\/vc_row][\/vc_section][vc_section el_class=&#8221;nc_default_section&#8221; css=&#8221;.vc_custom_1682414288021{margin-top: 0px !important;margin-bottom: 0px !important;padding-bottom: 0px !important;}&#8221;][vc_row gap=&#8221;30&#8243; content_placement=&#8221;middle&#8221;][vc_column][vc_column_text] Filter through all features: [\/vc_column_text][vc_column_text el_class=&#8221;features-filters-holder&#8221;] [\/vc_column_text][\/vc_column][\/vc_row][\/vc_section][vc_section full_width=&#8221;stretch_row_content&#8221; el_class=&#8221;nc_default_section all_features flex&#8221; css=&#8221;.vc_custom_1689690318294{margin-top: 0px !important;margin-bottom: [&hellip;]","og_url":"https:\/\/staging.nextcloud.com\/da\/features-test\/","og_site_name":"Nextcloud","article_publisher":"https:\/\/www.facebook.com\/Nextclouders\/","article_modified_time":"2023-10-23T16:22:51+00:00","twitter_card":"summary_large_image","twitter_site":"@nextclouders","twitter_misc":{"Estimeret l\u00e6setid":"22 minutter"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/staging.nextcloud.com\/da\/features-test\/","url":"https:\/\/staging.nextcloud.com\/da\/features-test\/","name":"Features - Nextcloud","isPartOf":{"@id":"https:\/\/staging.nextcloud.com\/da\/#website"},"datePublished":"2023-04-25T11:42:12+00:00","dateModified":"2023-10-23T16:22:51+00:00","breadcrumb":{"@id":"https:\/\/staging.nextcloud.com\/da\/features-test\/#breadcrumb"},"inLanguage":"da-DK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.nextcloud.com\/da\/features-test\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/staging.nextcloud.com\/da\/features-test\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/staging.nextcloud.com\/da\/"},{"@type":"ListItem","position":2,"name":"Features"}]},{"@type":"WebSite","@id":"https:\/\/staging.nextcloud.com\/da\/#website","url":"https:\/\/staging.nextcloud.com\/da\/","name":"Nextcloud","description":"Regain control over your data","publisher":{"@id":"https:\/\/staging.nextcloud.com\/da\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.nextcloud.com\/da\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"da-DK"},{"@type":"Organization","@id":"https:\/\/staging.nextcloud.com\/da\/#organization","name":"Nextcloud","url":"https:\/\/staging.nextcloud.com\/da\/","logo":{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/staging.nextcloud.com\/da\/#\/schema\/logo\/image\/","url":"https:\/\/staging.nextcloud.com\/c\/uploads\/2022\/10\/nextcloud-logo-blue-transparent.svg","contentUrl":"https:\/\/staging.nextcloud.com\/c\/uploads\/2022\/10\/nextcloud-logo-blue-transparent.svg","width":"1024","height":"1024","caption":"Nextcloud"},"image":{"@id":"https:\/\/staging.nextcloud.com\/da\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Nextclouders\/","https:\/\/x.com\/nextclouders","https:\/\/www.linkedin.com\/company\/10827569\/","https:\/\/youtube.com\/nextcloud","https:\/\/www.instagram.com\/nextclouders\/"]}]}},"_links":{"self":[{"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/pages\/112957","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/comments?post=112957"}],"version-history":[{"count":122,"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/pages\/112957\/revisions"}],"predecessor-version":[{"id":113465,"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/pages\/112957\/revisions\/113465"}],"wp:attachment":[{"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/media?parent=112957"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.nextcloud.com\/da\/wp-json\/wp\/v2\/tags?post=112957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}