Posts

Showing posts from November, 2020

Zimbra Shared Mailbox Toolkit

Step:1 Follow below mentioned installation process: wget https://raw.githubusercontent.com/Zimbra-Community/shared-mailbox-toolkit/master/shared-mailbox-toolkit-installer.sh -O /tmp/shared-mailbox-toolkit-installer.sh chmod +rx /tmp/shared-mailbox-toolkit-installer.sh /tmp/shared-mailbox-toolkit-installer.sh Step:2 Restart the mailbox service Restart zmmaiboxdctl Step:3 Share mailbox from the admin panel tool & migration option.  Ref:  https://zimbra.org/extend/items/view/zimbra-shared-mailbox-toolkit

Add random images from unsplash.com to Zimbra login page

Image
Step: 1 Go to https://github.com/Zimbra-Community/unsplash Step: 2 Open zimbra server in cli Step: 3 Go to /opt/zimbra/jetty/webapps/zimbra/public directory Step: 4 Edit login.jsp file Step: 5 Append before </body> the following css: [Line-784] <style>      .LoginScreen {          background-color    : #777 !important;          background-image    : url('https://source.unsplash.com/random/featured/?nature') !important;          background-position : center;          background-repeat   : no-repeat;          background-size     : cover;      }      </style> Step: 6 Save and exit. Step: 7 Restart Zimbra Service.

How to remove ***UNCHECKED*** from subject line in zimbra

In order to turn off this subject tagging, chmod u+w and go into /opt/zimbra/common/sbin/amavisd and edit this line: $undecipherable_subject_tag = '***UNCHECKED*** '; changing it to: $undecipherable_subject_tag = ''; chmod u-w /opt/zimbra/common/sbin/amavisd then restart amavisd: su - zimbra zmamavisdctl restart Tested# Release 8.8.6.GA.1906.UBUNTU16.64 UBUNTU16_64 FOSS edition. Ref: https://forums.zimbra.org/viewtopic.php?t=36425