Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: https://community.zextras.com/feed/

  1. <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
  2. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  3. xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:atom="http://www.w3.org/2005/Atom"
  6. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  7. xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  8. >
  9.  
  10. <channel>
  11. <title>Zextras Community</title>
  12. <atom:link href="https://community.zextras.com/feed/" rel="self" type="application/rss+xml" />
  13. <link>https://community.zextras.com</link>
  14. <description>Carbonio Community Edition, Zextras, and Zimbra Open Source</description>
  15. <lastBuildDate>Mon, 06 May 2024 14:50:45 +0000</lastBuildDate>
  16. <language>en-US</language>
  17. <sy:updatePeriod>
  18. hourly </sy:updatePeriod>
  19. <sy:updateFrequency>
  20. 1 </sy:updateFrequency>
  21. <generator>https://wordpress.org/?v=6.4.3</generator>
  22.  
  23. <image>
  24. <url>https://community.zextras.com/wp-content/uploads/2022/03/cropped-favicon512-32x32.png</url>
  25. <title>Zextras Community</title>
  26. <link>https://community.zextras.com</link>
  27. <width>32</width>
  28. <height>32</height>
  29. </image>
  30. <item>
  31. <title>How to Upgrade Carbonio Community Edition to PostgreSQL 16 in RHEL 8 &#124; Carbonio CE</title>
  32. <link>https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-rhel-8-carbonio-ce/</link>
  33. <comments>https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-rhel-8-carbonio-ce/#respond</comments>
  34. <dc:creator><![CDATA[Zextras]]></dc:creator>
  35. <pubDate>Mon, 06 May 2024 14:31:14 +0000</pubDate>
  36. <category><![CDATA[Admin Guide]]></category>
  37. <category><![CDATA[Installation]]></category>
  38. <category><![CDATA[Zextras Carbonio]]></category>
  39. <category><![CDATA[Configuration]]></category>
  40. <category><![CDATA[Installation & Upgrade]]></category>
  41. <category><![CDATA[Zextras Carbonio CE]]></category>
  42. <guid isPermaLink="false">https://community.zextras.com/?p=7731</guid>
  43.  
  44. <description><![CDATA[<p>The latest Carbonio CE 24.03 update adds support for PostgreSQL 16. Those who previously installed Carbonio on RHEL 8 using PostgreSQL 12 were faced with the need to update the distribution and version of PostgreSQL they were using to the current version. In this instruction, we will tell you how to do this.</p>
  45. <p>The post <a href="https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-rhel-8-carbonio-ce/">How to Upgrade Carbonio Community Edition to PostgreSQL 16 in RHEL 8 | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  46. <content:encoded><![CDATA[<p>The latest Carbonio CE 24.03 update adds support for PostgreSQL 16. Those who previously installed Carbonio on RHEL 8 using PostgreSQL 12 were faced with the need to update the distribution and version of PostgreSQL they were using to the current version. In this instruction, we will tell you how to do this.</p>
  47.  
  48.  
  49.  
  50. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  51.  
  52.  
  53.  
  54. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-a1f5cd6e975b40c037b8e93835354bbf" style="color:#00506d">Update PostgreSQL in RHEL8</h2>
  55.  
  56.  
  57.  
  58. <p>Add a PostgreSQL 16 repository to the system:</p>
  59.  
  60.  
  61.  
  62. <pre class="wp-block-code"><code>dnf -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm</code></pre>
  63.  
  64.  
  65.  
  66. <p>Install PostgreSQL 16 and create a default database in it</p>
  67.  
  68.  
  69.  
  70. <pre class="wp-block-code"><code>dnf install postgresql16 postgresql16-server
  71. /usr/pgsql-16/bin/postgresql-16-setup initdb</code></pre>
  72.  
  73.  
  74.  
  75. <p>Start the data update and migration procedure. For this:</p>
  76.  
  77.  
  78.  
  79. <ul>
  80. <li>Check cluster health and compatibility &#8211; <code>su - postgres -c '/usr/pgsql-16/bin/pg_upgrade -b /usr/pgsql-12/bin/ -B /usr/pgsql-16/bin/ -d /var/lib/pgsql/12/data/ -D /var/lib/pgsql/16/data/ -c'</code></li>
  81.  
  82.  
  83.  
  84. <li>Stop PostgreSQL &#8211; <code>systemctl stop postgresql-12.service</code></li>
  85.  
  86.  
  87.  
  88. <li>Start the update process &#8211; <code>su - postgres -c '/usr/pgsql-16/bin/pg_upgrade -b /usr/pgsql-12/bin/ -B /usr/pgsql-16/bin/ -d /var/lib/pgsql/12/data/ -D /var/lib/pgsql/16/data/'</code></li>
  89.  
  90.  
  91.  
  92. <li>Make a backup of <code>hba.conf</code> file from the previous PostgreSQL version &#8211; <code>mv /var/lib/pgsql/16/data/pg_hba.conf /var/lib/pgsql/16/data/pg_hba.conf_orig</code></li>
  93.  
  94.  
  95.  
  96. <li>Copy file <code>hba.conf</code> from the previous PostgreSQL version to the new one &#8211; <code>cp /var/lib/pgsql/12/data/pg_hba.conf /var/lib/pgsql/16/data/pg_hba.conf</code></li>
  97.  
  98.  
  99.  
  100. <li>Set the necessary permissions for the copied file &#8211; <code>chown postgres:postgres /var/lib/pgsql/16/data/pg_hba.conf</code></li>
  101.  
  102.  
  103.  
  104. <li>Boot a new version of the DBMS &#8211; <code>systemctl start postgresql-16.service</code></li>
  105.  
  106.  
  107.  
  108. <li>Disable the old version of the DBMS &#8211; <code>systemctl mask postgresql-12.service</code></li>
  109.  
  110.  
  111.  
  112. <li>Enable the use of the new DBMS version by default &#8211; <code>systemctl enable postgresql-16.service</code></li>
  113. </ul>
  114.  
  115.  
  116.  
  117. <p>Check that all databases are listed in the PostgreSQL cluster you are using. If they have all migrated correctly, you can remove the unused PSQL clusters. To do this, run the commands:</p>
  118.  
  119.  
  120.  
  121. <pre class="wp-block-code"><code>su - postgres -c '/usr/pgsql-16/bin/vacuumdb --all --analyze-in-stages'
  122. /var/lib/pgsql/delete_old_cluster.sh</code></pre>
  123.  
  124.  
  125.  
  126. <p>Also update PGPool2:</p>
  127.  
  128.  
  129.  
  130. <pre class="wp-block-code"><code>dnf remove pgpool-II pgdg-redhat-repo
  131. dnf install https://www.pgpool.net/yum/rpms/4.5/redhat/rhel-8-x86_64/pgpool-II-pg16-4.5.1-1pgdg.rhel8.x86_64.rpm</code></pre>
  132.  
  133.  
  134. <div class="wp-block-image">
  135. <figure class="aligncenter size-full"><img fetchpriority="high" decoding="async" width="2120" height="870" src="https://community.zextras.com/wp-content/uploads/2024/05/image-3.png" alt="" class="wp-image-7729" srcset="https://community.zextras.com/wp-content/uploads/2024/05/image-3.png 2120w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-300x123.png 300w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1024x420.png 1024w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-768x315.png 768w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-420x172.png 420w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1536x630.png 1536w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-2048x840.png 2048w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-500x205.png 500w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-800x328.png 800w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1280x525.png 1280w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1920x788.png 1920w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-48x20.png 48w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-90x37.png 90w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-150x62.png 150w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-200x82.png 200w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-400x164.png 400w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-600x246.png 600w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1400x575.png 1400w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1440x591.png 1440w, https://community.zextras.com/wp-content/uploads/2024/05/image-3-1600x657.png 1600w" sizes="(max-width: 2120px) 100vw, 2120px" /></figure></div><p>The post <a href="https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-rhel-8-carbonio-ce/">How to Upgrade Carbonio Community Edition to PostgreSQL 16 in RHEL 8 | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  136. <wfw:commentRss>https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-rhel-8-carbonio-ce/feed/</wfw:commentRss>
  137. <slash:comments>0</slash:comments>
  138. </item>
  139. <item>
  140. <title>How to Upgrade Carbonio Community Edition to PostgreSQL 16 in 22.04 &#124; Carbonio CE</title>
  141. <link>https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-22-04-carbonio-ce/</link>
  142. <comments>https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-22-04-carbonio-ce/#respond</comments>
  143. <dc:creator><![CDATA[Zextras]]></dc:creator>
  144. <pubDate>Mon, 06 May 2024 14:31:12 +0000</pubDate>
  145. <category><![CDATA[Admin Guide]]></category>
  146. <category><![CDATA[Installation]]></category>
  147. <category><![CDATA[Zextras Carbonio]]></category>
  148. <category><![CDATA[Configuration]]></category>
  149. <category><![CDATA[Installation & Upgrade]]></category>
  150. <category><![CDATA[Zextras Carbonio CE]]></category>
  151. <guid isPermaLink="false">https://community.zextras.com/?p=7730</guid>
  152.  
  153. <description><![CDATA[<p>The latest Carbonio CE 24.03 update adds support for PostgreSQL 16. Those who previously installed Carbonio on Ubuntu 22.04 using PostgreSQL 12 were faced with the need to update the distribution and version of PostgreSQL they were using to the current version. In this instruction, we will tell you how to do this.</p>
  154. <p>The post <a href="https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-22-04-carbonio-ce/">How to Upgrade Carbonio Community Edition to PostgreSQL 16 in 22.04 | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  155. <content:encoded><![CDATA[<p>The latest Carbonio CE 24.03 update adds support for PostgreSQL 16. Those who previously installed Carbonio on Ubuntu 22.04 using PostgreSQL 12 were faced with the need to update the distribution and version of PostgreSQL they were using to the current version. In this instruction, we will tell you how to do this.</p>
  156.  
  157.  
  158.  
  159. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  160.  
  161.  
  162.  
  163. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-bbf5467a4c7351e234f3a0b76ad64537" style="color:#00506d">Updating PostgreSQL on Ubuntu 22.04</h2>
  164.  
  165.  
  166.  
  167. <p>Set keys for PostgreSQL 16 repository:</p>
  168.  
  169.  
  170.  
  171. <pre class="wp-block-code"><code>wget -O- "https://www.postgresql.org/media/keys/ACCC4CF8.asc" | \
  172. gpg --dearmor | sudo tee /usr/share/keyrings/postgres.gpg &gt; \
  173. /dev/null
  174.  
  175. chmod 644 /usr/share/keyrings/postgres.gpg
  176. sed -i 's/deb/deb &#91;signed-by=\/usr\/share\/keyrings\/postgres.gpg] /' /etc/apt/sources.list.d/pgdg.list</code></pre>
  177.  
  178.  
  179.  
  180. <p>After adding the repository, update the list of available packages and update to PostgreSQL 16</p>
  181.  
  182.  
  183.  
  184. <pre class="wp-block-code"><code>apt update
  185. apt -y install postgresql-16</code></pre>
  186.  
  187.  
  188.  
  189. <p>Migrate data from PostgreSQL 12 to PostgreSQL 16. To do this:</p>
  190.  
  191.  
  192.  
  193. <ul>
  194. <li>Check the list of installed clusters PostgreSQL &#8211; <code>pg_lsclusters</code></li>
  195.  
  196.  
  197.  
  198. <li>Stop PostgreSQL &#8211; <code>systemctl stop postgresql</code></li>
  199.  
  200.  
  201.  
  202. <li>Rename the default PostgreSQL cluster created &#8211;<strong> </strong><code>pg_renamecluster 16 main main_pristine</code></li>
  203.  
  204.  
  205.  
  206. <li>Upgrade your cluster to version 16 &#8211; <code>pg_upgradecluster 12 main</code></li>
  207.  
  208.  
  209.  
  210. <li>Boot PostgreSQL &#8211; <code>systemctl start postgresql</code></li>
  211.  
  212.  
  213.  
  214. <li>Verify that the PostgreSQL cluster has become the default &#8211; <code>pg_lsclusters</code></li>
  215. </ul>
  216.  
  217.  
  218.  
  219. <p>Verify that all databases have moved to the new cluster.</p>
  220.  
  221.  
  222.  
  223. <pre class="wp-block-code"><code>su - postgres
  224. psql
  225. \l</code></pre>
  226.  
  227.  
  228.  
  229. <p>If at any stage of the instructions an error occurred due to the port being busy and the database migration did not take place, please refer to the section “<strong>Problems Updating PostgreSQL</strong>”</p>
  230.  
  231.  
  232.  
  233. <p>If the cluster used is PostgreSQL 16 and it displays a complete list of databases, the migration was successful and you can delete unused clusters.</p>
  234.  
  235.  
  236.  
  237. <ul>
  238. <li>Deleting PostgreSQL 12 cluster &#8211; <code>pg_dropcluster 12 main --stop</code></li>
  239.  
  240.  
  241.  
  242. <li>Deleting PostgreSQL 16 reserve cluster &#8211; <code>pg_dropcluster 16 main_pristine --stop</code></li>
  243. </ul>
  244.  
  245.  
  246.  
  247. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  248.  
  249.  
  250.  
  251. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-159632bc77fdf9e9179a38e8cc71b3e9" style="color:#00506d">Problems Updating PostgreSQL</h2>
  252.  
  253.  
  254.  
  255. <p>During the PostgreSQL update process, an error may occur due to a port conflict.</p>
  256.  
  257.  
  258.  
  259. <pre class="wp-block-code"><code>Error: Port conflict: another instance is already running on /var/run/postgresql with port 5432
  260. Error: Could not start target cluster</code></pre>
  261.  
  262.  
  263.  
  264. <p>This error is reproduced even if the PostgreSQL service is stopped. If you ignore this error, all databases will be lost when migrating to a new version of PostgreSQL.</p>
  265.  
  266.  
  267.  
  268. <p>To avoid this and update, you need to change the port on which PostgreSQL runs. For this:</p>
  269.  
  270.  
  271.  
  272. <ul>
  273. <li>Change parameter <code>port = 5432</code> to the <code>port = 5433</code> in file <code>/etc/postgresql/12/main/postgresql.conf</code></li>
  274.  
  275.  
  276.  
  277. <li>Stop PostgreSQL service &#8211; <code>systemctl stop postgresql.service</code></li>
  278.  
  279.  
  280.  
  281. <li>Verify that no clusters are running &#8211; <code>pg_lsclusters</code>.</li>
  282.  
  283.  
  284.  
  285. <li>In case any cluster is running execute <code>pg_ctlcluster 12 main stop command</code> (replacing the cluster name and version with the ones that are used in your infrastructure)</li>
  286.  
  287.  
  288.  
  289. <li>Run again <code>pg_upgradecluster</code></li>
  290.  
  291.  
  292.  
  293. <li>Change the used port to 5432 in the file <code>/etc/postgresql/16/main/postgresql.conf</code>.</li>
  294. </ul>
  295.  
  296.  
  297.  
  298. <p>Reboot PostgreSQL &#8211; <code>systemctl restart postgresql.service</code></p><p>The post <a href="https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-22-04-carbonio-ce/">How to Upgrade Carbonio Community Edition to PostgreSQL 16 in 22.04 | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  299. <wfw:commentRss>https://community.zextras.com/how-to-upgrade-carbonio-community-edition-to-postgresql-16-in-22-04-carbonio-ce/feed/</wfw:commentRss>
  300. <slash:comments>0</slash:comments>
  301. </item>
  302. <item>
  303. <title>How to Upgrade Carbonio Community Edition to PostgreSQL 16 in Ubuntu 20.04 &#124; Carbonio CE</title>
  304. <link>https://community.zextras.com/recommendations-for-upgrading-to-postgresql-16-on-carbonio-community-edition-carbonio-ce/</link>
  305. <comments>https://community.zextras.com/recommendations-for-upgrading-to-postgresql-16-on-carbonio-community-edition-carbonio-ce/#respond</comments>
  306. <dc:creator><![CDATA[Zextras]]></dc:creator>
  307. <pubDate>Thu, 02 May 2024 13:08:44 +0000</pubDate>
  308. <category><![CDATA[Admin Guide]]></category>
  309. <category><![CDATA[Installation]]></category>
  310. <category><![CDATA[Zextras Carbonio]]></category>
  311. <category><![CDATA[Configuration]]></category>
  312. <category><![CDATA[Installation & Upgrade]]></category>
  313. <category><![CDATA[Zextras Carbonio CE]]></category>
  314. <guid isPermaLink="false">https://community.zextras.com/?p=7724</guid>
  315.  
  316. <description><![CDATA[<p>The latest Carbonio CE 24.03 update adds support for PostgreSQL 16. Those who previously installed Carbonio on Ubuntu 20.04 using PostgreSQL 12 were faced with the need to update the distribution and version of PostgreSQL they were using to the current version. In this instruction, we will tell you how to do this.</p>
  317. <p>The post <a href="https://community.zextras.com/recommendations-for-upgrading-to-postgresql-16-on-carbonio-community-edition-carbonio-ce/">How to Upgrade Carbonio Community Edition to PostgreSQL 16 in Ubuntu 20.04 | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  318. <content:encoded><![CDATA[<p>The latest Carbonio CE 24.03 update adds support for PostgreSQL 16. Those who previously installed Carbonio on Ubuntu 20.04 using PostgreSQL 12 were faced with the need to update the distribution and version of PostgreSQL they were using to the current version. In this instruction, we will tell you how to do this.</p>
  319.  
  320.  
  321.  
  322. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  323.  
  324.  
  325.  
  326. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-dfe0fe34086e89c50517e661c4109d12" style="color:#00506d">Updating PostgreSQL on Ubuntu 20.04</h2>
  327.  
  328.  
  329.  
  330. <p>If you intend to upgrade PostgreSQL before upgrading to the Ubuntu 22.04 version, the upgrade process will be different from the standard one.</p>
  331.  
  332.  
  333.  
  334. <p>First of all, you will need to install the appropriate repository and the key for it:</p>
  335.  
  336.  
  337.  
  338. <pre class="wp-block-code"><code>sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" &gt; /etc/apt/sources.list.d/pgdg.list'
  339. wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -</code></pre>
  340.  
  341.  
  342.  
  343. <p>After adding the repository, update the list of available packages and update to PostgreSQL 16</p>
  344.  
  345.  
  346.  
  347. <pre class="wp-block-code"><code>apt update
  348. apt -y install postgresql-16
  349. </code></pre>
  350.  
  351.  
  352.  
  353. <p>Migrate data from PostgreSQL 12 to PostgreSQL 16. To do this:</p>
  354.  
  355.  
  356.  
  357. <ul>
  358. <li>Check the list of installed PostgreSQL clusters &#8211; <strong>pg_lsclusters</strong></li>
  359.  
  360.  
  361.  
  362. <li>Stop PostgreSQL &#8211; <code>systemctl stop postgresql</code></li>
  363.  
  364.  
  365.  
  366. <li>Rename the default PostgreSQL cluster created &#8211; <code>pg_renamecluster 16 main main_pristine</code></li>
  367.  
  368.  
  369.  
  370. <li>Upgrade your cluster to version 16 &#8211; <code>pg_upgradecluster 12 main</code></li>
  371.  
  372.  
  373.  
  374. <li>Boot PostgreSQL &#8211; <code>systemctl start postgresql</code></li>
  375.  
  376.  
  377.  
  378. <li>Verify that the PostgreSQL cluster has become the default &#8211; <code>pg_lsclusters</code></li>
  379. </ul>
  380.  
  381.  
  382.  
  383. <p>Verify that all databases have moved to the new cluster.</p>
  384.  
  385.  
  386.  
  387. <pre class="wp-block-code"><code>su - postgres
  388. psql
  389. \l</code></pre>
  390.  
  391.  
  392.  
  393. <p>If at any stage of the instructions an error occurred due to the port being busy and the database migration did not take place, please refer to the section “<strong>Problems Updating PostgreSQL</strong>”</p>
  394.  
  395.  
  396. <div class="wp-block-image">
  397. <figure class="aligncenter size-full"><img decoding="async" width="2134" height="873" src="https://community.zextras.com/wp-content/uploads/2024/05/image-2.png" alt="" class="wp-image-7728" srcset="https://community.zextras.com/wp-content/uploads/2024/05/image-2.png 2134w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-300x123.png 300w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1024x419.png 1024w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-768x314.png 768w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-420x172.png 420w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1536x628.png 1536w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-2048x838.png 2048w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-500x205.png 500w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-800x327.png 800w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1280x524.png 1280w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1920x785.png 1920w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-48x20.png 48w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-90x37.png 90w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-150x61.png 150w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-200x82.png 200w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-400x164.png 400w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-600x245.png 600w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1400x573.png 1400w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1440x589.png 1440w, https://community.zextras.com/wp-content/uploads/2024/05/image-2-1600x655.png 1600w" sizes="(max-width: 2134px) 100vw, 2134px" /></figure></div>
  398.  
  399.  
  400. <p>If the cluster used is PostgreSQL 16 and it displays a complete list of databases, the migration was successful and you can delete unused clusters.</p>
  401.  
  402.  
  403.  
  404. <ul>
  405. <li>Delete a cluster PostgreSQL 12 &#8211; <code>pg_dropcluster 12 main --stop</code></li>
  406.  
  407.  
  408.  
  409. <li>Removing a backup cluster PostgreSQL 16 &#8211; <code>pg_dropcluster 16 main_pristine --stop</code></li>
  410. </ul>
  411.  
  412.  
  413.  
  414. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  415.  
  416.  
  417.  
  418. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-159632bc77fdf9e9179a38e8cc71b3e9" style="color:#00506d">Problems Updating PostgreSQL</h2>
  419.  
  420.  
  421.  
  422. <p>During the PostgreSQL update process, an error may occur due to a port conflict.</p>
  423.  
  424.  
  425.  
  426. <pre class="wp-block-code"><code>Error: Port conflict: another instance is already running on /var/run/postgresql with port 5432
  427. Error: Could not start target cluster</code></pre>
  428.  
  429.  
  430.  
  431. <p>This error is reproduced even if the PostgreSQL service is stopped. If you ignore this error, all databases will be lost when migrating to a new version of PostgreSQL.</p>
  432.  
  433.  
  434.  
  435. <p>To avoid this and update, you need to change the port on which PostgreSQL runs. For this:</p>
  436.  
  437.  
  438.  
  439. <ul>
  440. <li>Change parameter <code>port = 5432</code> to the <code>port = 5433</code> in file <code>/etc/postgresql/12/main/postgresql.conf</code></li>
  441.  
  442.  
  443.  
  444. <li>Stop PostgreSQL service &#8211; <code>systemctl stop postgresql.service</code></li>
  445.  
  446.  
  447.  
  448. <li>Verify that no clusters are running &#8211; <code>pg_lsclusters</code>.</li>
  449.  
  450.  
  451.  
  452. <li>In case any cluster is running execute <code>pg_ctlcluster 12 main stop command</code> (replacing the cluster name and version with the ones that are used in your infrastructure)</li>
  453.  
  454.  
  455.  
  456. <li>Run again <code>pg_upgradecluster</code></li>
  457.  
  458.  
  459.  
  460. <li>Change the used port to 5432 in the file <code>/etc/postgresql/16/main/postgresql.conf</code>.</li>
  461. </ul>
  462.  
  463.  
  464.  
  465. <p>Reboot PostgreSQL &#8211; <code>systemctl restart postgresql.service</code></p><p>The post <a href="https://community.zextras.com/recommendations-for-upgrading-to-postgresql-16-on-carbonio-community-edition-carbonio-ce/">How to Upgrade Carbonio Community Edition to PostgreSQL 16 in Ubuntu 20.04 | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  466. <wfw:commentRss>https://community.zextras.com/recommendations-for-upgrading-to-postgresql-16-on-carbonio-community-edition-carbonio-ce/feed/</wfw:commentRss>
  467. <slash:comments>0</slash:comments>
  468. </item>
  469. <item>
  470. <title>Organize Your Work with Tasks in Carbonio Community Edition &#124; Carbonio CE</title>
  471. <link>https://community.zextras.com/organize-your-work-with-tasks-in-carbonio-community-edition-carbonio-ce/</link>
  472. <dc:creator><![CDATA[Zextras]]></dc:creator>
  473. <pubDate>Mon, 08 Apr 2024 08:21:34 +0000</pubDate>
  474. <category><![CDATA[User Guide]]></category>
  475. <category><![CDATA[Zextras Carbonio]]></category>
  476. <category><![CDATA[Zextras Carbonio CE]]></category>
  477. <guid isPermaLink="false">https://community.zextras.com/?p=7632</guid>
  478.  
  479. <description><![CDATA[<p>In this article, we will talk about how to use Carbonio Tasks for work purposes.</p>
  480. <p>The post <a href="https://community.zextras.com/organize-your-work-with-tasks-in-carbonio-community-edition-carbonio-ce/">Organize Your Work with Tasks in Carbonio Community Edition | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  481. <content:encoded><![CDATA[<p><br>Carbonio Tasks is a new module that appeared in Carbonio in the 23.11 update. It allows you to add work tasks and their descriptions to the Carbonio web client to receive regular reminders about them. In this article, we will talk about how to use Carbonio Tasks for work purposes.</p>
  482.  
  483.  
  484.  
  485. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  486.  
  487.  
  488.  
  489. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="When-is-worth-using-Split-Domain-?" style="color:#00506d">Carbonio Tasks</h2>
  490.  
  491.  
  492.  
  493. <p>Carbonio Tasks is represented in the Carbonio web client as a separate tab that displays all user-added tasks.</p>
  494.  
  495.  
  496.  
  497. <figure class="wp-block-image size-large"><img decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/02/image-2-1024x576.png" alt="" class="wp-image-7636" srcset="https://community.zextras.com/wp-content/uploads/2024/02/image-2-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/02/image-2-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  498.  
  499.  
  500.  
  501. <p>To create a new task, while on the Carbonio Tasks tab, click on the “Create” smart button.</p>
  502.  
  503.  
  504.  
  505. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/02/image-3-1024x576.png" alt="" class="wp-image-7637" srcset="https://community.zextras.com/wp-content/uploads/2024/02/image-3-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/02/image-3-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  506.  
  507.  
  508.  
  509. <p>In the window that appears, you can specify the name of the task, as well as its description and priority. Also, if desired, the user can set task reminders.</p>
  510.  
  511.  
  512.  
  513. <p>If you set a one-time reminder, it will appear only once at the specified time. In case you set the reminder to appear every time you log in, it will appear every time you log in for the entire day for which the reminder is set.</p>
  514.  
  515.  
  516. <div class="wp-block-image">
  517. <figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/02/image-4-1024x576.png" alt="" class="wp-image-7638" srcset="https://community.zextras.com/wp-content/uploads/2024/02/image-4-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/02/image-4-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>
  518.  
  519.  
  520. <p>The notification displayed shows the priority of the task and its name. By clicking on the checkmark to the right of the name, you can mark the task as completed.</p>
  521.  
  522.  
  523. <div class="wp-block-image">
  524. <figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/02/image-5-1024x576.png" alt="" class="wp-image-7639" srcset="https://community.zextras.com/wp-content/uploads/2024/02/image-5-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/02/image-5-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>
  525.  
  526.  
  527. <p>To close the notification, click the “Dismiss” button. If the notification was one-time, after that it will disappear and will no longer be displayed. If the notification is regular, it will appear again the next time you log in.</p>
  528.  
  529.  
  530.  
  531. <p>If the deadline indicated in the task has passed and the user has not logged into Carbonio at that time, he will receive a notification only when he logs into the Carbonio Tasks section. The task will move to the overdue section, and a counter of missed tasks will also appear on the Carbonio Tasks icon.</p>
  532.  
  533.  
  534.  
  535. <p>Overdue tasks are marked with a yellow exclamation point, and the reminder time is highlighted in red.</p>
  536.  
  537.  
  538. <div class="wp-block-image">
  539. <figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/02/image-6-1024x576.png" alt="" class="wp-image-7640" srcset="https://community.zextras.com/wp-content/uploads/2024/02/image-6-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/02/image-6-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>
  540.  
  541.  
  542. <p>Regular and overdue tasks in Carbonio Tasks can be deleted, edited, or marked as completed. This can be done in three ways: by hovering the mouse over the task so that icons are displayed in the upper right corner, by right-clicking on it and selecting actions in the context menu, or by left-clicking on the task and selecting the desired action in the task information</p>
  543.  
  544.  
  545.  
  546. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/02/image-7-1024x576.png" alt="" class="wp-image-7641" srcset="https://community.zextras.com/wp-content/uploads/2024/02/image-7-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/02/image-7-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  547.  
  548.  
  549.  
  550. <p>When editing a task, the task creation window will re-open, where you can re-set the necessary parameters for it.</p>
  551.  
  552.  
  553.  
  554. <p>Carbonio Tasks has the most simple and intuitive interface, and at the same time allows you to competently organize tracking of work tasks and receive timely reminders about them.</p><p>The post <a href="https://community.zextras.com/organize-your-work-with-tasks-in-carbonio-community-edition-carbonio-ce/">Organize Your Work with Tasks in Carbonio Community Edition | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  555. </item>
  556. <item>
  557. <title>How To Deploy a Collaborative Private E-mail Server Carbonio Community Edition for Free Using Ubuntu 22.04LTS &#124; Carbonio CE</title>
  558. <link>https://community.zextras.com/how-to-deploy-a-collaborative-private-e-mail-server-carbonio-community-edition-for-free-using-ubuntu-22-04lts-carbonio-ce/</link>
  559. <comments>https://community.zextras.com/how-to-deploy-a-collaborative-private-e-mail-server-carbonio-community-edition-for-free-using-ubuntu-22-04lts-carbonio-ce/#comments</comments>
  560. <dc:creator><![CDATA[Shariful Islam]]></dc:creator>
  561. <pubDate>Tue, 02 Apr 2024 11:51:56 +0000</pubDate>
  562. <category><![CDATA[Admin Guide]]></category>
  563. <category><![CDATA[Installation]]></category>
  564. <category><![CDATA[Zextras Carbonio]]></category>
  565. <category><![CDATA[Configuration]]></category>
  566. <category><![CDATA[Installation & Upgrade]]></category>
  567. <category><![CDATA[Zextras Carbonio CE]]></category>
  568. <guid isPermaLink="false">https://community.zextras.com/?p=7692</guid>
  569.  
  570. <description><![CDATA[<p>"Discover the seamless integration of Carbonio Community Edition (CE) with Ubuntu 22.04 LTS, a pivotal advancement in Carbonio CE.</p>
  571. <p>The post <a href="https://community.zextras.com/how-to-deploy-a-collaborative-private-e-mail-server-carbonio-community-edition-for-free-using-ubuntu-22-04lts-carbonio-ce/">How To Deploy a Collaborative Private E-mail Server Carbonio Community Edition for Free Using Ubuntu 22.04LTS | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  572. <content:encoded><![CDATA[<p>Integrating Carbonio Community Edition (CE) with Ubuntu 22.04LTS represents a game-changer for open-source email and collaboration platforms. This partnership brings unmatched stability and performance optimization, making Carbonio CE more accessible and user-friendly across diverse IT infrastructures. With expanding OS support, Carbonio CE is becoming the go-to solution for businesses, enterprises, and privacy-focused individuals seeking a reliable collaboration tool.</p>
  573.  
  574.  
  575.  
  576. <p>This article showcases the streamlined installation process of Carbonio CE on Ubuntu 22.04 LTS, designed to break down technical barriers for users. Plus, we&#8217;re offering an exclusive surprise to elevate your Carbonio CE experience further. Discover how this powerful duo can enhance your collaboration efforts, ensuring security, scalability, and efficiency.</p>
  577.  
  578.  
  579.  
  580. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  581.  
  582.  
  583.  
  584. <p>Ubuntu 22.04 LTS and PostgreSQL-16 boost Carbonio CE more than ever. Let&#8217;s take a quick look at some key factors:</p>
  585.  
  586.  
  587.  
  588. <p><strong>Security:</strong></p>
  589.  
  590.  
  591.  
  592. <p>Regular Security Updates: Ubuntu 22.04 LTS offers five years of guaranteed security updates, ensuring the system is protected against the latest threats, while PostgreSQL 16 comes with robust security features and regular patches.<br>Enhanced Data Encryption: PostgreSQL 16 introduces advanced data encryption capabilities, providing an additional layer of security for sensitive data stored in databases.</p>
  593.  
  594.  
  595.  
  596. <p><strong>Performance:</strong></p>
  597.  
  598.  
  599.  
  600. <p>Optimized Resource Usage: Ubuntu 22.04 LTS is known for its efficient use of system resources, enhancing application performance. PostgreSQL 16 further optimizes data processing speeds with improvements in indexing and partitioning.<br>Advanced Query Processing: PostgreSQL 16 features smarter query planning and execution, significantly reducing response times for complex data requests.<br>Improved Parallel Processing: Enhancements in parallel query execution in PostgreSQL 16 ensure better utilization of system resources, speeding up data analysis and retrieval tasks.</p>
  601.  
  602.  
  603.  
  604. <p><strong>Stability:</strong></p>
  605.  
  606.  
  607.  
  608. <p>Long-Term Support (LTS): With Ubuntu 22.04 being an LTS release, users receive a stable operating environment with support and updates over an extended period, reducing the risk of compatibility issues.<br>Proven Database Reliability: PostgreSQL&#8217;s reputation for reliability is bolstered in version 16 with improvements in fail-over, recovery processes, and system diagnostics, ensuring database integrity and uptime.<br>Consistent Performance Under Load: Both Ubuntu 22.04 and PostgreSQL 16 demonstrate stable performance under varying loads, making them suitable for applications with fluctuating demand patterns.</p>
  609.  
  610.  
  611.  
  612. <p>Adopting Ubuntu 22.04 LTS and PostgreSQL 16 for Carbonio CE not only secures your digital assets but also ensures they run smoothly and reliably, even under demanding conditions, making it an ideal combination for modern, data-driven applications.</p>
  613.  
  614.  
  615.  
  616. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  617.  
  618.  
  619.  
  620. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-721f69303f35224c3ffc3f059a52d9b7" style="color:#00506d"><strong>Pre-installation preparation:</strong></h2>
  621.  
  622.  
  623.  
  624. <p class="has-black-color has-text-color has-link-color wp-elements-99507acf2f12201fffb76a01c22efb42"><br>For a comprehensive understanding and to ensure you&#8217;re well-prepared before starting the installation process, it&#8217;s highly recommended to consult the official Carbonio CE documentation. This resource offers detailed guidance, best practices, and advisory information crucial for a successful setup. You can access the documentation at the <a href="https://docs.zextras.com/carbonio-ce/html/basics/general.html"><strong>official website</strong></a>. Delving into these materials will equip you with the necessary insights and strategies to effectively deploy Carbonio CE on your system, optimizing your experience with Ubuntu 22.04 LTS and PostgreSQL-16.</p>
  625.  
  626.  
  627.  
  628. <p class="has-black-color has-text-color has-background has-link-color wp-elements-64d91c4f519038d03d3c1342d8eb9fa8" style="background-color:#fd830b"><strong>FAQ: IPv6</strong><br><br>Carbonio CE does not support IPv6. So it is advised to remove or disable IPv6 functionalities from the Carbonio CE.<br>a) Clean all IPv6 reference from /etc/hosts<br>b) Disable IPv6 in your system (Ubuntu 20.04LTS/22.04LTS)</p>
  629.  
  630.  
  631.  
  632. <p class="has-black-color has-text-color has-link-color wp-elements-e57b51621719a64de2b37b2c08b86ece">a) Clean all IPv6 reference from /etc/hosts<br><strong>&gt; /etc/hosts</strong><br>b) Disable IPv6 in your system (Ubuntu 20.04LTS/22.04LTS) by executing:<br><strong>sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1 &amp;&amp; sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1</strong><br>c) Update and upgrade all packages before starting installation.<br>d) While working on the installation, it&#8217;s strongly recommended to utilize tools like tmux or screen. These powerful terminal multiplexers provide several advantages like:<br>I. Session Persistence: Maintain active terminal sessions through interruptions, allowing for seamless re-connection without progress loss.<br>II.Multiple Windows: Manage multiple terminal sessions in one window, ideal for simultaneously monitoring logs and executing commands.<br>III.Session Sharing: Share sessions with others for collaborative efforts or installation assistance.<br>IV.Detachable Sessions: Start a session, detach, and reattach as needed, offering flexibility during extended installations or configurations.</p>
  633.  
  634.  
  635.  
  636. <div style="height:53px" aria-hidden="true" class="wp-block-spacer"></div>
  637.  
  638.  
  639.  
  640. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-9e634897485a7002a16543575bc565ad" style="color:#00506d">Basic Hardware Requirement:</h2>
  641.  
  642.  
  643.  
  644. <p class="has-medium-font-size">As Carbonio CE is platform agnostic, you can install it in both physical or cloud platform. Though I assume you already know the requirements, still I am sharing then for your reference:</p>
  645.  
  646.  
  647.  
  648. <p>Intel or AMD 64-bit CPU 1.5 GHz<br>8 GB of RAM<br>40 GB of disk space for the operating system and Carbonio CE<br>Internet connectivity<br>FQDN (fully qualified domain name), let’s say https://mail.example.com<br>Valid A &amp; MX records for server and domain<br>A clean installation of the operating system*</p>
  649.  
  650.  
  651.  
  652. <p>Now some additional suggestions based on these requirements:.</p>
  653.  
  654.  
  655.  
  656. <ol>
  657. <li>What ever amount of RAM you are going to use, try to avoid using single RAM. To avoid single point of failure always use 2 RAMs, like 4+4 or 8+8 or 16 +16</li>
  658.  
  659.  
  660.  
  661. <li>Keep OS partition separate from the Carbonio CE system partition (/opt/zextras)</li>
  662.  
  663.  
  664.  
  665. <li>Use advanced partitioning technique (i.e LVM etc.)</li>
  666.  
  667.  
  668.  
  669. <li>Use raid at Hardware level to create fault tolerance.</li>
  670.  
  671.  
  672.  
  673. <li>You server should have dual network interface again to avoid single point of failure. Later you can create bonding or teaming to enhance fault tolerance and Bandwidth capacity</li>
  674. </ol>
  675.  
  676.  
  677.  
  678. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  679.  
  680.  
  681.  
  682. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-c47a4911164c6793e6b4f42ebf357337" style="color:#00506d">The Installation Procedures:</h2>
  683.  
  684.  
  685.  
  686. <p>1. I assume you have a domain (example.com) with all necessary DNS records (A, MX, TXT, SPF, DMARC etc.) published. But if you do not have published DNS records then you can use DNSMASQ also though it is not at all recommended for production environment.   </p>
  687.  
  688.  
  689.  
  690. <p>2. Fill out this form (<a href="https://www.zextras.com/carbonio-community-edition/#discoverproduct" target="_blank" rel="noopener" title=""><strong>https://www.zextras.com/carbonio-community-edition/#discoverproduct</strong></a>) to get the script to configure zextras repository for your system. Current script is compatible for both Ubuntu 20.04LTS and Ubuntu 22.04LTS. </p>
  691.  
  692.  
  693.  
  694. <p class="has-background" style="background-color:#fd830b"><strong>FAQ: Carbonio CE Installation Script</strong><br><br>You do not need multiple scripts from Ubuntu. For your convenience, we made a common script that works for both Ubuntu 20.04LTS and Ubuntu 22.04LTS. So fill out the form ( and execute the script without any worry of which version of Ubuntu (20/22) you are using <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  695.  
  696.  
  697.  
  698. <p>3. After adding the script clean up the apt cache, update the repo list and upgrade all available packages:</p>
  699.  
  700.  
  701.  
  702. <pre class="wp-block-code"><code>root@vmi1500650:~# apt clean all
  703. root@vmi1500650:~# apt update
  704. Hit:1 http://asi-fs-n.contabo.net/ubuntu jammy InRelease
  705. Hit:2 http://asi-fs-n.contabo.net/ubuntu jammy-updates InRelease
  706. Hit:3 http://asi-fs-n.contabo.net/ubuntu jammy-backports InRelease
  707. Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease
  708. Hit:5 https://repo.zextras.io/release/ubuntu jammy InRelease
  709. Reading package lists... Done
  710. Building dependency tree... Done
  711. Reading state information... Done
  712. 1 package can be upgraded. Run 'apt list --upgradable' to see it.
  713. root@vmi1500650:~# apt upgrade
  714. Reading package lists... Done
  715. Building dependency tree... Done
  716. Reading state information... Done
  717. Calculating upgrade... Done
  718. The following packages were automatically installed and are no longer required:
  719.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  720. Use 'apt autoremove' to remove them.
  721. The following packages have been kept back:
  722.  coreutils
  723. 0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
  724. root@vmi1500650:~#</code></pre>
  725.  
  726.  
  727.  
  728. <p>4. Set hostname of your server</p>
  729.  
  730.  
  731.  
  732. <pre class="wp-block-code"><code>root@mail:~# hostnamectl set-hostname mail.sampleserver.xyz</code></pre>
  733.  
  734.  
  735.  
  736. <p>5. Modify /etc/hosts file.</p>
  737.  
  738.  
  739.  
  740. <pre class="wp-block-code"><code>root@mail:~# &gt; /etc/hosts
  741. root@mail:~# echo "127.0.0.1 localhost" &gt;&gt; /etc/hosts
  742. root@mail:~# echo "$(hostname -i)  $(hostname -f)  $(hostname -s)" &gt;&gt; /etc/hosts
  743. root@mail:~#
  744. root@mail:~# cat /etc/hosts
  745. 127.0.0.1 localhost
  746. 161.97.99.169  mail.sampleserver.xyz  mail
  747. root@mail:~#</code></pre>
  748.  
  749.  
  750.  
  751. <p>Also disable IPv6:</p>
  752.  
  753.  
  754.  
  755. <pre class="wp-block-code"><code>root@mail:~# sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1 &amp;&amp; sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
  756. net.ipv6.conf.all.disable_ipv6 = 1
  757. net.ipv6.conf.default.disable_ipv6 = 1
  758. root@mail:~#</code></pre>
  759.  
  760.  
  761.  
  762. <p>6. Set your preferred timezone</p>
  763.  
  764.  
  765.  
  766. <pre class="wp-block-code"><code>root@mail:~# timedatectl set-timezone Asia/Dhaka
  767. root@mail:~#
  768. root@mail:~# timedatectl
  769.               Local time: Fri 2024-03-29 18:57:29 +06
  770.           Universal time: Fri 2024-03-29 12:57:29 UTC
  771.                 RTC time: Fri 2024-03-29 12:57:29
  772.                Time zone: Asia/Dhaka (+06, +0600)
  773. System clock synchronized: yes
  774.              NTP service: active
  775.          RTC in local TZ: no
  776. root@mail:~#</code></pre>
  777.  
  778.  
  779.  
  780. <p>7. Now we are going to install PostgreSQL-16. </p>
  781.  
  782.  
  783.  
  784. <p class="has-background" style="background-color:#fd830b"><strong>FAQ: Postgresql-12 or Postgresql-16?</strong><br><br>you should definitely use PostgreSQL-16 for your Carbonio CE setup to ensure security and take advantage of any new features or improvements that come with this version. Always ensure to check the compatibility and support documentation provided by Zextras for any specific requirements or recommendations regarding PostgreSQL versions.</p>
  785.  
  786.  
  787.  
  788. <pre class="wp-block-code"><code>root@mail:~# sudo sh -c "echo 'deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main' &gt; /etc/apt/sources.list.d/pgdg.list"
  789. root@mail:~# wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
  790. Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
  791. OK
  792. root@mail:~# apt clean all
  793. root@mail:~# apt update
  794. Hit:1 http://asi-fs-n.contabo.net/ubuntu jammy InRelease
  795. Hit:2 http://asi-fs-n.contabo.net/ubuntu jammy-updates InRelease
  796. Hit:3 http://asi-fs-n.contabo.net/ubuntu jammy-backports InRelease
  797. Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease
  798. Hit:5 https://repo.zextras.io/release/ubuntu jammy InRelease
  799. Get:6 https://apt.postgresql.org/pub/repos/apt jammy-pgdg InRelease &#91;123 kB]
  800. Get:7 https://apt.postgresql.org/pub/repos/apt jammy-pgdg/main amd64 Packages &#91;299 kB]
  801. Fetched 422 kB in 3s (139 kB/s)
  802. Reading package lists... Done
  803. Building dependency tree... Done
  804. Reading state information... Done
  805. 1 package can be upgraded. Run 'apt list --upgradable' to see it.
  806. W: https://apt.postgresql.org/pub/repos/apt/dists/jammy-pgdg/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
  807. N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'https://apt.postgresql.org/pub/repos/apt jammy-pgdg InRelease' doesn't support architecture 'i386'
  808. root@mail:~#
  809. root@mail:~# apt install postgresql-16 -y
  810. Reading package lists... Done
  811. Building dependency tree... Done
  812. Reading state information... Done
  813. The following packages were automatically installed and are no longer required:
  814.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  815. Use 'apt autoremove' to remove them.
  816. The following additional packages will be installed:
  817.  libcommon-sense-perl libjson-perl libjson-xs-perl libllvm15 libpq5 libsensors-config libsensors5 libtypes-serialiser-perl
  818.  libxslt1.1 postgresql-client-16 postgresql-client-common postgresql-common ssl-cert sysstat
  819. Suggested packages:
  820. ............................................
  821. creating configuration files ... ok
  822. running bootstrap script ... ok
  823. performing post-bootstrap initialization ... ok
  824. syncing data to disk ... ok
  825. Processing triggers for man-db (2.10.2-1) ...
  826. Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
  827. root@mail:~#
  828. </code></pre>
  829.  
  830.  
  831.  
  832. <p>8. Modify PostgreSQL DB</p>
  833.  
  834.  
  835.  
  836. <p>check the postgresql config file:</p>
  837.  
  838.  
  839.  
  840. <pre class="wp-block-code"><code>vi /etc/postgresql/16/main/pg_hba.conf<br>&#91;find]<br>#IPv4 local connections:<br>host    all             all             127.0.0.1/32            ident<br><br>&#91;Replace with]<br>#IPv4 local connections:<br>host    all             all             127.0.0.1/32            md5<br><br>systemctl reload postgresql</code></pre>
  841.  
  842.  
  843.  
  844. <p>Create ROLE and DATABASE in postgres.</p>
  845.  
  846.  
  847.  
  848. <pre class="wp-block-code"><code>root@mail:~# read -s -p "Password for carbonio_adm role: " DB_ADM_PWD
  849. Password for carbonio_adm role:
  850. root@mail:~#
  851. root@mail:~# sudo su - postgres -c "psql --command=\"CREATE ROLE carbonio_adm WITH LOGIN SUPERUSER ENCRYPTED PASSWORD '${DB_ADM_PWD}';\""
  852. CREATE ROLE
  853. root@mail:~#
  854. root@mail:~# su - postgres -c "psql --command=\"CREATE DATABASE carbonio_adm owner carbonio_adm;\""
  855. CREATE DATABASE
  856. root@mail:~#</code></pre>
  857.  
  858.  
  859.  
  860. <p>9. Install Carbonio CE Packages. </p>
  861.  
  862.  
  863.  
  864. <p>Before installing packages, please check the <a href="https://docs.zextras.com/carbonio-ce/html/index.html" target="_blank" rel="noopener" title=""><strong>official documentations</strong></a> for the latest information about packages.</p>
  865.  
  866.  
  867.  
  868. <pre class="wp-block-code"><code>root@mail:~# apt install -y service-discover-server \
  869. carbonio-directory-server carbonio-files-db carbonio-mailbox-db \
  870. carbonio-docs-connector-db carbonio-tasks-db carbonio-proxy \
  871. carbonio-webui carbonio-files-ui carbonio-tasks-ui \
  872. carbonio-files-public-folder-ui carbonio-user-management \
  873. carbonio-mta carbonio-appserver carbonio-storages-ce \
  874. carbonio-files-ce carbonio-preview-ce carbonio-docs-connector-ce \
  875. carbonio-tasks-ce carbonio-docs-editor carbonio-prometheus
  876. </code></pre>
  877.  
  878.  
  879.  
  880. <p>10. Bootstrap Carbonio Packages</p>
  881.  
  882.  
  883.  
  884. <pre class="wp-block-code"><code>root@mail:~# carbonio-bootstrap
  885. ----------------------------------
  886. | Starting Carbonio Bootstrap... |
  887. ----------------------------------
  888. --------------------------------------------------------------------------------
  889. The system is going to start configuring all the packages.
  890.  
  891. If you are installing Carbonio CE please refer to every single package license
  892. and to the Github repo for more informations on open source licenses:
  893. https:&#47;&#47;github.com/Zextras
  894.  
  895. If you are also installing Carbonio please refer to every single package
  896. license, to the Github repo for more informations on open source licenses:
  897. https://github.com/Zextras and to the Zextras EULA for the proprietary
  898. software: https://zextras.com/licenses
  899. --------------------------------------------------------------------------------
  900.  
  901. Operations logged to /tmp/zmsetup.20240329-192513.log
  902.  
  903. Bootstrap mode: new install
  904. Installing LDAP configuration database...done.
  905. Setting defaults...
  906.  
  907. Querying DNS for "A" record of current hostname mail.sampleserver.xyz...
  908.  
  909. Querying DNS for "MX" record of sampleserver.xyz...
  910.  
  911. Querying DNS for "A" record of mail.sampleserver.xyz... MX: mail.sampleserver.xyz (161.97.99.169)
  912.  
  913.        Interface: 127.0.0.1
  914.        Interface: 161.97.99.169
  915.  
  916.  
  917. Querying DNS for "A" record of mail.sampleserver.xyz...         161.97.99.169
  918.  
  919.  
  920. Querying DNS for "A" record of mail.sampleserver.xyz...         161.97.99.169
  921. done.
  922. Checking for port conflicts
  923.  
  924. Main menu
  925.  
  926.   1) Common Configuration:
  927.   2) carbonio-antivirus:                      Enabled
  928.   3) carbonio-directory-server:               Enabled
  929.   4) carbonio-mta:                            Enabled
  930.   5) carbonio-appserver:                      Enabled
  931.   6) carbonio-proxy:                          Enabled
  932.   s) Save config to file
  933.   x) Expand menu
  934.   q) Quit
  935.  
  936. *** CONFIGURATION COMPLETE - press 'y' to apply configuration
  937. Select from menu, or press 'y' to apply config (? - help)
  938. </code></pre>
  939.  
  940.  
  941.  
  942. <p><strong>Please set your timezone one more time from the 1) Common Configuration.</strong></p>
  943.  
  944.  
  945.  
  946. <p>11. Now configure Carbonio Mesh</p>
  947.  
  948.  
  949.  
  950. <p>root@mail:~# service-discover setup-wizard <br>Setup of first service-discover server instance eth0 161.97.99.169/18 <br>Specify the binding address for service discovery: 161.97.99.169 <br>Create the cluster credentials password (will be used for setups): <br>Type the credential password again: <br>root@mail:~#</p>
  951.  
  952.  
  953.  
  954. <p class="has-black-color has-text-color has-background has-link-color wp-elements-8da47f75b5b059e3d8d57273c76634d2" style="background-color:#fd830b"><strong>FAQ: Cluster Password</strong><br><br>Cluster Password is created and used first time during the installation. It is required again during the next upgradation. But sometimes due to the timegap between first instllation and next upgradation, users tend to forget the cluster password. Don&#8217;t worry! <br>You can find your existing cluster password save here:<br><strong>/var/lib/service-discover/password</strong></p>
  955.  
  956.  
  957.  
  958. <p>11. Now configure Pending-setups</p>
  959.  
  960.  
  961.  
  962. <pre class="wp-block-code"><code>root@mail:~# pending-setups -a
  963. Insert the cluster credential password:
  964.  
  965. Executing all setup scripts...
  966.  
  967. --------------------------------------------------------------------------------
  968. Executing /etc/zextras/pending-setups.d/carbonio-mailbox.sh
  969. Insert the cluster credential password:
  970. Config entry written: service-defaults/carbonio-mailbox
  971. Config entry written: service-intentions/carbonio-mailbox
  972. Configuration reload triggered
  973. Setup successful, moving carbonio-mailbox.sh to /etc/zextras/pending-setups.d/done/
  974. --------------------------------------------------------------------------------
  975. --------------------------------------------------------------------------------
  976. Executing /etc/zextras/pending-setups.d/carbonio-tasks-db-setup.sh
  977. Insert the cluster credential password:
  978. Config entry written: service-defaults/carbonio-tasks-db
  979. Config entry written: service-intentions/carbonio-tasks-db
  980. Configuration reload triggered
  981. Setup successful, moving carbonio-tasks-db-setup.sh to /etc/zextras/pending-setups.d/done/
  982. --------------------------------------------------------------------------------
  983. --------------------------------------------------------------------------------
  984. Executing /etc/zextras/pending-setups.d/carbonio-clamav-signature-provider-setup.sh
  985. Insert the cluster credential password:
  986. Config entry written: service-defaults/carbonio-clamav-signature-provider
  987. Config entry written: service-intentions/carbonio-clamav-signature-provider
  988. Configuration reload triggered
  989. Setup successful, moving carbonio-clamav-signature-provider-setup.sh to /etc/zextras/pending-setups.d/done/
  990. --------------------------------------------------------------------------------
  991. --------------------------------------------------------------------------------
  992. Executing /etc/zextras/pending-setups.d/carbonio-storages-setup.sh
  993. insert the cluster credential password:
  994. Config entry written: service-defaults/carbonio-storages
  995. Config entry written: service-intentions/carbonio-storages
  996. Log directory :  /var/log/carbonio/storages/
  997. Store directory :  /opt/zextras/carbonio-storages
  998. Configuration reload triggered
  999. Setup successful, moving carbonio-storages-setup.sh to /etc/zextras/pending-setups.d/done/
  1000. --------------------------------------------------------------------------------
  1001. --------------------------------------------------------------------------------
  1002. Executing /etc/zextras/pending-setups.d/carbonio-docs-connector-db-setup.sh
  1003. Insert the cluster credential password:
  1004. Config entry written: service-defaults/carbonio-docs-connector-db
  1005. Config entry written: service-intentions/carbonio-docs-connector-db
  1006. Configuration reload triggered
  1007. Setup successful, moving carbonio-docs-connector-db-setup.sh to /etc/zextras/pending-setups.d/done/
  1008. --------------------------------------------------------------------------------
  1009. --------------------------------------------------------------------------------
  1010. Executing /etc/zextras/pending-setups.d/carbonio-docs-editor.sh
  1011. Insert the cluster credential password:
  1012. /etc/carbonio/docs-editor/service-discover//service-resolver.json configuration file correctly generated
  1013. /etc/carbonio/docs-editor/service-discover//service-router.json configuration file correctly generated
  1014. /etc/zextras/service-discover/carbonio-docs-editor.hcl sidecarconfiguration file correctly updated
  1015. Config entry written: service-defaults/carbonio-docs-editor
  1016. Config entry written: service-intentions/carbonio-docs-editor
  1017. Configuration reload triggered
  1018. Config entry written: service-resolver/carbonio-docs-editor
  1019. Config entry written: service-router/carbonio-docs-editor
  1020. Setup successful, moving carbonio-docs-editor.sh to /etc/zextras/pending-setups.d/done/
  1021. --------------------------------------------------------------------------------
  1022. --------------------------------------------------------------------------------
  1023. Executing /etc/zextras/pending-setups.d/set-carbonio-prometheus-mysqld-exporter.sh
  1024. Setup successful, moving set-carbonio-prometheus-mysqld-exporter.sh to /etc/zextras/pending-setups.d/done/
  1025. --------------------------------------------------------------------------------
  1026. --------------------------------------------------------------------------------
  1027. Executing /etc/zextras/pending-setups.d/carbonio-prometheus.sh
  1028. Insert the cluster credential password:
  1029. Restarting Carbonio Prometheus Service
  1030. Reloading Service Discover
  1031. Configuration reload triggered
  1032. Setup successful, moving carbonio-prometheus.sh to /etc/zextras/pending-setups.d/done/
  1033. --------------------------------------------------------------------------------
  1034. --------------------------------------------------------------------------------
  1035. Executing /etc/zextras/pending-setups.d/carbonio-proxy-setup.sh
  1036. Insert the cluster credential password:
  1037. Config entry written: service-defaults/carbonio-proxy
  1038. Configuration reload triggered
  1039. Setup successful, moving carbonio-proxy-setup.sh to /etc/zextras/pending-setups.d/done/
  1040. --------------------------------------------------------------------------------
  1041. --------------------------------------------------------------------------------
  1042. Executing /etc/zextras/pending-setups.d/carbonio-user-management.sh
  1043. Insert the cluster credential password:
  1044. Config entry written: service-defaults/carbonio-user-management
  1045. Config entry written: service-intentions/carbonio-user-management
  1046. Configuration reload triggered
  1047. Setup successful, moving carbonio-user-management.sh to /etc/zextras/pending-setups.d/done/
  1048. --------------------------------------------------------------------------------
  1049. --------------------------------------------------------------------------------
  1050. Executing /etc/zextras/pending-setups.d/carbonio-mta.sh
  1051. Insert the cluster credential password:
  1052. Config entry written: service-defaults/carbonio-mta
  1053. Config entry written: service-intentions/carbonio-mta
  1054. Configuration reload triggered
  1055. Setup successful, moving carbonio-mta.sh to /etc/zextras/pending-setups.d/done/
  1056. --------------------------------------------------------------------------------
  1057. --------------------------------------------------------------------------------
  1058. Executing /etc/zextras/pending-setups.d/carbonio-files.sh
  1059. Insert the cluster credential password:
  1060. Config entry written: service-defaults/carbonio-files
  1061. Config entry written: service-intentions/carbonio-files
  1062. Config entry written: service-router/carbonio-files
  1063. Configuration reload triggered
  1064. Setup successful, moving carbonio-files.sh to /etc/zextras/pending-setups.d/done/
  1065. --------------------------------------------------------------------------------
  1066. --------------------------------------------------------------------------------
  1067. Executing /etc/zextras/pending-setups.d/carbonio-clamav-setup.sh
  1068. Insert the cluster credential password:
  1069. Config entry written: service-defaults/carbonio-clamav
  1070. Config entry written: service-intentions/carbonio-clamav
  1071. Configuration reload triggered
  1072. Setup successful, moving carbonio-clamav-setup.sh to /etc/zextras/pending-setups.d/done/
  1073. --------------------------------------------------------------------------------
  1074. --------------------------------------------------------------------------------
  1075. Executing /etc/zextras/pending-setups.d/set-carbonio-prometheus-openldap-exporter.sh
  1076. Setup successful, moving set-carbonio-prometheus-openldap-exporter.sh to /etc/zextras/pending-setups.d/done/
  1077. --------------------------------------------------------------------------------
  1078. --------------------------------------------------------------------------------
  1079. Executing /etc/zextras/pending-setups.d/carbonio-docs-connector.sh
  1080. Insert the cluster credential password:
  1081. Config entry written: service-defaults/carbonio-docs-connector
  1082. Config entry written: service-intentions/carbonio-docs-connector
  1083. Configuration reload triggered
  1084. Setup successful, moving carbonio-docs-connector.sh to /etc/zextras/pending-setups.d/done/
  1085. --------------------------------------------------------------------------------
  1086. --------------------------------------------------------------------------------
  1087. Executing /etc/zextras/pending-setups.d/carbonio-mailbox-db-setup.sh
  1088. Insert the cluster credential password:
  1089. Config entry written: service-defaults/carbonio-mailbox-db
  1090. Config entry written: service-intentions/carbonio-mailbox-db
  1091. Configuration reload triggered
  1092. Setup successful, moving carbonio-mailbox-db-setup.sh to /etc/zextras/pending-setups.d/done/
  1093. --------------------------------------------------------------------------------
  1094. --------------------------------------------------------------------------------
  1095. Executing /etc/zextras/pending-setups.d/carbonio-preview.sh
  1096. insert the cluster credential password:
  1097. Config entry written: service-defaults/carbonio-preview
  1098. Config entry written: service-intentions/carbonio-preview
  1099. Configuration reload triggered
  1100. Setup successful, moving carbonio-preview.sh to /etc/zextras/pending-setups.d/done/
  1101. --------------------------------------------------------------------------------
  1102. --------------------------------------------------------------------------------
  1103. Executing /etc/zextras/pending-setups.d/carbonio-tasks.sh
  1104. Insert the cluster credential password:
  1105. Config entry written: service-defaults/carbonio-tasks
  1106. Config entry written: service-intentions/carbonio-tasks
  1107. Configuration reload triggered
  1108. Setup successful, moving carbonio-tasks.sh to /etc/zextras/pending-setups.d/done/
  1109. --------------------------------------------------------------------------------
  1110. --------------------------------------------------------------------------------
  1111. Executing /etc/zextras/pending-setups.d/carbonio-files-db-setup.sh
  1112. Insert the cluster credential password:
  1113. Config entry written: service-defaults/carbonio-files-db
  1114. Config entry written: service-intentions/carbonio-files-db
  1115. Configuration reload triggered
  1116. Setup successful, moving carbonio-files-db-setup.sh to /etc/zextras/pending-setups.d/done/
  1117. --------------------------------------------------------------------------------
  1118.  
  1119. There are no pending-setups to run. Exiting!
  1120. root@mail:~#</code></pre>
  1121.  
  1122.  
  1123.  
  1124. <p>12. We need to bootstrap Carbonio Files and Tasks DB.</p>
  1125.  
  1126.  
  1127.  
  1128. <pre class="wp-block-code"><code>root@mail:~# PGPASSWORD=$DB_ADM_PWD carbonio-files-db-bootstrap carbonio_adm 127.0.0.1
  1129. Database: 127.0.0.1:5432 user carbonio_adm
  1130. Check postgres connection: OK
  1131. CREATE ROLE
  1132. CREATE DATABASE
  1133. ====================================================
  1134. carbonio-files-db database initialized successfully!
  1135. ====================================================
  1136. root@mail:~#
  1137. root@mail:~# PGPASSWORD=$DB_ADM_PWD carbonio-tasks-db-bootstrap carbonio_adm 127.0.0.1
  1138. Database: 127.0.0.1:5432 user carbonio_adm
  1139. Check postgres connection: OK
  1140. CREATE ROLE
  1141. CREATE DATABASE
  1142. ====================================================
  1143. carbonio-tasks-db database initialized successfully!
  1144. ====================================================
  1145. root@mail:~#</code></pre>
  1146.  
  1147.  
  1148.  
  1149. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  1150.  
  1151.  
  1152.  
  1153. <p>Up until now we have configured the basic features of Carbonio CE. So if you reboot the server now and restart services then you would be able to avail:</p>
  1154.  
  1155.  
  1156.  
  1157. <ol>
  1158. <li>Mail</li>
  1159.  
  1160.  
  1161.  
  1162. <li>Contacts</li>
  1163.  
  1164.  
  1165.  
  1166. <li>Calendar</li>
  1167.  
  1168.  
  1169.  
  1170. <li>Contact Groups and Distribution Lists</li>
  1171.  
  1172.  
  1173.  
  1174. <li>Files</li>
  1175.  
  1176.  
  1177.  
  1178. <li>Tasks</li>
  1179.  
  1180.  
  1181.  
  1182. <li>Search</li>
  1183.  
  1184.  
  1185.  
  1186. <li>Settings</li>
  1187. </ol>
  1188.  
  1189.  
  1190.  
  1191. <p>But now we will focus on configuring the Workstream Collaboration in Carbonio CE. Which will add the Chat &amp; Video Meeting feature in the system. </p>
  1192.  
  1193.  
  1194.  
  1195. <p>13. Configure and modify the Carbonio Message Dispatcher DB</p>
  1196.  
  1197.  
  1198.  
  1199. <pre class="wp-block-code"><code>root@mail:~# apt install carbonio-message-dispatcher-db -y
  1200. Reading package lists... Done
  1201. Building dependency tree... Done
  1202. Reading state information... Done
  1203. The following packages were automatically installed and are no longer required:
  1204.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  1205. Use 'apt autoremove' to remove them.
  1206. The following NEW packages will be installed:
  1207.  carbonio-message-dispatcher-db
  1208. 0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
  1209. Need to get 3,654 B of archives.
  1210. After this operation, 6,144 B of additional disk space will be used.
  1211. Get:1 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-message-dispatcher-db amd64 0.2.0-1ubuntu &#91;3,654 B]
  1212. Fetched 3,654 B in 0s (7,797 B/s)
  1213. Selecting previously unselected package carbonio-message-dispatcher-db.
  1214. (Reading database ... 132673 files and directories currently installed.)
  1215. Preparing to unpack .../carbonio-message-dispatcher-db_0.2.0-1ubuntu_amd64.deb ...
  1216. Unpacking carbonio-message-dispatcher-db (0.2.0-1ubuntu) ...
  1217. Setting up carbonio-message-dispatcher-db (0.2.0-1ubuntu) ...
  1218. ======================================================
  1219. Carbonio Message Dispatcher DB installed successfully!
  1220. You must run pending-setups to configure it correctly.
  1221. ======================================================
  1222. root@mail:~#
  1223. root@mail:~#
  1224. root@mail:~# pending-setups -a
  1225. Insert the cluster credential password:
  1226.  
  1227. Executing all setup scripts...
  1228.  
  1229. --------------------------------------------------------------------------------
  1230. Executing /etc/zextras/pending-setups.d/carbonio-message-dispatcher-db-setup.sh
  1231. Insert the cluster credential password:
  1232. Config entry written: service-defaults/carbonio-message-dispatcher-db
  1233. Config entry written: service-intentions/carbonio-message-dispatcher-db
  1234. Configuration reload triggered
  1235. Setup successful, moving carbonio-message-dispatcher-db-setup.sh to /etc/zextras/pending-setups.d/done/
  1236. --------------------------------------------------------------------------------
  1237.  
  1238. There are no pending-setups to run. Exiting!
  1239. root@mail:~#
  1240. root@mail:~#
  1241. root@mail:~# PGPASSWORD=$DB_ADM_PWD carbonio-message-dispatcher-db-bootstrap carbonio_adm 127.0.0.1
  1242. Database: 127.0.0.1:5432 user carbonio_adm
  1243. Success! Data written to: carbonio-message-dispatcher-db/db-name
  1244. Success! Data written to: carbonio-message-dispatcher-db/db-username
  1245. Success! Data written to: carbonio-message-dispatcher-db/db-password
  1246. CREATE ROLE
  1247. CREATE DATABASE
  1248. Database initialization completed.
  1249. root@mail:~#</code></pre>
  1250.  
  1251.  
  1252.  
  1253. <p>14. Now we are going to configure Carbonio Message Dispatcher</p>
  1254.  
  1255.  
  1256.  
  1257. <pre class="wp-block-code"><code>root@mail:~# apt install carbonio-message-dispatcher -y
  1258. Reading package lists... Done
  1259. Building dependency tree... Done
  1260. Reading state information... Done
  1261. The following packages were automatically installed and are no longer required:
  1262.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  1263. Use 'apt autoremove' to remove them.
  1264. The following additional packages will be installed:
  1265.  carbonio-erlang
  1266. The following NEW packages will be installed:
  1267.  carbonio-erlang carbonio-message-dispatcher
  1268. 0 upgraded, 2 newly installed, 0 to remove and 1 not upgraded.
  1269. Need to get 112 MB of archives.
  1270. After this operation, 296 MB of additional disk space will be used.
  1271. Get:1 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-erlang amd64 26.1.1-1jammy &#91;54.1 MB]
  1272. Get:2 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-message-dispatcher amd64 0.13.0-1jammy &#91;58.3 MB]
  1273. Fetched 112 MB in 5s (21.5 MB/s)
  1274. Selecting previously unselected package carbonio-erlang.
  1275. (Reading database ... 132683 files and directories currently installed.)
  1276. Preparing to unpack .../carbonio-erlang_26.1.1-1jammy_amd64.deb ...
  1277. Unpacking carbonio-erlang (26.1.1-1jammy) ...
  1278. Selecting previously unselected package carbonio-message-dispatcher.
  1279. Preparing to unpack .../carbonio-message-dispatcher_0.13.0-1jammy_amd64.deb ...
  1280. Unpacking carbonio-message-dispatcher (0.13.0-1jammy) ...
  1281. Setting up carbonio-erlang (26.1.1-1jammy) ...
  1282. Setting up carbonio-message-dispatcher (0.13.0-1jammy) ...
  1283. ======================================================
  1284. Carbonio Message Dispatcher installed successfully!
  1285. You must run pending-setups to configure it correctly.
  1286. ======================================================
  1287. root@mail:~#
  1288. root@mail:~#
  1289. root@mail:~#
  1290. root@mail:~#
  1291. root@mail:~# pending-setups -a
  1292. Insert the cluster credential password:
  1293.  
  1294. Executing all setup scripts...
  1295.  
  1296. --------------------------------------------------------------------------------
  1297. Executing /etc/zextras/pending-setups.d/carbonio-message-dispatcher.sh
  1298. Insert the cluster credential password:
  1299. Config entry written: service-defaults/carbonio-message-dispatcher-http
  1300. Config entry written: service-intentions/carbonio-message-dispatcher-http
  1301. Config entry written: service-defaults/carbonio-message-dispatcher-xmpp
  1302. Config entry written: service-intentions/carbonio-message-dispatcher-xmpp
  1303. Success! Data written to: carbonio-message-dispatcher/api/username
  1304. Success! Data written to: carbonio-message-dispatcher/api/password
  1305. Configuration reload triggered
  1306. =======================================================================================
  1307. Carbonio Message Dispatcher correctly set!
  1308. You must run carbonio-message-dispatcher-migration to check database consistency.
  1309. Syntax: &#91;PGPASSWORD=password] carbonio-message-dispatcher-migration username &#91;host] &#91;port]
  1310. =======================================================================================
  1311. Setup successful, moving carbonio-message-dispatcher.sh to /etc/zextras/pending-setups.d/done/
  1312. --------------------------------------------------------------------------------
  1313.  
  1314. There are no pending-setups to run. Exiting!
  1315. root@mail:~#
  1316. root@mail:~#
  1317. root@mail:~# PGPASSWORD=q carbonio-message-dispatcher-migration carbonio_adm 127.78.0.10 20000
  1318. Checking of database schema... Done. Database is empty!
  1319. Initializing database... Success. The database has been updated.
  1320. Updating 'carbonio-message-dispatcher-db' grant... Success.
  1321. root@mail:~#</code></pre>
  1322.  
  1323.  
  1324.  
  1325. <p class="has-white-color has-text-color has-background has-link-color wp-elements-5d744c6deb25936af51675b37a130310" style="background-color:#00506d">Note: Sometimes you may face error during the execution of &#8220;PGPASSWORD=q carbonio-message-dispatcher-migration carbonio_adm 127.78.0.10 20000&#8221;. <br>The error may look like:<br>root@mail:~# PGPASSWORD=$DB_ADM_PWD carbonio-message-dispatcher-migration carbonio_adm 127.78.0.10 20000<br>Checking of database schema… Done. The database needs to be updated!<br>Updating database… Failed!<br>Cannot run script file &#8216;/etc/carbonio/message-dispatcher/sql-scripts/migrations//6.0.0.sql&#8217;<br><br>To overcome this you can do followings:<br>1. systemctl restart service-discover<br>2. systemctl restart postgresql@16-main.service<br>3. PGPASSWORD=&lt;Using the password directly&gt; carbonio-message-dispatcher-migration carbonio_adm 127.78.0.10 20000</p>
  1326.  
  1327.  
  1328.  
  1329. <p>15. We are going to install and configure Carbonio Message Broker.</p>
  1330.  
  1331.  
  1332.  
  1333. <pre class="wp-block-code"><code>root@mail:~# apt install carbonio-message-broker -y
  1334. Reading package lists... Done
  1335. Building dependency tree... Done
  1336. Reading state information... Done
  1337. The following packages were automatically installed and are no longer required:
  1338.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  1339. Use 'apt autoremove' to remove them.
  1340. The following additional packages will be installed:
  1341.  locales-all socat
  1342. The following NEW packages will be installed:
  1343.  carbonio-message-broker locales-all socat
  1344. 0 upgraded, 3 newly installed, 0 to remove and 1 not upgraded.
  1345. Need to get 26.9 MB of archives.
  1346. After this operation, 270 MB of additional disk space will be used.
  1347. Get:1 http://asi-fs-n.contabo.net/ubuntu jammy-updates/universe amd64 locales-all amd64 2.35-0ubuntu3.6 &#91;10.7 MB]
  1348. Get:2 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-message-broker amd64 0.1.3-1jammy &#91;15.8 MB]
  1349. Get:3 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 socat amd64 1.7.4.1-3ubuntu4 &#91;349 kB]
  1350. Fetched 26.9 MB in 1s (18.3 MB/s)
  1351. Selecting previously unselected package locales-all.
  1352. (Reading database ... 140509 files and directories currently installed.)
  1353. Preparing to unpack .../locales-all_2.35-0ubuntu3.6_amd64.deb ...
  1354. Unpacking locales-all (2.35-0ubuntu3.6) ...
  1355. Selecting previously unselected package socat.
  1356. Preparing to unpack .../socat_1.7.4.1-3ubuntu4_amd64.deb ...
  1357. Unpacking socat (1.7.4.1-3ubuntu4) ...
  1358. Selecting previously unselected package carbonio-message-broker.
  1359. Preparing to unpack .../carbonio-message-broker_0.1.3-1jammy_amd64.deb ...
  1360. Unpacking carbonio-message-broker (0.1.3-1jammy) ...
  1361. Setting up locales-all (2.35-0ubuntu3.6) ...
  1362. Setting up socat (1.7.4.1-3ubuntu4) ...
  1363. Setting up carbonio-message-broker (0.1.3-1jammy) ...
  1364. ======================================================
  1365. Carbonio message broker installed successfully!
  1366. You must run pending-setups to configure it correctly.
  1367. ======================================================
  1368. Processing triggers for man-db (2.10.2-1) ...
  1369. root@mail:~#
  1370. root@mail:~#
  1371. root@mail:~#
  1372. root@mail:~# pending-setups -a
  1373. Insert the cluster credential password:
  1374.  
  1375. Executing all setup scripts...
  1376.  
  1377. --------------------------------------------------------------------------------
  1378. Executing /etc/zextras/pending-setups.d/carbonio-message-broker.sh
  1379. Insert the cluster credential password:
  1380. Config entry written: service-defaults/carbonio-message-broker
  1381. Config entry written: service-intentions/carbonio-message-broker
  1382. Configuration reload triggered
  1383. Success! Data written to: carbonio-message-broker/username
  1384. Success! Data written to: carbonio-message-broker/password
  1385. User carbonio-message-broker added
  1386. Success! Data written to: carbonio-message-broker/admin/username
  1387. Success! Data written to: carbonio-message-broker/admin/password
  1388. Setting tags for user "carbonio-message-broker-admin" to &#91;administrator] ...
  1389. User carbonio-message-broker-admin added
  1390. Setup successful, moving carbonio-message-broker.sh to /etc/zextras/pending-setups.d/done/
  1391. --------------------------------------------------------------------------------
  1392.  
  1393. There are no pending-setups to run. Exiting!
  1394. root@mail:~#</code></pre>
  1395.  
  1396.  
  1397.  
  1398. <p>16. Install and configure workstream collaboration related packages</p>
  1399.  
  1400.  
  1401.  
  1402. <pre class="wp-block-code"><code>root@mail:~# apt install carbonio-ws-collaboration-db -y
  1403. Reading package lists... Done
  1404. Building dependency tree... Done
  1405. Reading state information... Done
  1406. The following packages were automatically installed and are no longer required:
  1407.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  1408. Use 'apt autoremove' to remove them.
  1409. The following NEW packages will be installed:
  1410.  carbonio-ws-collaboration-db
  1411. 0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
  1412. Need to get 3,648 B of archives.
  1413. After this operation, 6,144 B of additional disk space will be used.
  1414. Get:1 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-ws-collaboration-db amd64 0.2.0-1ubuntu &#91;3,648 B]
  1415. Fetched 3,648 B in 0s (15.3 kB/s)
  1416. Selecting previously unselected package carbonio-ws-collaboration-db.
  1417. (Reading database ... 149288 files and directories currently installed.)
  1418. Preparing to unpack .../carbonio-ws-collaboration-db_0.2.0-1ubuntu_amd64.deb ...
  1419. Unpacking carbonio-ws-collaboration-db (0.2.0-1ubuntu) ...
  1420. Setting up carbonio-ws-collaboration-db (0.2.0-1ubuntu) ...
  1421. ============================================================
  1422. Carbonio Workstream Collaboration DB installed successfully!
  1423. You must run pending-setups to configure it correctly.
  1424. ============================================================
  1425. root@mail:~#
  1426. root@mail:~#
  1427. root@mail:~#
  1428. root@mail:~#
  1429. root@mail:~#
  1430. root@mail:~# pending-setups -a
  1431. Insert the cluster credential password:
  1432.  
  1433. Executing all setup scripts...
  1434.  
  1435. --------------------------------------------------------------------------------
  1436. Executing /etc/zextras/pending-setups.d/carbonio-ws-collaboration-db-setup.sh
  1437. Insert the cluster credential password:
  1438. Config entry written: service-defaults/carbonio-ws-collaboration-db
  1439. Config entry written: service-intentions/carbonio-ws-collaboration-db
  1440. Configuration reload triggered
  1441. Setup successful, moving carbonio-ws-collaboration-db-setup.sh to /etc/zextras/pending-setups.d/done/
  1442. --------------------------------------------------------------------------------
  1443.  
  1444. There are no pending-setups to run. Exiting!
  1445. root@mail:~#
  1446. root@mail:~#
  1447. root@mail:~#
  1448. root@mail:~# PGPASSWORD=$DB_ADM_PWD carbonio-ws-collaboration-db-bootstrap carbonio_adm 127.0.0.1
  1449. Database: 127.0.0.1:5432 user carbonio_adm
  1450. Success! Data written to: carbonio-ws-collaboration-db/db-name
  1451. Success! Data written to: carbonio-ws-collaboration-db/db-username
  1452. Success! Data written to: carbonio-ws-collaboration-db/db-password
  1453. CREATE ROLE
  1454. CREATE DATABASE
  1455. Database initialization completed.
  1456. root@mail:~#
  1457. </code></pre>
  1458.  
  1459.  
  1460.  
  1461. <pre class="wp-block-code"><code>root@mail:~# apt install carbonio-ws-collaboration-ce carbonio-videoserver-ce carbonio-ws-collaboration-ui -y
  1462. Reading package lists... Done
  1463. Building dependency tree... Done
  1464. Reading state information... Done
  1465. The following packages were automatically installed and are no longer required:
  1466.  linux-image-5.4.0-105-generic linux-modules-5.4.0-105-generic
  1467. Use 'apt autoremove' to remove them.
  1468. The following additional packages will be installed:
  1469.  carbonio-ffmpeg carbonio-libev carbonio-libfdk-aac carbonio-libnice carbonio-libopus carbonio-librabbitmq-c carbonio-libsrtp
  1470.  carbonio-libusrsctp carbonio-libuv carbonio-libvpx carbonio-libwebsockets carbonio-videoserver-confs-ce carbonio-x264 cdebconf
  1471.  dialog libass9 libcairo2 libconfig9 libdebian-installer4 libmicrohttpd12 libmp3lame0 libogg0 libpixman-1-0
  1472.  libterm-readline-gnu-perl libtextwrap1 libtheora0 libxcb-render0 libxcb-shm0 libxrender1
  1473. Suggested packages:
  1474.  cdebconf-gtk
  1475. The following NEW packages will be installed:
  1476.  carbonio-ffmpeg carbonio-libev carbonio-libfdk-aac carbonio-libnice carbonio-libopus carbonio-librabbitmq-c carbonio-libsrtp
  1477.  carbonio-libusrsctp carbonio-libuv carbonio-libvpx carbonio-libwebsockets carbonio-videoserver-ce
  1478.  carbonio-videoserver-confs-ce carbonio-ws-collaboration-ce carbonio-ws-collaboration-ui carbonio-x264 cdebconf dialog libass9
  1479.  libcairo2 libconfig9 libdebian-installer4 libmicrohttpd12 libmp3lame0 libogg0 libpixman-1-0 libterm-readline-gnu-perl
  1480.  libtextwrap1 libtheora0 libxcb-render0 libxcb-shm0 libxrender1
  1481. 0 upgraded, 32 newly installed, 0 to remove and 1 not upgraded.
  1482. Need to get 50.9 MB of archives.
  1483. After this operation, 107 MB of additional disk space will be used.
  1484. Get:1 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libdebian-installer4 amd64 0.122ubuntu3 &#91;24.1 kB]
  1485. Get:2 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libtextwrap1 amd64 0.1-15build1 &#91;10.1 kB]
  1486. Get:3 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 cdebconf amd64 0.261ubuntu1 &#91;142 kB]
  1487. Get:4 http://asi-fs-n.contabo.net/ubuntu jammy/universe amd64 libass9 amd64 1:0.15.2-1 &#91;97.5 kB]
  1488. Get:5 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libmp3lame0 amd64 3.100-3build2 &#91;141 kB]
  1489. Get:6 http://asi-fs-n.contabo.net/ubuntu jammy-updates/main amd64 libpixman-1-0 amd64 0.40.0-1ubuntu0.22.04.1 &#91;264 kB]
  1490. Get:7 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libxcb-render0 amd64 1.14-3ubuntu3 &#91;16.4 kB]
  1491. Get:8 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libxcb-shm0 amd64 1.14-3ubuntu3 &#91;5,780 B]
  1492. Get:9 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libxrender1 amd64 1:0.9.10-1build4 &#91;19.7 kB]
  1493. Get:10 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libcairo2 amd64 1.16.0-5ubuntu2 &#91;628 kB]
  1494. Get:11 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libogg0 amd64 1.3.5-0ubuntu3 &#91;22.9 kB]
  1495. Get:12 http://asi-fs-n.contabo.net/ubuntu jammy/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu4 &#91;209 kB]
  1496. Get:13 http://asi-fs-n.contabo.net/ubuntu jammy/universe amd64 dialog amd64 1.3-20211214-1 &#91;303 kB]
  1497. Get:14 http://asi-fs-n.contabo.net/ubuntu jammy/universe amd64 libconfig9 amd64 1.5-0.4build1 &#91;22.3 kB]
  1498. Get:15 http://asi-fs-n.contabo.net/ubuntu jammy/universe amd64 libmicrohttpd12 amd64 0.9.75-3ubuntu1 &#91;77.6 kB]
  1499. Get:16 http://asi-fs-n.contabo.net/ubuntu jammy/universe amd64 libterm-readline-gnu-perl amd64 1.42-2build1 &#91;94.9 kB]
  1500. Get:17 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libfdk-aac amd64 2.0.2-2jammy &#91;3,103 kB]
  1501. Get:18 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libopus amd64 1.3.1-2jammy &#91;746 kB]
  1502. Get:19 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libvpx amd64 1.13.1-1jammy &#91;1,466 kB]
  1503. Get:20 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-x264 amd64 0.164.r3081-2jammy &#91;962 kB]
  1504. Get:21 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-ffmpeg amd64 4.4.2-2jammy &#91;8,857 kB]
  1505. Get:22 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libev amd64 4.33-2jammy &#91;176 kB]
  1506. Get:23 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libnice amd64 0.1.19-2jammy &#91;633 kB]
  1507. Get:24 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-librabbitmq-c amd64 0.11.0-1jammy &#91;83.1 kB]
  1508. Get:25 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libsrtp amd64 2.4.2-2jammy &#91;56.6 kB]
  1509. Get:26 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libusrsctp amd64 0.9.5.0-2jammy &#91;881 kB]
  1510. Get:27 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libuv amd64 1.44.2-2jammy &#91;346 kB]
  1511. Get:28 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-libwebsockets amd64 4.3.2-2jammy &#91;445 kB]
  1512. Get:29 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-videoserver-confs-ce amd64 1.1.4-1jammy &#91;16.7 kB]
  1513. Get:30 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-videoserver-ce amd64 1.1.4-1jammy &#91;1,996 kB]
  1514. Get:31 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-ws-collaboration-ce amd64 0.3.6-1ubuntu &#91;28.0 MB]
  1515. Get:32 https://repo.zextras.io/release/ubuntu jammy/main amd64 carbonio-ws-collaboration-ui amd64 0.9.2-1ubuntu &#91;991 kB]
  1516. Fetched 50.9 MB in 4s (12.1 MB/s)
  1517. Extracting templates from packages: 100%
  1518. Preconfiguring packages ...
  1519. ls: cannot access '/usr/lib/cdebconf/frontend': No such file or directory
  1520. Selecting previously unselected package libdebian-installer4:amd64.
  1521. (Reading database ... 149298 files and directories currently installed.)
  1522. Preparing to unpack .../libdebian-installer4_0.122ubuntu3_amd64.deb ...
  1523. Unpacking libdebian-installer4:amd64 (0.122ubuntu3) ...
  1524. Setting up libdebian-installer4:amd64 (0.122ubuntu3) ...
  1525. Selecting previously unselected package libtextwrap1:amd64.
  1526. (Reading database ... 149303 files and directories currently installed.)
  1527. Preparing to unpack .../libtextwrap1_0.1-15build1_amd64.deb ...
  1528. Unpacking libtextwrap1:amd64 (0.1-15build1) ...
  1529. Setting up libtextwrap1:amd64 (0.1-15build1) ...
  1530. Selecting previously unselected package cdebconf.
  1531. (Reading database ... 149309 files and directories currently installed.)
  1532. Preparing to unpack .../cdebconf_0.261ubuntu1_amd64.deb ...
  1533. Unpacking cdebconf (0.261ubuntu1) ...
  1534. Setting up cdebconf (0.261ubuntu1) ...
  1535. Selecting previously unselected package carbonio-libfdk-aac.
  1536. (Reading database ... 149349 files and directories currently installed.)
  1537. Preparing to unpack .../00-carbonio-libfdk-aac_2.0.2-2jammy_amd64.deb ...
  1538. Unpacking carbonio-libfdk-aac (2.0.2-2jammy) ...
  1539. Selecting previously unselected package carbonio-libopus.
  1540. Preparing to unpack .../01-carbonio-libopus_1.3.1-2jammy_amd64.deb ...
  1541. Unpacking carbonio-libopus (1.3.1-2jammy) ...
  1542. Selecting previously unselected package carbonio-libvpx.
  1543. Preparing to unpack .../02-carbonio-libvpx_1.13.1-1jammy_amd64.deb ...
  1544. Unpacking carbonio-libvpx (1.13.1-1jammy) ...
  1545. Selecting previously unselected package carbonio-x264.
  1546. Preparing to unpack .../03-carbonio-x264_0.164.r3081-2jammy_amd64.deb ...
  1547. Unpacking carbonio-x264 (0.164.r3081-2jammy) ...
  1548. Selecting previously unselected package libass9:amd64.
  1549. Preparing to unpack .../04-libass9_1%3a0.15.2-1_amd64.deb ...
  1550. Unpacking libass9:amd64 (1:0.15.2-1) ...
  1551. Selecting previously unselected package libmp3lame0:amd64.
  1552. Preparing to unpack .../05-libmp3lame0_3.100-3build2_amd64.deb ...
  1553. Unpacking libmp3lame0:amd64 (3.100-3build2) ...
  1554. Selecting previously unselected package libpixman-1-0:amd64.
  1555. Preparing to unpack .../06-libpixman-1-0_0.40.0-1ubuntu0.22.04.1_amd64.deb ...
  1556. Unpacking libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ...
  1557. Selecting previously unselected package libxcb-render0:amd64.
  1558. Preparing to unpack .../07-libxcb-render0_1.14-3ubuntu3_amd64.deb ...
  1559. Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ...
  1560. Selecting previously unselected package libxcb-shm0:amd64.
  1561. Preparing to unpack .../08-libxcb-shm0_1.14-3ubuntu3_amd64.deb ...
  1562. Unpacking libxcb-shm0:amd64 (1.14-3ubuntu3) ...
  1563. Selecting previously unselected package libxrender1:amd64.
  1564. Preparing to unpack .../09-libxrender1_1%3a0.9.10-1build4_amd64.deb ...
  1565. Unpacking libxrender1:amd64 (1:0.9.10-1build4) ...
  1566. Selecting previously unselected package libcairo2:amd64.
  1567. Preparing to unpack .../10-libcairo2_1.16.0-5ubuntu2_amd64.deb ...
  1568. Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ...
  1569. Selecting previously unselected package libogg0:amd64.
  1570. Preparing to unpack .../11-libogg0_1.3.5-0ubuntu3_amd64.deb ...
  1571. Unpacking libogg0:amd64 (1.3.5-0ubuntu3) ...
  1572. Selecting previously unselected package libtheora0:amd64.
  1573. Preparing to unpack .../12-libtheora0_1.1.1+dfsg.1-15ubuntu4_amd64.deb ...
  1574. Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ...
  1575. Selecting previously unselected package carbonio-ffmpeg.
  1576. Preparing to unpack .../13-carbonio-ffmpeg_4.4.2-2jammy_amd64.deb ...
  1577. Unpacking carbonio-ffmpeg (4.4.2-2jammy) ...
  1578. Selecting previously unselected package carbonio-libev.
  1579. Preparing to unpack .../14-carbonio-libev_4.33-2jammy_amd64.deb ...
  1580. Unpacking carbonio-libev (4.33-2jammy) ...
  1581. Selecting previously unselected package carbonio-libnice.
  1582. Preparing to unpack .../15-carbonio-libnice_0.1.19-2jammy_amd64.deb ...
  1583. Unpacking carbonio-libnice (0.1.19-2jammy) ...
  1584. Selecting previously unselected package carbonio-librabbitmq-c.
  1585. Preparing to unpack .../16-carbonio-librabbitmq-c_0.11.0-1jammy_amd64.deb ...
  1586. Unpacking carbonio-librabbitmq-c (0.11.0-1jammy) ...
  1587. Selecting previously unselected package carbonio-libsrtp.
  1588. Preparing to unpack .../17-carbonio-libsrtp_2.4.2-2jammy_amd64.deb ...
  1589. Unpacking carbonio-libsrtp (2.4.2-2jammy) ...
  1590. Selecting previously unselected package carbonio-libusrsctp.
  1591. Preparing to unpack .../18-carbonio-libusrsctp_0.9.5.0-2jammy_amd64.deb ...
  1592. Unpacking carbonio-libusrsctp (0.9.5.0-2jammy) ...
  1593. Selecting previously unselected package carbonio-libuv.
  1594. Preparing to unpack .../19-carbonio-libuv_1.44.2-2jammy_amd64.deb ...
  1595. Unpacking carbonio-libuv (1.44.2-2jammy) ...
  1596. Selecting previously unselected package carbonio-libwebsockets.
  1597. Preparing to unpack .../20-carbonio-libwebsockets_4.3.2-2jammy_amd64.deb ...
  1598. Unpacking carbonio-libwebsockets (4.3.2-2jammy) ...
  1599. Selecting previously unselected package dialog.
  1600. Preparing to unpack .../21-dialog_1.3-20211214-1_amd64.deb ...
  1601. Unpacking dialog (1.3-20211214-1) ...
  1602. Selecting previously unselected package libconfig9:amd64.
  1603. Preparing to unpack .../22-libconfig9_1.5-0.4build1_amd64.deb ...
  1604. Unpacking libconfig9:amd64 (1.5-0.4build1) ...
  1605. Selecting previously unselected package libmicrohttpd12:amd64.
  1606. Preparing to unpack .../23-libmicrohttpd12_0.9.75-3ubuntu1_amd64.deb ...
  1607. Unpacking libmicrohttpd12:amd64 (0.9.75-3ubuntu1) ...
  1608. Selecting previously unselected package libterm-readline-gnu-perl.
  1609. Preparing to unpack .../24-libterm-readline-gnu-perl_1.42-2build1_amd64.deb ...
  1610. Unpacking libterm-readline-gnu-perl (1.42-2build1) ...
  1611. Selecting previously unselected package carbonio-videoserver-confs-ce.
  1612. Preparing to unpack .../25-carbonio-videoserver-confs-ce_1.1.4-1jammy_amd64.deb ...
  1613. Unpacking carbonio-videoserver-confs-ce (1.1.4-1jammy) ...
  1614. Selecting previously unselected package carbonio-videoserver-ce.
  1615. Preparing to unpack .../26-carbonio-videoserver-ce_1.1.4-1jammy_amd64.deb ...
  1616. Failed to stop carbonio-videoserver.service: Unit carbonio-videoserver.service not loaded.
  1617. Unpacking carbonio-videoserver-ce (1.1.4-1jammy) ...
  1618. Selecting previously unselected package carbonio-ws-collaboration-ce.
  1619. Preparing to unpack .../27-carbonio-ws-collaboration-ce_0.3.6-1ubuntu_amd64.deb ...
  1620. Unpacking carbonio-ws-collaboration-ce (0.3.6-1ubuntu) ...
  1621. Selecting previously unselected package carbonio-ws-collaboration-ui.
  1622. Preparing to unpack .../28-carbonio-ws-collaboration-ui_0.9.2-1ubuntu_amd64.deb ...
  1623. Unpacking carbonio-ws-collaboration-ui (0.9.2-1ubuntu) ...
  1624. Setting up libconfig9:amd64 (1.5-0.4build1) ...
  1625. Setting up libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ...
  1626. Setting up libogg0:amd64 (1.3.5-0ubuntu3) ...
  1627. Setting up carbonio-libvpx (1.13.1-1jammy) ...
  1628. Setting up libxrender1:amd64 (1:0.9.10-1build4) ...
  1629. Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ...
  1630. Setting up carbonio-ws-collaboration-ui (0.9.2-1ubuntu) ...
  1631. Setting up libxcb-shm0:amd64 (1.14-3ubuntu3) ...
  1632. Setting up libterm-readline-gnu-perl (1.42-2build1) ...
  1633. Setting up libmicrohttpd12:amd64 (0.9.75-3ubuntu1) ...
  1634. Setting up carbonio-librabbitmq-c (0.11.0-1jammy) ...
  1635. Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ...
  1636. Setting up carbonio-libusrsctp (0.9.5.0-2jammy) ...
  1637. Setting up carbonio-ws-collaboration-ce (0.3.6-1ubuntu) ...
  1638. =========================================================
  1639. Carbonio Workstream Collaboration installed successfully!
  1640. You must run pending-setups to configure it correctly.
  1641. =========================================================
  1642. Setting up carbonio-libopus (1.3.1-2jammy) ...
  1643. Setting up carbonio-x264 (0.164.r3081-2jammy) ...
  1644. Setting up libass9:amd64 (1:0.15.2-1) ...
  1645. Setting up dialog (1.3-20211214-1) ...
  1646. Setting up carbonio-libev (4.33-2jammy) ...
  1647. Setting up carbonio-libuv (1.44.2-2jammy) ...
  1648. Setting up carbonio-libnice (0.1.19-2jammy) ...
  1649. Setting up libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ...
  1650. Setting up carbonio-libfdk-aac (2.0.2-2jammy) ...
  1651. Setting up carbonio-libsrtp (2.4.2-2jammy) ...
  1652. Setting up libmp3lame0:amd64 (3.100-3build2) ...
  1653. Setting up carbonio-libwebsockets (4.3.2-2jammy) ...
  1654. Setting up carbonio-ffmpeg (4.4.2-2jammy) ...
  1655. Setting up carbonio-videoserver-confs-ce (1.1.4-1jammy) ...
  1656. Setting up carbonio-videoserver-ce (1.1.4-1jammy) ...
  1657. ======================================================
  1658. Carbonio videoserver installed successfully!
  1659. You must run pending-setups to configure it correctly.
  1660. ======================================================
  1661. Processing triggers for man-db (2.10.2-1) ...
  1662. Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
  1663. root@mail:~#
  1664. root@mail:~#
  1665. root@mail:~#
  1666. root@mail:~# pending-setups -a
  1667. Insert the cluster credential password:
  1668.  
  1669. Executing all setup scripts...
  1670.  
  1671. --------------------------------------------------------------------------------
  1672. Executing /etc/zextras/pending-setups.d/carbonio-ws-collaboration.sh
  1673. Insert the cluster credential password:
  1674. Config entry written: service-defaults/carbonio-ws-collaboration
  1675. Config entry written: service-intentions/carbonio-ws-collaboration
  1676. Configuration reload triggered
  1677. Success! Data written to: carbonio-ws-collaboration/configs/can-video-call
  1678. Success! Data written to: carbonio-ws-collaboration/configs/can-video-call-record
  1679. Success! Data written to: carbonio-ws-collaboration/configs/can-use-virtual-background
  1680. Success! Data written to: carbonio-ws-collaboration/configs/can-see-message-reads
  1681. Success! Data written to: carbonio-ws-collaboration/configs/can-see-users-presence
  1682. Success! Data written to: carbonio-ws-collaboration/configs/max-user-image-size-in-kb
  1683. Success! Data written to: carbonio-ws-collaboration/configs/max-room-image-size-in-kb
  1684. Success! Data written to: carbonio-ws-collaboration/configs/edit-message-time-limit-in-minutes
  1685. Success! Data written to: carbonio-ws-collaboration/configs/delete-message-time-limit-in-minutes
  1686. Success! Data written to: carbonio-ws-collaboration/configs/max-group-members
  1687. Success! Data written to: carbonio-ws-collaboration/broker/virtual-host
  1688. Success! Data written to: carbonio-ws-collaboration/broker/requested-heartbeat-in-sec
  1689. Success! Data written to: carbonio-ws-collaboration/broker/connection-timeout-in-milli
  1690. Success! Data written to: carbonio-ws-collaboration/broker/automatic-recovery-enabled
  1691. Success! Data written to: carbonio-ws-collaboration/broker/topology-recovery-enabled
  1692. Success! Data written to: carbonio-ws-collaboration/broker/network-recovery-interval
  1693. Success! Data written to: carbonio-ws-collaboration/hikari/min-pool-size
  1694. Success! Data written to: carbonio-ws-collaboration/hikari/max-pool-size
  1695. Success! Data written to: carbonio-ws-collaboration/hikari/idle-timeout
  1696. Success! Data written to: carbonio-ws-collaboration/hikari/leak-detection-threshold
  1697. Setup successful, moving carbonio-ws-collaboration.sh to /etc/zextras/pending-setups.d/done/
  1698. --------------------------------------------------------------------------------
  1699. --------------------------------------------------------------------------------
  1700. Executing /etc/zextras/pending-setups.d/carbonio-videoserver.sh
  1701. Insert the cluster credential password:
  1702. Config entry written: service-defaults/carbonio-videoserver
  1703. Config entry written: service-intentions/carbonio-videoserver
  1704. Success! Data written to: carbonio-videoserver/api-secret
  1705. Configuration reload triggered
  1706. Setup successful, moving carbonio-videoserver.sh to /etc/zextras/pending-setups.d/done/
  1707. --------------------------------------------------------------------------------
  1708.  
  1709. There are no pending-setups to run. Exiting!
  1710. root@mail:~#
  1711. root@mail:~#
  1712. root@mail:~# su - zextras -c "carbonio prov mc default carbonioFeatureChatsEnabled TRUE"</code></pre>
  1713.  
  1714.  
  1715.  
  1716. <p class="has-white-color has-text-color has-background has-link-color wp-elements-4604c9ba796b443d0f77b4feb333d668" style="background-color:#00506d"><strong>Note:</strong> <strong>During carbonio-video-server-ce installation, you will be prompted for the binding IP address.</strong></p>
  1717.  
  1718.  
  1719.  
  1720. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  1721.  
  1722.  
  1723.  
  1724. <h2 class="wp-block-heading has-text-color has-link-color has-medium-font-size wp-elements-cbf33b694c6250356536728f383e4bba" style="color:#00506d">Post Installation Procedures</h2>
  1725.  
  1726.  
  1727.  
  1728. <p>17. Reset deafult admin pasword</p>
  1729.  
  1730.  
  1731.  
  1732. <pre class="wp-block-code"><code>su - zextras -c "carbonio prov sp zextras@$(hostname -d) KRGb1rLSHj2GxgW"</code></pre>
  1733.  
  1734.  
  1735.  
  1736. <p>18. Modify the trusted network</p>
  1737.  
  1738.  
  1739.  
  1740. <pre class="wp-block-code"><code>root@mail:~# su - zextras -c "carbonio prov ms $(hostname -f) zimbraMtaMyNetworks '127.0.0.0/8 $(hostname -i)/32'"
  1741. root@mail:~# su - zextras -c "zmmtactl restart"
  1742. Rewriting configuration files...done.
  1743. Stopping milter server...done.
  1744. Starting milter server...done.
  1745. Stopping saslauthd...done.
  1746. Starting saslauthd...done.
  1747. /postfix-script: refreshing the Postfix mail system
  1748. root@mail:~</code></pre>
  1749.  
  1750.  
  1751.  
  1752. <p>19. Restart Carbonio Services and then check their status.</p>
  1753.  
  1754.  
  1755.  
  1756. <pre class="wp-block-code"><code>root@mail:~# su - zextras -c "zmcontrol restart" &amp;&amp; su - zextras -c "zmcontrol status" &amp;&amp; su - zextras -c "zmcontrol -v"
  1757. Host mail.sampleserver.xyz
  1758.        Stopping config service...Done.
  1759.        Stopping service webapp...Done.
  1760.        Stopping stats...Done.
  1761.        Stopping mta...Done.
  1762.        Stopping cbpolicyd...Done.
  1763.        Stopping opendkim...Done.
  1764.        Stopping amavis...Done.
  1765.        Stopping antivirus...Done.
  1766.        Stopping antispam...Done.
  1767.        Stopping proxy...Done.
  1768.        Stopping memcached...Done.
  1769.        Stopping mailbox...Done.
  1770.        Stopping directory-server...Done.
  1771. Host mail.sampleserver.xyz
  1772.        Starting directory server...Done.
  1773.        Starting config service...Done.
  1774.        Starting mailbox...Done.
  1775.        Starting memcached...Done.
  1776.        Starting proxy...Done.
  1777.        Starting amavis...Done.
  1778.        Starting antispam...Done.
  1779.        Starting antivirus...Done.
  1780.        Starting opendkim...Done.
  1781.        Starting mta...Done.
  1782.        Starting stats...Done.
  1783.        Starting service webapp...Done.
  1784. Host mail.sampleserver.xyz
  1785.        amavis                  Running
  1786.        antispam                Running
  1787.        antivirus               Running
  1788.        directory-server        Running
  1789.        mailbox                 Running
  1790.        memcached               Running
  1791.        mta                     Running
  1792.        opendkim                Running
  1793.        proxy                   Running
  1794.        service webapp          Running
  1795.        service-discover        Running
  1796.        stats                   Running
  1797.        config service          Running
  1798. Carbonio Release 24.3.0
  1799. root@mail:~#</code></pre>
  1800.  
  1801.  
  1802.  
  1803. <p>20. Check consul and system unit status</p>
  1804.  
  1805.  
  1806.  
  1807. <pre class="wp-block-code"><code>root@mail:~# consul members &amp;&amp; systemctl list-units carbonio*
  1808. Node                          Address             Status  Type    Build    Protocol  DC   Segment
  1809. server-mail-sampleserver-xyz  161.97.99.169:8301  alive   server  1.10.12  2         dc1  &lt;all&gt;
  1810.  UNIT                                               LOAD   ACTIVE SUB     DESCRIPTION
  1811.  carbonio-clamav-sidecar.service                    loaded active running Carbonio clamav sidecar proxy
  1812.  carbonio-clamav-signature-provider-sidecar.service loaded active running NGINX Carbonio ClamAV signature provider sidecar
  1813.  carbonio-docs-connector-db-sidecar.service         loaded active running Carbonio Docs Connector database sidecar
  1814.  carbonio-docs-connector-sidecar.service            loaded active running Carbonio docs connector sidecar proxy
  1815.  carbonio-docs-connector.service                    loaded active running Carbonio docs connector daemon
  1816.  carbonio-docs-editor-sidecar.service               loaded active running Carbonio Docs server sidecar proxy
  1817.  carbonio-docs-editor.service                       loaded active running Carbonio Docs Server
  1818.  carbonio-files-db-sidecar.service                  loaded active running Carbonio Files database sidecar
  1819.  carbonio-files-sidecar.service                     loaded active running Carbonio Files sidecar proxy
  1820.  carbonio-files.service                             loaded active running Carbonio Files daemon
  1821.  carbonio-mailbox-db-sidecar.service                loaded active running Carbonio Mailbox database sidecar
  1822.  carbonio-mailbox-sidecar.service                   loaded active running Mailbox carbonio proxy sidecar
  1823.  carbonio-message-broker-sidecar.service            loaded active running Carbonio message broker sidecar proxy
  1824.  carbonio-message-broker.service                    loaded active running Carbonio message broker daemon
  1825.  carbonio-message-dispatcher-auth-sidecar.service   loaded active running Carbonio Message Dispatcher auth sidecar proxy
  1826.  carbonio-message-dispatcher-auth.service           loaded active running Carbonio Message Dispatcher auth daemon
  1827.  carbonio-message-dispatcher-db-sidecar.service     loaded active running Carbonio Message Dispatcher database sidecar
  1828.  carbonio-message-dispatcher-http-sidecar.service   loaded active running Carbonio Message Dispatcher HTTP sidecar proxy
  1829.  carbonio-message-dispatcher-xmpp-sidecar.service   loaded active running Carbonio Message Dispatcher XMPP sidecar proxy
  1830.  carbonio-message-dispatcher.service                loaded active running Carbonio Message Dispatcher daemon
  1831.  carbonio-mta-sidecar.service                       loaded active running Carbonio mta sidecar proxy
  1832.  carbonio-preview-sidecar.service                   loaded active running Carbonio Preview sidecar proxy
  1833.  carbonio-preview.service                           loaded active running Carbonio Preview daemon
  1834.  carbonio-prometheus-consul-exporter.service        loaded active running Carbonio Prometheus Consul exporter
  1835.  carbonio-prometheus-mysqld-exporter.service        loaded active running Carbonio Prometheus MySQL exporter
  1836.  carbonio-prometheus-nginx-exporter.service         loaded active running Carbonio Prometheus NGINX exporter
  1837.  carbonio-prometheus-node-exporter.service          loaded active running Carbonio Prometheus Node Exporter
  1838.  carbonio-prometheus-openldap-exporter.service      loaded active running Carbonio Prometheus OpenLDAP exporter
  1839.  carbonio-prometheus.service                        loaded active running Carbonio Prometheus service
  1840.  carbonio-proxy-sidecar.service                     loaded active running NGINX carbonio proxy sidecar
  1841.  carbonio-storages-sidecar.service                  loaded active running Storages-CE sidecar proxy
  1842.  carbonio-storages.service                          loaded active running Carbonio Storages-CE daemon
  1843.  carbonio-tasks-db-sidecar.service                  loaded active running Carbonio Tasks database sidecar
  1844.  carbonio-tasks-sidecar.service                     loaded active running Carbonio Tasks sidecar proxy
  1845.  carbonio-user-management-sidecar.service           loaded active running Carbonio User Management sidecar proxy
  1846.  carbonio-user-management.service                   loaded active running Carbonio User Management daemon
  1847.  carbonio-videoserver-sidecar.service               loaded active running Carbonio Videoserver sidecar proxy
  1848.  carbonio-videoserver.service                       loaded active running Zextras Videoserver
  1849.  carbonio-ws-collaboration-db-sidecar.service       loaded active running Carbonio Workstream Collaboration database sidecar
  1850.  carbonio-ws-collaboration-sidecar.service          loaded active running Carbonio Workstream Collaboration sidecar proxy
  1851.  carbonio-ws-collaboration.service                  loaded active running Carbonio Workstream Collaboration daemon
  1852.  
  1853. LOAD   = Reflects whether the unit definition was properly loaded.
  1854. ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
  1855. SUB    = The low-level unit activation state, values depend on unit type.
  1856. 41 loaded units listed. Pass --all to see loaded but inactive units, too.
  1857. To show all installed unit files use 'systemctl list-unit-files'.</code></pre>
  1858.  
  1859.  
  1860.  
  1861. <p>21. Check consul service status</p>
  1862.  
  1863.  
  1864.  
  1865. <pre class="wp-block-code"><code>root@mail:~# curl -v http://127.78.0.4:10000/health | jq
  1866. *   Trying 127.78.0.4:10000...
  1867.  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
  1868.                                 Dload  Upload   Total   Spent    Left  Speed
  1869.  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0* Connected to 127.78.0.4 (127.78.0.4) port 10000 (#0)
  1870. &gt; GET /health HTTP/1.1
  1871. &gt; Host: 127.78.0.4:10000
  1872. &gt; User-Agent: curl/7.81.0
  1873. &gt; Accept: */*
  1874. &gt;
  1875. * Mark bundle as not supporting multiuse
  1876. &lt; HTTP/1.1 200 OK
  1877. &lt; Date: Fri, 29 Mar 2024 14:45:14 GMT
  1878. &lt; Content-Type: application/json
  1879. &lt; Content-Length: 403
  1880. &lt; Server: Jetty(10.0.6)
  1881. &lt;
  1882. { &#91;403 bytes data]
  1883. 100   403  100   403    0     0   2104      0 --:--:-- --:--:-- --:--:--  2178
  1884. * Connection #0 to host 127.78.0.4 left intact
  1885. {
  1886.  "isLive": true,
  1887.  "status": "ok",
  1888.  "dependencies": &#91;
  1889.    {
  1890.      "name": "database",
  1891.      "isHealthy": true
  1892.    },
  1893.    {
  1894.      "name": "authentication_service",
  1895.      "isHealthy": true
  1896.    },
  1897.    {
  1898.      "name": "profiling_service",
  1899.      "isHealthy": true
  1900.    },
  1901.    {
  1902.      "name": "xmpp_server",
  1903.      "isHealthy": true
  1904.    },
  1905.    {
  1906.      "name": "event_dispatcher",
  1907.      "isHealthy": true
  1908.    },
  1909.    {
  1910.      "name": "storage_service",
  1911.      "isHealthy": true
  1912.    },
  1913.    {
  1914.      "name": "previewer_service",
  1915.      "isHealthy": true
  1916.    },
  1917.    {
  1918.      "name": "videoserver_service",
  1919.      "isHealthy": true
  1920.    }
  1921.  ]
  1922. }
  1923. root@mail:~#
  1924. </code></pre>
  1925.  
  1926.  
  1927.  
  1928. <p>22. Reboot the server.</p>
  1929.  
  1930.  
  1931.  
  1932. <pre class="wp-block-code"><code>root@mail:~# reboot now
  1933.  
  1934. Remote side unexpectedly closed network connection
  1935.  
  1936. ─────────────────────────────────────────────────────────</code></pre>
  1937.  
  1938.  
  1939.  
  1940. <p>23. After rebooting the server restart services as per following sequence:</p>
  1941.  
  1942.  
  1943.  
  1944. <p>root@mail:~# su &#8211; zextras -c &#8216;zmcontrol restart&#8217;<br>root@mail:~# systemctl restart carbonio-tasks<br>root@mail:~# systemctl restart carbonio-message-broker<br>root@mail:~# systemctl restart carbonio-message-dispatcher<br>root@mail:~# systemctl restart carbonio-ws-collaboration<br>root@mail:~# systemctl restart carbonio-videoserver<br>root@mail:~#</p>
  1945.  
  1946.  
  1947.  
  1948. <p class="has-background" style="background-color:#fd830b"><strong>FAQ: In order to make all the feature work seemlessly, after the reboot do not miss to perform:</strong><br><br>su &#8211; zextras -c &#8216;zmcontrol restart&#8217;<br>systemctl restart carbonio-tasks<br>systemctl restart carbonio-message-broker<br>systemctl restart carbonio-message-dispatcher<br>systemctl restart carbonio-ws-collaboration<br>systemctl restart carbonio-videoserver</p>
  1949.  
  1950.  
  1951.  
  1952. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  1953.  
  1954.  
  1955.  
  1956. <p></p>
  1957.  
  1958.  
  1959.  
  1960. <p>Now check the user webmail and Admin UI by testing all functionalities. Check out this link to find the official <strong><a href="https://docs.zextras.com/carbonio-ce/html/_downloads/bed211d6fc1b9ca35f15be01eb9aa3fc/install_carbonio_ce_singleserver_ubuntu.sh" target="_blank" rel="noopener" title="">script</a> </strong>or this fanmade <strong><a href="https://1drv.ms/u/s!Avx4jAe3gPCxgpJt9_lP_wpht6QyIw?e=dmyTIM" target="_blank" rel="noopener" title="">script</a></strong>.</p>
  1961.  
  1962.  
  1963.  
  1964. <p>If you are still unaware about what to choose, then this <a href="https://community.zextras.com/introducing-carbonio-community-edition-the-best-alternative-to-zimbra-ose-carbonio/" target="_blank" rel="noopener" title=""><strong>article</strong></a> might help you to make up your mind.</p>
  1965.  
  1966.  
  1967.  
  1968. <p class="has-background" style="background-color:#fd830b"><strong>FAQ: Chainging IP_ADDRESS</strong><br><br>After a successful installation, for any unprecedented circumstances, if you need to change the IP of your Carbonio CE server, you can do followings:<br>*** Make sure you copy all config files before modifying them.<br>a) Server Interface<br>b) /etc/hosts<br>c) zimbraMtaMyNetworks (If Necessary)<br>d) /opt/zextras/conf/nginx/includes<br>e) /etc/zextras/service-discover/config.json<br>f) /etc/janus/janus.jcfg<br>g) restart services<br>h) update DNS records</p>
  1969.  
  1970.  
  1971.  
  1972. <p></p>
  1973.  
  1974.  
  1975.  
  1976. <p>Concluding, Ubuntu 22.04 LTS&#8217;s addition to Carbonio CE&#8217;s supported operating systems signifies its growth and commitment to flexibility, enhancing its appeal to a broader audience. This development, alongside the move towards a more straightforward installation process, demonstrates Carbonio CE&#8217;s focus on improving user experience and accessibility. As a token of appreciation, we&#8217;re also introducing a surprise gift for our readers, underscoring our gratitude and commitment to the community. This step forward not only enriches user experience but also solidifies Carbonio CE&#8217;s position as a leading email collaboration platform.</p><p>The post <a href="https://community.zextras.com/how-to-deploy-a-collaborative-private-e-mail-server-carbonio-community-edition-for-free-using-ubuntu-22-04lts-carbonio-ce/">How To Deploy a Collaborative Private E-mail Server Carbonio Community Edition for Free Using Ubuntu 22.04LTS | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  1977. <wfw:commentRss>https://community.zextras.com/how-to-deploy-a-collaborative-private-e-mail-server-carbonio-community-edition-for-free-using-ubuntu-22-04lts-carbonio-ce/feed/</wfw:commentRss>
  1978. <slash:comments>2</slash:comments>
  1979. </item>
  1980. <item>
  1981. <title>In-Depth Review of Carbonio Community Edition Features – Your Comprehensive Digital Workplace for Collaboration &#124; Carbonio CE</title>
  1982. <link>https://community.zextras.com/in-depth-review-of-carbonio-community-edition-features-your-comprehensive-digital-workplace-for-collaboration-carbonio/</link>
  1983. <comments>https://community.zextras.com/in-depth-review-of-carbonio-community-edition-features-your-comprehensive-digital-workplace-for-collaboration-carbonio/#respond</comments>
  1984. <dc:creator><![CDATA[Arman Khosravi]]></dc:creator>
  1985. <pubDate>Thu, 28 Mar 2024 12:54:27 +0000</pubDate>
  1986. <category><![CDATA[Blog]]></category>
  1987. <category><![CDATA[Zextras Carbonio]]></category>
  1988. <category><![CDATA[Digital Workplace]]></category>
  1989. <category><![CDATA[Zextras Carbonio CE]]></category>
  1990. <guid isPermaLink="false">https://community.zextras.com/?p=7681</guid>
  1991.  
  1992. <description><![CDATA[<p>Carbonio CE provides essential tools to boost productivity and teamwork. Alongside its robust email service, it seamlessly integrates calendaring, contact management, and intuitive file sharing. Notably, its video call and chat system foster instant communication and group collaboration.</p>
  1993. <p>The post <a href="https://community.zextras.com/in-depth-review-of-carbonio-community-edition-features-your-comprehensive-digital-workplace-for-collaboration-carbonio/">In-Depth Review of Carbonio Community Edition Features – Your Comprehensive Digital Workplace for Collaboration | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  1994. <content:encoded><![CDATA[<p><br>In recent years, the need for seamless collaboration within organizations has never been more pronounced. With the paradigm shift towards remote working and the growing emphasis on a digital workplace environment, the demand for comprehensive collaboration platforms is at an all-time high. Recognizing this need, Carbonio CE emerges as a beacon of innovation—an open-source, fully-featured private collaboration platform designed to cater to the dynamic requirements of modern organizations.</p>
  1995.  
  1996.  
  1997.  
  1998. <p>At its core, Carbonio CE offers a suite of essential tools meticulously crafted to enhance productivity and foster collaboration within teams. Beyond merely facilitating communication through its robust email service, Carbonio CE integrates seamlessly with essential organizational functions, including email, calendaring, and contact management. Its intuitive file management system empowers users to effortlessly create, edit, and share documents with collaborators in real time, thereby streamlining workflows and optimizing efficiency. Among features within Carbonio CE, perhaps one of the most indispensable is its integrated video call and chat system, facilitating instant messaging and group video calls. </p>
  1999.  
  2000.  
  2001.  
  2002. <p>In essence, Carbonio CE represents more than just a collaboration platform—it embodies a commitment to innovation, efficiency, and inclusivity in the digital workplace. Through its comprehensive suite of features and unwavering dedication to empowering organizations of all sizes, Carbonio CE emerges as a catalyst for transformative change in the way teams collaborate and thrive in our interconnected work environment. Join us as we embark on a journey to explore the limitless possibilities of the Carbonio Community Edition webmail interface.</p>
  2003.  
  2004.  
  2005.  
  2006. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2007.  
  2008.  
  2009.  
  2010. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d">Monolithic Solution</h2>
  2011.  
  2012.  
  2013.  
  2014. <p>One of the most compelling aspects of Carbonio CE is its accessibility. By consolidating essential collaboration tools within a unified webmail interface, Carbonio CE eliminates the need for disparate platforms, simplifying the user experience and enhancing accessibility. This not only promotes seamless collaboration but also bolsters organizational cohesion, particularly in the face of remote work challenges.</p>
  2015.  
  2016.  
  2017.  
  2018. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2019.  
  2020.  
  2021.  
  2022. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d">Who Would Benefit?</h2>
  2023.  
  2024.  
  2025.  
  2026. <p>Carbonio CE extends its value proposition to small to medium organizations and startups by offering a custom, professional email address at no cost. In an era where establishing a strong online presence is paramount for business success, the provision of a free custom email address empowers emerging enterprises to project a polished, professional image without incurring additional expenses.</p>
  2027.  
  2028.  
  2029.  
  2030. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2031.  
  2032.  
  2033.  
  2034. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d">Key Features</h2>
  2035.  
  2036.  
  2037.  
  2038. <p>Carbonio CE offers a suite of essential tools to enhance productivity and foster collaboration within teams. Beyond merely facilitating communication through its robust email service, Carbonio CE integrates seamlessly with essential organizational functions, including:</p>
  2039.  
  2040.  
  2041.  
  2042. <ul>
  2043. <li><strong>Email</strong>: Providing reliable email service for efficient communication.</li>
  2044.  
  2045.  
  2046.  
  2047. <li><strong>Calendaring</strong>: Streamlining scheduling and event management.</li>
  2048.  
  2049.  
  2050.  
  2051. <li><strong>Contact Management</strong>: Centralizing and organizing contact information.</li>
  2052.  
  2053.  
  2054.  
  2055. <li><strong>File Management</strong>: Empowering users to create, edit, and share documents in real time.</li>
  2056.  
  2057.  
  2058.  
  2059. <li><strong>Task Management</strong>: Enabling task management and better organization within teams.</li>
  2060.  
  2061.  
  2062.  
  2063. <li><strong>Instant Messaging</strong>: Facilitating quick and efficient real-time communication.</li>
  2064.  
  2065.  
  2066.  
  2067. <li><strong>Video Calls</strong>: Supporting seamless video conferencing for remote collaboration.</li>
  2068. </ul>
  2069.  
  2070.  
  2071.  
  2072. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2073.  
  2074.  
  2075.  
  2076. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">Email</h3>
  2077.  
  2078.  
  2079.  
  2080. <p>As the cornerstone of modern communication, Carbonio CE&#8217;s robust email service ensures reliable and efficient correspondence within organizations. From sending important updates to coordinating projects, email remains integral to daily operations. With Carbonio CE, users can access their emails seamlessly, organize conversations effectively, and collaborate effortlessly with colleagues, regardless of their location or time zone.</p>
  2081.  
  2082.  
  2083.  
  2084. <p>Moreover, the platform&#8217;s advanced features, such as an <strong>integrated anti-spam and antivirus</strong>, <strong>advanced email filtering</strong>, and <strong>customizable folders</strong> empower users to prioritize and manage their inboxes efficiently, thereby enhancing productivity and reducing email clutter.</p>
  2085.  
  2086.  
  2087.  
  2088. <p>Furthermore, the inclusion of <strong>shared inboxes among collaborators</strong> represents an invaluable feature within Carbonio CE. This functionality not only facilitates enhanced team task management but also addresses a common deficiency found in many other collaboration solutions.</p>
  2089.  
  2090.  
  2091.  
  2092. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1024x576.png" alt="" class="wp-image-7683" srcset="https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/inbox-original-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2093.  
  2094.  
  2095.  
  2096. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2097.  
  2098.  
  2099.  
  2100. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">Calendaring</h3>
  2101.  
  2102.  
  2103.  
  2104. <p>Effective time management is paramount in today&#8217;s work environment, and Carbonio CE&#8217;s calendaring feature is designed to streamline scheduling and enhance team coordination. Users can schedule meetings, set reminders, and <strong>share calendars</strong> with colleagues, ensuring everyone stays on the same page. With the ability to view availability and schedule appointments directly from the platform, Carbonio CE simplifies the process of organizing meetings, required assets, and<strong> virtual rooms </strong>and eliminates the need for back-and-forth emails. Furthermore, the integration with email allows users to seamlessly transition from scheduling discussions to actual meetings, fostering efficiency and productivity within the organization.</p>
  2105.  
  2106.  
  2107.  
  2108. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/calendars-1024x576.png" alt="" class="wp-image-7684" srcset="https://community.zextras.com/wp-content/uploads/2024/03/calendars-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/calendars-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2109.  
  2110.  
  2111.  
  2112. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2113.  
  2114.  
  2115.  
  2116. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">Contact Management</h3>
  2117.  
  2118.  
  2119.  
  2120. <p>In our digitally interconnected world, maintaining a centralized database of contacts is essential for effective communication and collaboration. Carbonio CE&#8217;s contact management feature offers users a convenient platform to store, organize, and access contact information efficiently. Whether reaching out to clients, partners, or team members, users can easily retrieve contact details and initiate communication directly from the platform. Additionally, the ability to <strong>categorize contacts</strong> and create <strong>custom groups</strong> enhances organization and facilitates targeted communication, ensuring that messages reach the intended recipients promptly.</p>
  2121.  
  2122.  
  2123.  
  2124. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1024x576.png" alt="" class="wp-image-7685" srcset="https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/add-contact-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2125.  
  2126.  
  2127.  
  2128. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2129.  
  2130.  
  2131.  
  2132. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">File Management</h3>
  2133.  
  2134.  
  2135.  
  2136. <p>Collaboration often revolves around the creation, editing, and sharing of documents, and Carbonio CE&#8217;s file management system is tailored to streamline these processes. With secure personal storage and intuitive document management tools, users can create, upload, and <strong>collaborate on files in real-time</strong>, from anywhere in the world. The platform&#8217;s <strong>version control</strong> and revision history features ensure that teams always have access to the latest document iterations, eliminating confusion and minimizing errors. Furthermore, the ability to assign <strong>permissions and control access to files</strong> enhances security and protects sensitive information. Whether working on a presentation, spreadsheet, or proposal, Carbonio CE&#8217;s file management capabilities empower teams to collaborate effectively and achieve their goals efficiently.</p>
  2137.  
  2138.  
  2139.  
  2140. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1024x576.png" alt="" class="wp-image-7686" srcset="https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/files-new-folder-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2141.  
  2142.  
  2143.  
  2144. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2145.  
  2146.  
  2147.  
  2148. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">Tasks</h3>
  2149.  
  2150.  
  2151.  
  2152. <p>Effective task management is crucial for organizing work, prioritizing tasks, and ensuring deadlines are met. Carbonio CE&#8217;s task management feature provides users with a centralized platform to create, assign, and track tasks within their teams. With <strong>individual to-do lists</strong> users can organize tasks according to priority, and due date, facilitating efficient workflow management. Additionally, the ability to set <strong>reminders</strong> and receive notifications ensures that important tasks are not overlooked, keeping teams focused and productive. With Carbonio CE&#8217;s task management capabilities, users can streamline their workflow, stay organized, and drive productivity within their teams.</p>
  2153.  
  2154.  
  2155.  
  2156. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/tasks-1024x576.png" alt="" class="wp-image-7687" srcset="https://community.zextras.com/wp-content/uploads/2024/03/tasks-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/tasks-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2157.  
  2158.  
  2159.  
  2160. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2161.  
  2162.  
  2163.  
  2164. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">Instant Messaging</h3>
  2165.  
  2166.  
  2167.  
  2168. <p>Real-time communication is essential for efficient collaboration, especially in today&#8217;s remote work environments. Carbonio CE&#8217;s instant messaging feature offers users a convenient platform to exchange messages, <strong>share files</strong>, and collaborate with colleagues in real time. Whether seeking quick clarification on a project or discussing urgent matters, users can initiate <strong>one-on-one or group</strong> chats seamlessly, regardless of their location or time zone. The platform&#8217;s integration with other collaboration tools ensures that conversations are contextually linked to relevant projects or tasks, facilitating communication and enhancing team collaboration. With Carbonio CE&#8217;s instant messaging capabilities, users can foster closer connections, facilitate quicker decision-making, and drive productivity within their teams.</p>
  2169.  
  2170.  
  2171.  
  2172. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/chats-1024x576.png" alt="" class="wp-image-7689" srcset="https://community.zextras.com/wp-content/uploads/2024/03/chats-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/chats-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/chats-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/chats-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/chats-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/chats-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/chats-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/chats-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/chats-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/chats-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/chats-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/chats-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/chats-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/chats-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/chats-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/chats-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/chats-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/chats-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/chats-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2173.  
  2174.  
  2175.  
  2176. <div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
  2177.  
  2178.  
  2179.  
  2180. <h3 class="wp-block-heading has-text-color" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d;font-size:16px">Video Calls</h3>
  2181.  
  2182.  
  2183.  
  2184. <p>In an era of remote work and global collaboration, face-to-face communication remains essential for building relationships and fostering collaboration. Carbonio CE&#8217;s <strong>video call</strong> feature enables users to conduct <strong>virtual meetings</strong> and collaborate with colleagues in real time, regardless of geographical barriers. Whether hosting team meetings, conducting client presentations, or collaborating on projects, users can initiate high-quality video calls directly from the platform, enhancing engagement and fostering a sense of connection among team members. Additionally, features such as <strong>screen sharing</strong> facilitate interactive discussions and ensure that participants can collaborate effectively, even when working remotely. With Carbonio CE&#8217;s video call capabilities, users can bridge the gap between remote teams, foster collaboration, and drive productivity within their organization.</p>
  2185.  
  2186.  
  2187.  
  2188. <figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1024x576.png" alt="" class="wp-image-7690" srcset="https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2024/03/video-meeting-1600x900.png 1600w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
  2189.  
  2190.  
  2191.  
  2192. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2193.  
  2194.  
  2195.  
  2196. <p>Carbonio CE stands as a comprehensive and versatile collaboration platform, tailored to meet the evolving needs of modern organizations. With a diverse array of features ranging from robust email services to seamless file management and real-time communication tools, Carbonio CE empowers teams to collaborate effectively, regardless of their location or time zone. By prioritizing efficiency, productivity, and seamless integration, Carbonio CE redefines the standards of digital workplace collaboration, making it an indispensable asset for organizations striving to thrive in our dynamic business landscape.</p>
  2197.  
  2198.  
  2199.  
  2200. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2201.  
  2202.  
  2203.  
  2204. <div class="wp-block-buttons is-horizontal is-content-justification-left is-layout-flex wp-container-core-buttons-layout-1 wp-block-buttons-is-layout-flex">
  2205. <div class="wp-block-button is-style-fill" id="whitepaper"><a class="wp-block-button__link has-white-color has-text-color has-background wp-element-button" href="https://lp.zextras.com/carbonio-ce/?utm_source=zose_alt_article&amp;utm_medium=community&amp;utm_campaign=carbonio_ce_launch" style="border-radius:2px;background-color:#00506d">Read more about Carbonio Community Edition</a></div>
  2206. </div><p>The post <a href="https://community.zextras.com/in-depth-review-of-carbonio-community-edition-features-your-comprehensive-digital-workplace-for-collaboration-carbonio/">In-Depth Review of Carbonio Community Edition Features – Your Comprehensive Digital Workplace for Collaboration | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  2207. <wfw:commentRss>https://community.zextras.com/in-depth-review-of-carbonio-community-edition-features-your-comprehensive-digital-workplace-for-collaboration-carbonio/feed/</wfw:commentRss>
  2208. <slash:comments>0</slash:comments>
  2209. </item>
  2210. <item>
  2211. <title>Connecting Carbonio Community Edition Emails, Address Books, and Calendars in MacOS &#124; Carbonio CE</title>
  2212. <link>https://community.zextras.com/connecting-carbonio-community-edition-emails-address-books-and-calendars-in-macos-carbonio-ce/</link>
  2213. <dc:creator><![CDATA[Zextras]]></dc:creator>
  2214. <pubDate>Wed, 24 Jan 2024 10:02:06 +0000</pubDate>
  2215. <category><![CDATA[User Guide]]></category>
  2216. <category><![CDATA[Zextras Carbonio]]></category>
  2217. <category><![CDATA[Zextras Carbonio CE]]></category>
  2218. <guid isPermaLink="false">https://community.zextras.com/?p=7591</guid>
  2219.  
  2220. <description><![CDATA[<p>Some users find the Carbonio CE web client to be perfectly adequate for managing their emails, address books, and calendars. However, MacOS users may prefer to rely on built-in or third-party applications to achieve the same functionality on their devices. In this article, we will talk about how to do this in the Apple operating system, as well as the pitfalls that you may encounter in the process of connecting data sources. This guide only covers free apps.</p>
  2221. <p>The post <a href="https://community.zextras.com/connecting-carbonio-community-edition-emails-address-books-and-calendars-in-macos-carbonio-ce/">Connecting Carbonio Community Edition Emails, Address Books, and Calendars in MacOS | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  2222. <content:encoded><![CDATA[<p><br>Some users find the Carbonio CE web client to be perfectly adequate for managing their emails, address books, and calendars. However, MacOS users may prefer to rely on built-in or third-party applications to achieve the same functionality on their devices. In this article, we will talk about how to do this in the Apple operating system, as well as the pitfalls that you may encounter in the process of connecting data sources. This guide only covers free apps.</p>
  2223.  
  2224.  
  2225.  
  2226. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2227.  
  2228.  
  2229.  
  2230. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="When-is-worth-using-Split-Domain-?" style="color:#00506d">Mac Mail</h2>
  2231.  
  2232.  
  2233.  
  2234. <p>The built-in Mac OS client supports connection to the mail server via IMAP and POP3 protocols. You must set up your account in the System Preferences application under Internet Accounts.</p>
  2235.  
  2236.  
  2237. <div class="wp-block-image">
  2238. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="821" height="772" src="https://community.zextras.com/wp-content/uploads/2024/01/image-2.png" alt="" class="wp-image-7596" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-2.png 821w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-300x282.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-768x722.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-420x395.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-500x470.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-800x752.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-48x45.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-90x85.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-150x141.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-200x188.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-400x376.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-600x564.png 600w, https://community.zextras.com/wp-content/uploads/2024/01/image-2-24x24.png 24w" sizes="(max-width: 821px) 100vw, 821px" /></figure></div>
  2239.  
  2240.  
  2241. <p>In this section, click on the “Add Account…” button and select “Add Other Account…” in the list that appears. Select “Mail Account…” and enter your display name, your account name, and password in the window that opens.</p>
  2242.  
  2243.  
  2244. <div class="wp-block-image">
  2245. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="850" height="754" src="https://community.zextras.com/wp-content/uploads/2024/01/image-3.png" alt="" class="wp-image-7598" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-3.png 850w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-300x266.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-768x681.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-420x373.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-500x444.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-800x710.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-48x43.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-90x80.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-150x133.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-200x177.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-400x355.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-600x532.png 600w" sizes="(max-width: 850px) 100vw, 850px" /></figure></div>
  2246.  
  2247.  
  2248. <p>After the application fails to auto-configure the account, enter the details of the email server, and also select the protocol by which the connection will be made. Please note that the address of the IMAP/POP3 server may differ from the name of the SMTP server, therefore, before starting the setup, it is better to check with the administrator in advance which addresses should be used during the setup.</p>
  2249.  
  2250.  
  2251. <div class="wp-block-image">
  2252. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="814" height="750" src="https://community.zextras.com/wp-content/uploads/2024/01/image-4.png" alt="" class="wp-image-7599" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-4.png 814w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-300x276.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-768x708.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-420x387.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-500x461.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-800x737.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-48x44.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-90x83.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-150x138.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-200x184.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-400x369.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-4-600x553.png 600w" sizes="(max-width: 814px) 100vw, 814px" /></figure></div>
  2253.  
  2254.  
  2255. <p>After entering the credentials, select the applications that will use the account and click &#8220;Finish&#8221;. Your account will then be available in the Mail app.</p>
  2256.  
  2257.  
  2258. <div class="wp-block-image">
  2259. <figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="625" src="https://community.zextras.com/wp-content/uploads/2024/01/image-5-1024x625.png" alt="" class="wp-image-7600" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-5-1024x625.png 1024w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-300x183.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-768x469.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-420x256.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-500x305.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-800x488.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-1280x781.png 1280w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-48x29.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-90x55.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-150x92.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-200x122.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-400x244.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-600x366.png 600w, https://community.zextras.com/wp-content/uploads/2024/01/image-5-1400x855.png 1400w, https://community.zextras.com/wp-content/uploads/2024/01/image-5.png 1409w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>
  2260.  
  2261.  
  2262. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2263.  
  2264.  
  2265.  
  2266. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="When-is-worth-using-Split-Domain-?" style="color:#00506d">Mac Calendar</h2>
  2267.  
  2268.  
  2269.  
  2270. <p>Calendar data is transmitted using the CalDAV protocol. Its setting is also available in the System Preferences app under Internet Accounts.</p>
  2271.  
  2272.  
  2273.  
  2274. <p>In this section, click on the “Add Account…” button and select “Add Other Account…” in the list that appears. Select &#8220;CalDAV Account&#8221;. </p>
  2275.  
  2276.  
  2277. <div class="wp-block-image">
  2278. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="850" height="754" src="https://community.zextras.com/wp-content/uploads/2024/01/image-3.png" alt="" class="wp-image-7598" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-3.png 850w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-300x266.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-768x681.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-420x373.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-500x444.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-800x710.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-48x43.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-90x80.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-150x133.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-200x177.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-400x355.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-600x532.png 600w" sizes="(max-width: 850px) 100vw, 850px" /></figure></div>
  2279.  
  2280.  
  2281. <p>In the window that opens, select “Account type &#8211; Manual” and also enter the account name, password, and server address, which is the same as the POP3/IMAP server address. Click Sign In and select the apps that will use your account.</p>
  2282.  
  2283.  
  2284. <div class="wp-block-image">
  2285. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="839" height="760" src="https://community.zextras.com/wp-content/uploads/2024/01/image-6.png" alt="" class="wp-image-7602" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-6.png 839w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-300x272.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-768x696.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-420x380.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-500x453.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-800x725.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-48x43.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-90x82.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-150x136.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-200x181.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-400x362.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-6-600x544.png 600w" sizes="(max-width: 839px) 100vw, 839px" /></figure></div>
  2286.  
  2287.  
  2288. <p>A feature of this application on MacOS is that in connected calendars when creating appointments, it is not supported to display the free/busy data of participants in appointments and meetings when they are created.</p>
  2289.  
  2290.  
  2291. <div class="wp-block-image">
  2292. <figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="735" src="https://community.zextras.com/wp-content/uploads/2024/01/image-7-1024x735.png" alt="" class="wp-image-7604" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-7-1024x735.png 1024w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-300x215.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-768x551.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-420x301.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-500x359.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-800x574.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-48x34.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-90x65.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-150x108.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-200x144.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-400x287.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-7-600x431.png 600w, https://community.zextras.com/wp-content/uploads/2024/01/image-7.png 1063w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>
  2293.  
  2294.  
  2295. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2296.  
  2297.  
  2298.  
  2299. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="When-is-worth-using-Split-Domain-?" style="color:#00506d">Mac Contacts</h2>
  2300.  
  2301.  
  2302.  
  2303. <p>Calendar data is transmitted using the CardDAV protocol. Its setting is also available in the System Preferences app under Internet Accounts.</p>
  2304.  
  2305.  
  2306.  
  2307. <p>In this section, click on the “Add Account…” button and select “Add Other Account…” in the list that appears. Select &#8220;CardDAV Account&#8221;.</p>
  2308.  
  2309.  
  2310. <div class="wp-block-image">
  2311. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="850" height="754" src="https://community.zextras.com/wp-content/uploads/2024/01/image-3.png" alt="" class="wp-image-7598" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-3.png 850w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-300x266.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-768x681.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-420x373.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-500x444.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-800x710.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-48x43.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-90x80.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-150x133.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-200x177.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-400x355.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-3-600x532.png 600w" sizes="(max-width: 850px) 100vw, 850px" /></figure></div>
  2312.  
  2313.  
  2314. <p>In the window that opens, select “Account type &#8211; Manual” and also enter the account name, password, and server address, which is the same as the POP3/IMAP server address. Click &#8220;Login&#8221; to start using your address book.</p>
  2315.  
  2316.  
  2317. <div class="wp-block-image">
  2318. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="821" height="738" src="https://community.zextras.com/wp-content/uploads/2024/01/image-9.png" alt="" class="wp-image-7607" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-9.png 821w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-300x270.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-768x690.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-420x378.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-500x449.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-800x719.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-48x43.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-90x81.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-150x135.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-200x180.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-400x360.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-9-600x539.png 600w" sizes="(max-width: 821px) 100vw, 821px" /></figure></div>
  2319.  
  2320.  
  2321. <p>A feature of this application in MacOS is that it supports connecting only one &#8211; the last address book created in the account. If there are additional or shared address books, you will not be able to connect them in this application.</p>
  2322.  
  2323.  
  2324.  
  2325. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2326.  
  2327.  
  2328.  
  2329. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="When-is-worth-using-Split-Domain-?" style="color:#00506d">Thunderbird for Mac</h2>
  2330.  
  2331.  
  2332.  
  2333. <p>You can also connect your mailbox, address books, and calendars in this free and open-source email client. A significant advantage of this solution is full support for the CardDAV protocol and the ability to connect all Carbonio address books without exception. In addition, it has support for account auto-configuration if configured.</p>
  2334.  
  2335.  
  2336.  
  2337. <p>If auto-configuration is configured, or the IMAP/POP3 and SMTP server addresses match the typical names, it will be enough just to enter the display name, account name, and password, after which it will be possible to connect to the mail server. If this is not the case, you will have to manually configure the account by specifying addresses, ports, encryption type, and authentication mechanism. Typically, port 993 and SSL/TLS encryption are used for IMAP, and ports 465 and 587 are used for SMTP with SSL/TLS and STARTTLS encryption, respectively. POP3 connections typically use port 995 and SSL/TLS encryption.</p>
  2338.  
  2339.  
  2340. <div class="wp-block-image">
  2341. <figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="863" src="https://community.zextras.com/wp-content/uploads/2024/01/image-10-1024x863.png" alt="" class="wp-image-7608" srcset="https://community.zextras.com/wp-content/uploads/2024/01/image-10-1024x863.png 1024w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-300x253.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-768x647.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-420x354.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-500x421.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-800x674.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-48x40.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-90x76.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-150x126.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-200x169.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-400x337.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/image-10-600x506.png 600w, https://community.zextras.com/wp-content/uploads/2024/01/image-10.png 1075w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></div>
  2342.  
  2343.  
  2344. <p>After a successful login, you will be prompted to configure the connection of calendars and address books using the CalDAV and CardDAV protocols, respectively.</p>
  2345.  
  2346.  
  2347.  
  2348. <p>To connect to calendars, select “Connect to a remote calendar” and in the window that opens, select the location of the calendar as “Online”. Enter the username and specify the CalDAV server address with /dav/User_Name appendix, for example <code>mail.example.tld/dav/user@example.tld</code>.</p>
  2349.  
  2350.  
  2351.  
  2352. <p>After entering the password in the window that appears, a list of calendars available for connection will appear. Select the calendars you want to connect and click on the &#8220;Subscribe&#8221; button. This completes the connection of calendars.</p>
  2353.  
  2354.  
  2355.  
  2356. <p>To connect to address books, select &#8220;Connect to CardDAV Address Book&#8221;. Enter the username and specify the CalDAV server address with /dav/User_Name appendix, for example <code>mail.example.tld/dav/user@example.tld</code>.</p>
  2357.  
  2358.  
  2359.  
  2360. <p>After entering the password, a list of address books for connection will be displayed in the window that appears. Select the address books you need and click the &#8220;Continue&#8221; button. This completes the connection of address books.</p>
  2361.  
  2362.  
  2363.  
  2364. <p>Another convenient way to connect address books and calendars is the TbSync extension for Thunderbird. Install it and the “Provider for CalDAV &amp; CardDAV” extension and click on “TbSync: Pending” in the lower right corner of the Thunderbird window to open the account creation dialog.</p>
  2365.  
  2366.  
  2367.  
  2368. <p>In the window that opens, select “Account Actions &#8211; Add New Account &#8211; CalDAV &amp; CardDAV”.</p>
  2369.  
  2370.  
  2371.  
  2372. <p>In the window that opens, double-click “User Configuration” and enter your display name, account name, password, and specify the addresses of the CalDAV and CardDAV servers with the appendix /dav/, for example, <code>mail.example.tld/dav/</code>.</p>
  2373.  
  2374.  
  2375.  
  2376. <p>After successfully adding an account, check the box “Allow and sync this account” to display a list of all available CalDAV and CardDAV resources. Mark the calendars and address books you need, and also set the period for their synchronization with the server. Click on the &#8220;Sync now&#8221; button to synchronize data between client and server.</p>
  2377.  
  2378.  
  2379.  
  2380. <p>The advantage of using TbSync compared to the mechanism built into Thunderbird is the automatic synchronization of not only data from the marked resources but also the list of resources themselves, which facilitates the process of connecting resources created after setting up the mail client.</p>
  2381.  
  2382.  
  2383.  
  2384. <p>Calendars connected to Thunderbird correctly display users&#8217; free/busy information, which greatly simplifies the process of creating appointments and meetings.</p>
  2385.  
  2386.  
  2387.  
  2388. <p>Using this manual, Mac OS users can independently configure their devices to work with the Carbonio mail server.</p><p>The post <a href="https://community.zextras.com/connecting-carbonio-community-edition-emails-address-books-and-calendars-in-macos-carbonio-ce/">Connecting Carbonio Community Edition Emails, Address Books, and Calendars in MacOS | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  2389. </item>
  2390. <item>
  2391. <title>Password Security Policy in Carbonio Community Edition &#124; Carbonio CE</title>
  2392. <link>https://community.zextras.com/password-security-policy-in-carbonio-community-edition-carbonio-ce/</link>
  2393. <comments>https://community.zextras.com/password-security-policy-in-carbonio-community-edition-carbonio-ce/#respond</comments>
  2394. <dc:creator><![CDATA[Zextras]]></dc:creator>
  2395. <pubDate>Wed, 24 Jan 2024 08:43:23 +0000</pubDate>
  2396. <category><![CDATA[User Guide]]></category>
  2397. <category><![CDATA[Zextras Carbonio]]></category>
  2398. <category><![CDATA[Configuration]]></category>
  2399. <category><![CDATA[Security]]></category>
  2400. <category><![CDATA[Zextras Carbonio CE]]></category>
  2401. <guid isPermaLink="false">https://community.zextras.com/?p=7553</guid>
  2402.  
  2403. <description><![CDATA[<p>In this article, we will talk about how to set up a password security policy in Carbonio CE and how to get users to comply with it.</p>
  2404. <p>The post <a href="https://community.zextras.com/password-security-policy-in-carbonio-community-edition-carbonio-ce/">Password Security Policy in Carbonio Community Edition | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  2405. <content:encoded><![CDATA[<p>Strong and constantly changing passwords are the basis for protecting your accounts from hacking.&nbsp;This is why a strong password security policy is the first thing a Carbonio CE mail server administrator needs to set up to increase the level of security for accounts on the server.&nbsp;The second necessary action is to ensure strict compliance with password policy requirements by all users.&nbsp;In this article, we will talk about how to set up a password security policy in Carbonio CE and how to get users to comply with it.</p>
  2406.  
  2407.  
  2408.  
  2409. <p>The key points of a strong password policy are increased requirements for password strength and frequency of password replacement.&nbsp;Carbonio CE allows the administrator to not only configure these settings but also automate the monitoring of user compliance with them.</p>
  2410.  
  2411.  
  2412.  
  2413. <p>You can configure a password security policy both for individual users and for entire classes of service.&nbsp;The settings themselves can be changed in the graphical administrator console and in the command line.</p>
  2414.  
  2415.  
  2416.  
  2417. <p>In Carbonio&#8217;s Admin Panel, password security policy can be configured at the Class of Service &#8211; COS level.&nbsp;To do this, select the COS section in the right sidebar and select the Class of Service for which you will configure the password security policy.</p>
  2418.  
  2419.  
  2420.  
  2421. <p>Please note that the password policy settings you have applied will not take effect if you are using an external LDAP server or AD to authenticate users.</p>
  2422.  
  2423.  
  2424. <div class="wp-block-image">
  2425. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="2560" height="1440" src="https://community.zextras.com/wp-content/uploads/2023/11/image-4.png" alt="" class="wp-image-7554" srcset="https://community.zextras.com/wp-content/uploads/2023/11/image-4.png 2560w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-300x169.png 300w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1024x576.png 1024w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-768x432.png 768w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-420x236.png 420w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1536x864.png 1536w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-2048x1152.png 2048w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-500x281.png 500w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-800x450.png 800w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1280x720.png 1280w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1920x1080.png 1920w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-48x27.png 48w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-90x51.png 90w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-150x84.png 150w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-200x113.png 200w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-400x225.png 400w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-600x338.png 600w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1400x788.png 1400w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1440x810.png 1440w, https://community.zextras.com/wp-content/uploads/2023/11/image-4-1600x900.png 1600w" sizes="(max-width: 2560px) 100vw, 2560px" /></figure></div>
  2426.  
  2427.  
  2428. <p>The following options are available for configuration:</p>
  2429.  
  2430.  
  2431.  
  2432. <ul>
  2433. <li>Prevent user from changing password</li>
  2434.  
  2435.  
  2436.  
  2437. <li>Minimum number of unique passwords</li>
  2438.  
  2439.  
  2440.  
  2441. <li>Maximum password lifetime (days)</li>
  2442.  
  2443.  
  2444.  
  2445. <li>Maximum password length</li>
  2446.  
  2447.  
  2448.  
  2449. <li>Minimum password lifetime (days)</li>
  2450.  
  2451.  
  2452.  
  2453. <li>Minimum number of numbers or punctuation symbols.</li>
  2454.  
  2455.  
  2456.  
  2457. <li>Minimum password length</li>
  2458.  
  2459.  
  2460.  
  2461. <li>Minimum number of lowercase characters</li>
  2462.  
  2463.  
  2464.  
  2465. <li>Minimum number of digits</li>
  2466.  
  2467.  
  2468.  
  2469. <li>Minimum number of punctuation symbols</li>
  2470.  
  2471.  
  2472.  
  2473. <li>Minimum number of uppercase characters</li>
  2474.  
  2475.  
  2476.  
  2477. <li>Prohibition of dictionary passwords.</li>
  2478. </ul>
  2479.  
  2480.  
  2481.  
  2482. <p>On the command line, password security policy settings can be changed at both the Class of Service and user levels.</p>
  2483.  
  2484.  
  2485.  
  2486. <p>To change at the user level, use the commands, replacing&nbsp;<code>user@domain.tld</code>&nbsp;with your user name:</p>
  2487.  
  2488.  
  2489.  
  2490. <pre class="wp-block-code"><code>carbonio prov modifyAccount user@domain.tld zimbraFeatureChangePasswordEnabled
  2491.  
  2492. carbonio prov modifyAccount user@domain.tld zimbraPasswordEnforceHistory
  2493.  
  2494. carbonio prov modifyAccount user@domain.tld zimbraPasswordMaxAge
  2495.  
  2496. carbonio prov modifyAccount user@domain.tld zimbraPasswordMaxLength
  2497.  
  2498. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinAge
  2499.  
  2500. carbon prov modifyAccount user@domain.tld zimbraPasswordMinDigitsOrPuncs
  2501.  
  2502. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinLength
  2503.  
  2504. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinLowerCaseChars
  2505.  
  2506. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinNumericChars
  2507.  
  2508. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinPunctuationChars
  2509.  
  2510. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinUpperCaseChars
  2511.  
  2512. carbonio prov modifyAccount user@domain.tld zimbraPasswordMinAlphaChars</code></pre>
  2513.  
  2514.  
  2515.  
  2516. <p>By default, the user is allowed to create any password between 6 and 64 characters.</p>
  2517.  
  2518.  
  2519. <div class="wp-block-image">
  2520. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1597" height="511" src="https://community.zextras.com/wp-content/uploads/2023/11/image-5.png" alt="" class="wp-image-7556" srcset="https://community.zextras.com/wp-content/uploads/2023/11/image-5.png 1597w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-300x96.png 300w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-1024x328.png 1024w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-768x246.png 768w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-420x134.png 420w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-1536x491.png 1536w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-500x160.png 500w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-800x256.png 800w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-1280x410.png 1280w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-48x15.png 48w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-90x29.png 90w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-150x48.png 150w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-200x64.png 200w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-400x128.png 400w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-600x192.png 600w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-1400x448.png 1400w, https://community.zextras.com/wp-content/uploads/2023/11/image-5-1440x461.png 1440w" sizes="(max-width: 1597px) 100vw, 1597px" /></figure></div>
  2521.  
  2522.  
  2523. <p>To change at the Service Class level, use the commands, replacing default with the name of your Service Class:</p>
  2524.  
  2525.  
  2526.  
  2527. <pre class="wp-block-code"><code>carbonio prov modifyCOS default zimbraFeatureChangePasswordEnabled
  2528.  
  2529. carbonio prov modifyCOS default zimbraPasswordEnforceHistory
  2530.  
  2531. carbonio prov modifyCOS default zimbraPasswordMaxAge
  2532.  
  2533. carbonio prov modifyCOS default zimbraPasswordMaxLength
  2534.  
  2535. carbonio prov modifyCOS default zimbraPasswordMinAge
  2536.  
  2537. carbonio prov modifyCOS default zimbraPasswordMinDigitsOrPuncs
  2538.  
  2539. carbonio prov modifyCOS default zimbraPasswordMinLength
  2540.  
  2541. carbonio prov modifyCOS default zimbraPasswordMinLowerCaseChars
  2542.  
  2543. carbonio prov modifyCOS default zimbraPasswordMinNumericChars
  2544.  
  2545. carbonio prov modifyCOS default zimbraPasswordMinPunctuationChars
  2546.  
  2547. carbonio prov modifyCOS default zimbraPasswordMinUpperCaseChars
  2548.  
  2549. carbonio prov modifyCOS default zimbraPasswordMinAlphaChars</code></pre>
  2550.  
  2551.  
  2552.  
  2553. <p>If a user tries to change a password to one that does not comply with the password policy, he will receive a corresponding warning explaining which rules of the password security policy his password violates.</p>
  2554.  
  2555.  
  2556. <div class="wp-block-image">
  2557. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1264" height="609" src="https://community.zextras.com/wp-content/uploads/2023/11/image-6.png" alt="" class="wp-image-7557" srcset="https://community.zextras.com/wp-content/uploads/2023/11/image-6.png 1264w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-300x145.png 300w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-1024x493.png 1024w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-768x370.png 768w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-420x202.png 420w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-500x241.png 500w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-800x385.png 800w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-48x23.png 48w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-90x43.png 90w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-150x72.png 150w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-200x96.png 200w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-400x193.png 400w, https://community.zextras.com/wp-content/uploads/2023/11/image-6-600x289.png 600w" sizes="(max-width: 1264px) 100vw, 1264px" /></figure></div>
  2558.  
  2559.  
  2560. <p>Password policy settings for a user always take precedence over Class of Service settings.&nbsp;For example, if a minimum password length of 10 characters is specified at the COS level, and the settings of a user included in this Class of Service are 8 characters, then the user will be able to change the password containing 8 characters.</p>
  2561.  
  2562.  
  2563.  
  2564. <p>Another password security policy setting is how Carbonio behaves when a password is entered incorrectly.&nbsp;The administrator can configure both for an individual user and an entire Class of Service:</p>
  2565.  
  2566.  
  2567.  
  2568. <ul>
  2569. <li>Enable failed login blocking</li>
  2570.  
  2571.  
  2572.  
  2573. <li>Number of valid consecutive failed entries</li>
  2574.  
  2575.  
  2576.  
  2577. <li>Account lock time</li>
  2578.  
  2579.  
  2580.  
  2581. <li>Time intervals with unsuccessful logins, after which the account is blocked</li>
  2582. </ul>
  2583.  
  2584.  
  2585. <div class="wp-block-image">
  2586. <figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1612" height="323" src="https://community.zextras.com/wp-content/uploads/2023/11/image-7.png" alt="" class="wp-image-7558" srcset="https://community.zextras.com/wp-content/uploads/2023/11/image-7.png 1612w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-300x60.png 300w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-1024x205.png 1024w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-768x154.png 768w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-420x84.png 420w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-1536x308.png 1536w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-500x100.png 500w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-800x160.png 800w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-1280x256.png 1280w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-48x10.png 48w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-90x18.png 90w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-150x30.png 150w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-200x40.png 200w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-400x80.png 400w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-600x120.png 600w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-1400x281.png 1400w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-1440x289.png 1440w, https://community.zextras.com/wp-content/uploads/2023/11/image-7-1600x321.png 1600w" sizes="(max-width: 1612px) 100vw, 1612px" /></figure></div>
  2587.  
  2588.  
  2589. <p>The same settings can be changed in the command line both at the individual user level and at the Class of Service level.&nbsp;At the user level, this is done using the following commands:</p>
  2590.  
  2591.  
  2592.  
  2593. <pre class="wp-block-code"><code>carbonio prov modifyAccount user@domain.tld zimbraPasswordLockoutEnabled
  2594.  
  2595. carbonio prov modifyAccount user@domain.tld zimbraPasswordLockoutMaxFailures
  2596.  
  2597. carbonio prov modifyAccount user@domain.tld zimbraPasswordLockoutDuration
  2598.  
  2599. carbonio prov modifyAccount user@domain.tld zimbraPasswordLockoutFailureLifetime</code></pre>
  2600.  
  2601.  
  2602.  
  2603. <p>At the COS level:</p>
  2604.  
  2605.  
  2606.  
  2607. <pre class="wp-block-code"><code>carbonio prov modifyCOS default zimbraPasswordLockoutEnabled
  2608.  
  2609. carbonio prov modifyCOS default zimbraPasswordLockoutMaxFailures
  2610.  
  2611. carbonio prov modifyCOS default zimbraPasswordLockoutDuration
  2612.  
  2613. carbonio prov modifyCOS default zimbraPasswordLockoutFailureLifetime</code></pre>
  2614.  
  2615.  
  2616.  
  2617. <p>Note that although the idea of ​​blocking accounts for unsuccessful login attempts is attractive from the point of view of increasing the security of the server and user data, in practice it is not recommended to use it.&nbsp;The main problem here is that attempts to change the password can occur without the knowledge of the user himself, which will lead to a situation where the user will not be able to work normally due to the fact that the attacker decided to brute force his account password.&nbsp;This is fraught with downtime and losses for the enterprise</p>
  2618.  
  2619.  
  2620.  
  2621. <p>Much more effective in this regard is protection against brute force using the Fail2ban utility, which bans not the account, but the attacker’s IP address for unsuccessful login attempts.&nbsp;Therefore, even during password brute force by an attacker, the account of the attacked user will remain operational.</p>
  2622.  
  2623.  
  2624.  
  2625. <p>You can install Fail2ban in Ubuntu 20.04 from the standard package manager sudo apt-get install fail2ban.&nbsp;After this, create a file /etc/fail2ban/filter.d/carbonio.conf and write the following regular expression in it:</p>
  2626.  
  2627.  
  2628.  
  2629. <pre class="wp-block-code"><code>&#91;Definition]
  2630.  
  2631. failregex = \&#91;ip=&lt;HOST&gt;;\] account - authentication failed for .* \(no such account\)$
  2632.  
  2633. \&#91;ip=&lt;HOST&gt;;\] security - cmd=Auth; .* error=authentication failed for .*, invalid password;$
  2634.  
  2635. ;oip=&lt;HOST&gt;;.* security - cmd=Auth; .* protocol=soap; error=authentication failed for .* invalid password;$
  2636.  
  2637. \&#91;oip=&lt;HOST&gt;;.* SoapEngine - handler exception: authentication failed for .*, account not found$
  2638.  
  2639. WARN .*;ip=&lt;HOST&gt;;ua=CarbonioWebClient .* security - cmd=AdminAuth; .* error=authentication failed for .*;$
  2640.  
  2641. NOQUEUE: reject: RCPT from .*\&#91;&lt;HOST&gt;\]: 550 5.1.1 .*: Recipient address rejected:</code></pre>
  2642.  
  2643.  
  2644.  
  2645. <p>Save your changes and edit the sudo nano /etc/fail2ban/jail.local file.&nbsp;Add the following rules for monitoring log files to it:</p>
  2646.  
  2647.  
  2648.  
  2649. <pre class="wp-block-code"><code>&#91;carbonio-account]
  2650.  
  2651. enabled = true
  2652.  
  2653. filter = carbonio
  2654.  
  2655. action = iptables-allports&#91;name=carbonio-account]
  2656.  
  2657. sendmail&#91;name=carbonio-account, dest=zextras@example.tld]
  2658.  
  2659. logpath = /opt/zextras/log/mailbox.log
  2660.  
  2661. bantime = 600
  2662.  
  2663. maxretry = 5
  2664.  
  2665. &#91;carbonio-audit]
  2666.  
  2667. enabled = true
  2668.  
  2669. filter = carbonio
  2670.  
  2671. action = iptables-allports&#91;name=carbonio-audit]
  2672.  
  2673. sendmail&#91;name=Carbonio-audit, dest=zextras@example.tld]
  2674.  
  2675. logpath = /opt/zextras/log/audit.log
  2676.  
  2677. bantime = 600
  2678.  
  2679. maxretry = 5
  2680.  
  2681. &#91;carbonio-recipient]
  2682.  
  2683. enabled = true
  2684.  
  2685. filter = carbonio
  2686.  
  2687. action = iptables-allports&#91;name=carbonio-recipient]
  2688.  
  2689. sendmail&#91;name=Carbonio-recipient, dest=zextras@example.tld]
  2690.  
  2691. logpath = /var/log/carbonio.log
  2692.  
  2693. bantime = 172800
  2694.  
  2695. maxretry = 5
  2696.  
  2697. &#91;postfix]
  2698.  
  2699. enabled = true
  2700.  
  2701. filter = postfix
  2702.  
  2703. action = iptables-multiport&#91;name=postfix, port=smtp, protocol=tcp]
  2704.  
  2705. sendmail-buffered&#91;name=Postfix, dest=zextras@example.tld]
  2706.  
  2707. logpath = /var/log/carbonio.log
  2708.  
  2709. bantime = 172800
  2710.  
  2711. maxretry = 5</code></pre>
  2712.  
  2713.  
  2714.  
  2715. <p>The changes we made are configured to monitor entries in the Carbonio logs and, if suspicious activity is detected, limit the offender’s access to the server by his IP address.&nbsp;Thus, when attempting brute force, it will not be the Carbonio account that will be banned, but the attacker who is trying to guess the password.</p>
  2716.  
  2717.  
  2718.  
  2719. <p>Save your changes and open the&nbsp;<code>/etc/fail2ban/action.d/sendmail.conf</code>&nbsp;file.&nbsp;In it,&nbsp;replace the line&nbsp;<code>Fail2Ban" | /usr/sbin/sendmail -f &lt;sender&gt; &lt;dest&gt; with&nbsp;Fail2Ban" |&nbsp;/opt/zextras/common/sbin/sendmail -f &lt;sender&gt; &lt;dest&gt;</code>.</p>
  2720.  
  2721.  
  2722.  
  2723. <p>Save the changes and restart Fail2ban for them to take effect</p>
  2724.  
  2725.  
  2726.  
  2727. <pre class="wp-block-code"><code>service fail2ban restart</code></pre>
  2728.  
  2729.  
  2730.  
  2731. <p>You can check the fail2ban status using a command like</p>
  2732.  
  2733.  
  2734.  
  2735. <pre class="wp-block-code"><code><code>fail2ban-client status carbonio-audit</code></code></pre>
  2736.  
  2737.  
  2738.  
  2739. <p>Its output will display the number of times the rule was triggered and other information.</p><p>The post <a href="https://community.zextras.com/password-security-policy-in-carbonio-community-edition-carbonio-ce/">Password Security Policy in Carbonio Community Edition | Carbonio CE</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  2740. <wfw:commentRss>https://community.zextras.com/password-security-policy-in-carbonio-community-edition-carbonio-ce/feed/</wfw:commentRss>
  2741. <slash:comments>0</slash:comments>
  2742. </item>
  2743. <item>
  2744. <title>Introducing Carbonio Community Edition: The Best Alternative to Zimbra OSE &#124; Carbonio</title>
  2745. <link>https://community.zextras.com/introducing-carbonio-community-edition-the-best-alternative-to-zimbra-ose-carbonio/</link>
  2746. <comments>https://community.zextras.com/introducing-carbonio-community-edition-the-best-alternative-to-zimbra-ose-carbonio/#respond</comments>
  2747. <dc:creator><![CDATA[Arman Khosravi]]></dc:creator>
  2748. <pubDate>Tue, 09 Jan 2024 11:30:05 +0000</pubDate>
  2749. <category><![CDATA[Blog]]></category>
  2750. <category><![CDATA[Zextras Carbonio]]></category>
  2751. <category><![CDATA[Admin Guide]]></category>
  2752. <category><![CDATA[Digital Workplace]]></category>
  2753. <category><![CDATA[Zextras Carbonio CE]]></category>
  2754. <guid isPermaLink="false">https://community.zextras.com/?p=7573</guid>
  2755.  
  2756. <description><![CDATA[<p>Unleash the future with Carbonio CE – a groundbreaking release redefining performance and sustainability in the era of digital workplace collaboration.</p>
  2757. <p>The post <a href="https://community.zextras.com/introducing-carbonio-community-edition-the-best-alternative-to-zimbra-ose-carbonio/">Introducing Carbonio Community Edition: The Best Alternative to Zimbra OSE | Carbonio</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  2758. <content:encoded><![CDATA[<p>As of 2023, Zimbra OSE will reach End-of-Life (EOL). With its ceasing support, current users face the challenge of finding a suitable alternative &#8211; and that&#8217;s precisely where Carbonio CE shines. Carbonio CE webmail system is a modern-looking platform and offers robust community support and regular updates.</p>
  2759.  
  2760.  
  2761.  
  2762. <p>What sets Carbonio CE apart is its ability to facilitate an easy transition for all, resulting in no need for extensive or exhausting training for administration.</p>
  2763.  
  2764.  
  2765.  
  2766. <p>Carbonio CE offers comprehensive features, including email management, intuitive calendaring, chat, video chats, file management, collaborative document editing, and enhanced user experiences. Additionally, its dedicated iOS and Android apps ensure seamless accessibility across devices.</p>
  2767.  
  2768.  
  2769.  
  2770. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2771.  
  2772.  
  2773.  
  2774. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Why-Carbonio-CE-is-Your-Best-Logical-Alternative-to-Zimbra-OSE" style="color:#00506d">Why Carbonio CE is Your Best Alternative</h2>
  2775.  
  2776.  
  2777.  
  2778. <p>Consider these key points to understand why Carbonio CE stands out as the most compelling and logical alternative:</p>
  2779.  
  2780.  
  2781.  
  2782. <ul>
  2783. <li><strong>Structural Consistency</strong>: Carbonio CE maintains many similarities crafting a seamless learning curve for system administrators.</li>
  2784.  
  2785.  
  2786.  
  2787. <li><strong>Command Line Interface (CLI)</strong>: As the system&#8217;s backbone, CLI allows administrators to perform tasks swiftly meaning admins can carry over their expertise without learning new procedures.</li>
  2788.  
  2789.  
  2790.  
  2791. <li><strong>Effortless Migration</strong>: One of the most significant advantages of transitioning from Zimbra OSE to Carbonio CE is the ease of migration. With detailed guides provided by Zextras, migration is a breeze. The intuitive nature of Carbonio CE to ensures a streamlined transition process. This reduces time and effort and significantly minimizes any risk in transitioning to a new system.</li>
  2792.  
  2793.  
  2794.  
  2795. <li><strong>Patches and Updates</strong>: Carbonio CE updates your system with regular patches and version updates. The dedicated forum community is always ready to assist with your queries and concerns.</li>
  2796.  
  2797.  
  2798.  
  2799. <li><strong>User-friendly Admin Interface:</strong> Carbonio CE introduces an intuitive, modern graphical administrative console, the Admin Panel. Tailored to simplify repetitive administrative tasks, it significantly enhances the daily workflow, making life easier for system administrators.</li>
  2800.  
  2801.  
  2802.  
  2803. <li><strong>Revamped Architecture</strong>: Carbonio CE introduces an enhanced architecture, integrating contemporary enhancements. This updated structure ensures heightened security measures and superior functionality for seamless email management.</li>
  2804. </ul>
  2805.  
  2806.  
  2807.  
  2808. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2809.  
  2810.  
  2811.  
  2812. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="An-Overview-of-Carbonio-CE's-Enhanced-Architecture" style="color:#00506d">An Overview of Carbonio CE&#8217;s Enhanced Architecture</h2>
  2813.  
  2814.  
  2815.  
  2816. <p>Carbonio CE adopts a novel and enhanced architecture that ensures secure email exchanges and effective management of emails, calendars, and contacts. The core components of its architecture include:</p>
  2817.  
  2818.  
  2819.  
  2820. <ol start="1">
  2821. <li><strong>Directory Server:</strong> Manages the configuration of the infrastructure and controls the provisioning of users and domains.</li>
  2822.  
  2823.  
  2824.  
  2825. <li><strong>Carbonio Mesh</strong>: Provides secure service-to-service communication within and across infrastructure, including on-premises and cloud environments. All major microservice-based cloud platforms use this. <strong>Some key benefits</strong> of service mesh are service discovery in multi-server installation/deployment, system component health monitoring/load balancing/traffic management/encryption, and many more.</li>
  2826.  
  2827.  
  2828.  
  2829. <li><strong>Proxy:</strong> Serves as a secure access point to email accounts, eliminating any direct public access to the AppServers and backend services.</li>
  2830.  
  2831.  
  2832.  
  2833. <li><strong>MTA:</strong> Responsible for email transfer, forwarding, filtering, and protection.</li>
  2834.  
  2835.  
  2836.  
  2837. <li><strong>AppServer:</strong> Manages and stores account data, including emails, contacts, and calendar appointments.</li>
  2838.  
  2839.  
  2840.  
  2841. <li><strong>Carbonio Monitoring:</strong> Replaces the Logger Role, offering centralized log facilities that keep a comprehensive history of system events, aiding in easier tracking of past events.</li>
  2842. </ol>
  2843.  
  2844.  
  2845.  
  2846. <p>Carbonio CE is carving an apex in email and domain management. It leverages the advantages of common email platforms and builds upon them, providing a modern and sleek email management solution. Its architecture, updates, community support, and user experience all come together to deliver a robust, reliable, and familiar tool for administrators shifting away from Zimbra OSE. With the end of support for Zimbra OSE, Carbonio CE provides a compelling alternative for current users.</p>
  2847.  
  2848.  
  2849.  
  2850. <div style="height:49px" aria-hidden="true" class="wp-block-spacer"></div>
  2851.  
  2852.  
  2853.  
  2854. <div class="wp-block-buttons is-horizontal is-content-justification-left is-layout-flex wp-container-core-buttons-layout-2 wp-block-buttons-is-layout-flex">
  2855. <div class="wp-block-button is-style-fill" id="whitepaper"><a class="wp-block-button__link has-white-color has-text-color has-background wp-element-button" href="https://lp.zextras.com/carbonio-ce/?utm_source=zose_alt_article&amp;utm_medium=community&amp;utm_campaign=carbonio_ce_launch" style="border-radius:2px;background-color:#00506d">Read more about Carbonio Community Edition</a></div>
  2856. </div><p>The post <a href="https://community.zextras.com/introducing-carbonio-community-edition-the-best-alternative-to-zimbra-ose-carbonio/">Introducing Carbonio Community Edition: The Best Alternative to Zimbra OSE | Carbonio</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  2857. <wfw:commentRss>https://community.zextras.com/introducing-carbonio-community-edition-the-best-alternative-to-zimbra-ose-carbonio/feed/</wfw:commentRss>
  2858. <slash:comments>0</slash:comments>
  2859. </item>
  2860. <item>
  2861. <title>Carbonio Community Edition Is Now Fully Equipped and Complete! &#124; Carbonio</title>
  2862. <link>https://community.zextras.com/carbonio-community-edition-is-now-fully-equipped-and-complete-carbonio/</link>
  2863. <comments>https://community.zextras.com/carbonio-community-edition-is-now-fully-equipped-and-complete-carbonio/#respond</comments>
  2864. <dc:creator><![CDATA[Arman Khosravi]]></dc:creator>
  2865. <pubDate>Tue, 09 Jan 2024 11:29:55 +0000</pubDate>
  2866. <category><![CDATA[Blog]]></category>
  2867. <category><![CDATA[Zextras Carbonio]]></category>
  2868. <category><![CDATA[Admin Guide]]></category>
  2869. <category><![CDATA[Digital Workplace]]></category>
  2870. <category><![CDATA[Zextras Carbonio CE]]></category>
  2871. <guid isPermaLink="false">https://community.zextras.com/?p=7571</guid>
  2872.  
  2873. <description><![CDATA[<p>Experience the future of elegance and performance with Carbonio CE, our latest release. Unmatched features with  technology in every detail.</p>
  2874. <p>The post <a href="https://community.zextras.com/carbonio-community-edition-is-now-fully-equipped-and-complete-carbonio/">Carbonio Community Edition Is Now Fully Equipped and Complete! | Carbonio</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></description>
  2875. <content:encoded><![CDATA[<p>Q4 2023: Carbonio Community Edition (Carbonio CE) is fully developed with features ready to empower your digital workspace.</p>
  2876.  
  2877.  
  2878.  
  2879. <p>Carbonio Community Edition (Carbonio CE) is a <strong>free and open-source</strong> (FOSS) email and collaboration platform designed by Zextras. It is a complete email solution, allowing organizations to maintain digital sovereignty through on-premises <strong>self-hosted servers</strong>, ensuring privacy and control over your communications.</p>
  2880.  
  2881.  
  2882.  
  2883. <p>As we arrive at the end of 2023, Carbonio Community Edition (Carbonio CE) has evolved through an iterative process driven by community feedback, continuously integrating new features and updates. These enhancements have fortified its capabilities, making it poised and <strong>fully equipped</strong> for deployment as an excellent choice for digital transformation.</p>
  2884.  
  2885.  
  2886.  
  2887. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2888.  
  2889.  
  2890.  
  2891. <h2 class="wp-block-heading has-text-color has-medium-font-size" style="color:#00506d">Product Evolution</h2>
  2892.  
  2893.  
  2894.  
  2895. <figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1200" height="1200" src="https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline.png" alt="" class="wp-image-7590" srcset="https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline.png 1200w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-300x300.png 300w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-1024x1024.png 1024w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-150x150.png 150w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-768x768.png 768w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-420x420.png 420w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-500x500.png 500w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-800x800.png 800w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-48x48.png 48w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-90x90.png 90w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-200x200.png 200w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-400x400.png 400w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-600x600.png 600w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-24x24.png 24w, https://community.zextras.com/wp-content/uploads/2024/01/CE_timeline-96x96.png 96w" sizes="(max-width: 1200px) 100vw, 1200px" /></figure>
  2896.  
  2897.  
  2898.  
  2899. <p>The journey of Carbonio Community Edition (Carbonio CE) over the past two years has been marked by significant milestones, continual improvements, and strategic updates, all propelled by invaluable input and feedback from our vibrant community. These gradual improvements have propelled Carbonio CE towards its current state of completion, fulfilling its original vision, i.e. <strong>providing users with a standalone, private platform for the digital workplace free from third-party integrations</strong>.</p>
  2900.  
  2901.  
  2902.  
  2903. <p>This journey can be delineated through significant iterations:</p>
  2904.  
  2905.  
  2906.  
  2907. <p><strong>1st Iteration: Initial Release</strong><br>Carbonio CE makes its debut, marking its availability with Ubuntu 20.04 LTS.</p>
  2908.  
  2909.  
  2910.  
  2911. <p><strong>2nd Iteration: Files and Co-editing</strong><br>Integration of a full-fledged file management and collaborative editing solution within the platform.</p>
  2912.  
  2913.  
  2914.  
  2915. <p><strong>3rd Iteration: Admin Panel</strong><br>The introduction of the Carbonio CE Admin Panel laid the groundwork for a comprehensive administration console.</p>
  2916.  
  2917.  
  2918.  
  2919. <p><strong>4th Iteration: RHEL 8</strong><br>Support extended to Red Hat Enterprise Linux 8, widening the platform&#8217;s compatibility and deployment options.</p>
  2920.  
  2921.  
  2922.  
  2923. <p><strong>5th Iteration: Chats and Video Chats</strong><br>Enhanced communications through secure, integrated private text messaging and video chats within Carbonio CE.</p>
  2924.  
  2925.  
  2926.  
  2927. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2928.  
  2929.  
  2930.  
  2931. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Chats-and-Video-Meetings:-Final-Pieces-of-the-Puzzle" style="color:#00506d">Chats and Video Chats: Final Pieces of the Puzzle</h2>
  2932.  
  2933.  
  2934.  
  2935. <p>With the recent addition of <strong>text messaging</strong> and <strong>video chats</strong>, Carbonio CE has now achieved a comprehensive set of functionalities that align precisely with the original vision of the software, making it a complete digital workplace solution. These integrations represent the final pieces of the puzzle, enriching the platform&#8217;s communication capabilities and solidifying its status as a <strong>complete</strong> and <strong>self-contained environment</strong> for organizations seeking privacy.</p>
  2936.  
  2937.  
  2938.  
  2939. <p>The Chats significantly enhances user value by centralizing communication tools within the platform. This integration streamlines workflows, enabling users to effortlessly connect, collaborate, and hold discussions without switching between multiple applications or compromising security.</p>
  2940.  
  2941.  
  2942.  
  2943. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2944.  
  2945.  
  2946.  
  2947. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Hardware-Requirements" style="color:#00506d">Hardware Requirements</h2>
  2948.  
  2949.  
  2950.  
  2951. <p>The following table illustrates the requirements for each node within a Carbonio CE installation, which can vary based on the infrastructure&#8217;s size, encompassing the services operational on each node and the quantity and capacity of individual mailboxes. For instance, if a 10GB quota is planned for each of the 20 users, this table indicates an approximate total disk space requirement of 250GB to accommodate the specified quotas.</p>
  2952.  
  2953.  
  2954.  
  2955. <figure class="wp-block-table is-style-stripes"><table><tbody><tr><td>CPU</td><td>Intel/AMD 64-bit 4 cores min./8+ cores vCPU</td></tr><tr><td>RAM</td><td>16 GB min., 32+ GB recommended</td></tr><tr><td>Disk space (operating system and Carbonio CE)</td><td>50 GB</td></tr></tbody></table></figure>
  2956.  
  2957.  
  2958.  
  2959. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2960.  
  2961.  
  2962.  
  2963. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Software-Requirements" style="color:#00506d">Software Requirements</h2>
  2964.  
  2965.  
  2966.  
  2967. <p>Carbonio CE is optimized for 64-bit CPUs and is compatible with Ubuntu 20.04 LTS Server Edition or RHEL 8 installations, ensuring seamless integration for node deployment.</p>
  2968.  
  2969.  
  2970.  
  2971. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  2972.  
  2973.  
  2974.  
  2975. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Virtualization-Platforms" style="color:#00506d">Virtualization Platforms</h2>
  2976.  
  2977.  
  2978.  
  2979. <p>Here are the supported virtualization platforms for Carbonio CE:</p>
  2980.  
  2981.  
  2982.  
  2983. <ul>
  2984. <li>VMware vSphere 6.x</li>
  2985.  
  2986.  
  2987.  
  2988. <li>VMware vSphere 7.x</li>
  2989.  
  2990.  
  2991.  
  2992. <li>XenServer</li>
  2993.  
  2994.  
  2995.  
  2996. <li>KVM</li>
  2997. </ul>
  2998.  
  2999.  
  3000.  
  3001. <p>Virtualbox &amp; VMware Workstation are intended solely for testing purposes.</p>
  3002.  
  3003.  
  3004.  
  3005. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  3006.  
  3007.  
  3008.  
  3009. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Availability-and-Access" style="color:#00506d">Availability and Access</h2>
  3010.  
  3011.  
  3012.  
  3013. <p>Download Carbonio CE for free from our official website here:</p>
  3014.  
  3015.  
  3016.  
  3017. <p><a href="https://zextras.com/carbonio-community-edition#discoverproduct" target="_blank" rel="noopener" title=""><strong>Open Source E-mail and Collaboration | Carbonio CE | Zextras</strong></a></p>
  3018.  
  3019.  
  3020.  
  3021. <p>You can access all official repositories and supported platforms, such as Ubuntu 20.04 LTS and Red Hat Enterprise Linux 8. The <a href="https://docs.zextras.com/carbonio-ce/html/index.html"><strong>documentation website</strong></a> also provides comprehensive <a href="https://docs.zextras.com/carbonio-ce/html/install/toc.html"><strong>installation guides</strong></a>, ensuring smooth deployment for new and experienced admins.</p>
  3022.  
  3023.  
  3024.  
  3025. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  3026.  
  3027.  
  3028.  
  3029. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Effortless-Migration" style="color:#00506d">Effortless Migration</h2>
  3030.  
  3031.  
  3032.  
  3033. <p>We have also provided <a href="https://community.zextras.com/category/zextras-carbonio/carbonio-admin-guide/migration/"><strong>migration guides</strong></a> from Zimbra, Google Workspace, and Microsoft 365, enabling users to transition smoothly from these platforms to Carbonio CE. These guides offer step-by-step instructions to facilitate hassle-free migrations, ensuring continuity and ease of use.</p>
  3034.  
  3035.  
  3036.  
  3037. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  3038.  
  3039.  
  3040.  
  3041. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Support-and-Community" style="color:#00506d">Support and Community</h2>
  3042.  
  3043.  
  3044.  
  3045. <p>We also invite our users to engage in <a href="https://community.zextras.com/forum/carbonio/"><strong>community forums</strong></a> or discussion boards to seek advice, collaborate, and share insights with fellow users and experts. The platform fosters a collaborative community atmosphere, encouraging users to collectively exchange ideas, troubleshoot issues, and discover best practices for leveraging Carbonio CE.</p>
  3046.  
  3047.  
  3048.  
  3049. <p>Our dedicated technical and development team remains actively engaged, committed to personally assisting every user, addressing their queries, and ensuring a supportive environment for seamless platform utilization. We are here to facilitate and guide, fostering a vibrant and responsive community dedicated to harnessing the full capabilities of Carbonio CE.</p>
  3050.  
  3051.  
  3052.  
  3053. <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
  3054.  
  3055.  
  3056.  
  3057. <h2 class="wp-block-heading has-text-color has-medium-font-size" id="Future-Roadmap" style="color:#00506d">Future Roadmap</h2>
  3058.  
  3059.  
  3060.  
  3061. <p>Moving forward, the trend of evolution and refinement in Carbonio CE will persist, driven by continuous community feedback, ensuring ongoing enhancements. <strong>Regular updates</strong> will remain integral, not just for the platform&#8217;s growth but also to fortify security measures even more.</p>
  3062.  
  3063.  
  3064.  
  3065. <p>This commitment to evolution aligns with our vision of making Carbonio CE the foremost open-source digital workplace solution. In line with Zextras&#8217; mission, we aim to empower organizations with a robust, user-driven platform that evolves in tandem with the community&#8217;s needs, ensuring it remains the pinnacle of FOSS (Free and Open Source Software) digital workplace solutions.</p>
  3066.  
  3067.  
  3068.  
  3069. <div style="height:49px" aria-hidden="true" class="wp-block-spacer"></div>
  3070.  
  3071.  
  3072.  
  3073. <div class="wp-block-buttons is-horizontal is-content-justification-left is-layout-flex wp-container-core-buttons-layout-3 wp-block-buttons-is-layout-flex">
  3074. <div class="wp-block-button is-style-fill" id="whitepaper"><a class="wp-block-button__link has-white-color has-text-color has-background wp-element-button" href="https://lp.zextras.com/carbonio-ce/?utm_source=launch_article&amp;utm_medium=community&amp;utm_campaign=carbonio_ce_launch" style="border-radius:2px;background-color:#00506d">Read more about Carbonio Community Edition</a></div>
  3075. </div><p>The post <a href="https://community.zextras.com/carbonio-community-edition-is-now-fully-equipped-and-complete-carbonio/">Carbonio Community Edition Is Now Fully Equipped and Complete! | Carbonio</a> first appeared on <a href="https://community.zextras.com">Zextras Community</a>.</p>]]></content:encoded>
  3076. <wfw:commentRss>https://community.zextras.com/carbonio-community-edition-is-now-fully-equipped-and-complete-carbonio/feed/</wfw:commentRss>
  3077. <slash:comments>0</slash:comments>
  3078. </item>
  3079. </channel>
  3080. </rss>
  3081.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=https%3A//community.zextras.com/feed/

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda