<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: arial,helvetica,sans-serif; font-size: 12pt; color: #000000'>looks like easter egg ;-)<br><br><div><span name="x"></span>  ___________________________________<br> /                                   \<br>/-------------------------------------\<br>|  Guy CARRÉ                          |<br>|  *************                      |<br>|  PostMaster - WikiMaster - SysAdmin |<br>|                                     |<br>| "Free Your Mind. Think Open Source" |<br>|  april.org                          |<br>|                                     |<br>|_____________________________________|<span name="x"></span><br></div><br><hr id="zwchr"><div style="color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><b>De: </b>"Quanah Gibson-Mount" <quanah@zimbra.com><br><b>À: </b>"Guy CARRÉ" <guycarre@free.fr><br><b>Cc: </b>"Keith McDermott" <keithmcd@purdue.edu>, devel@lists.zetalliance.org, users@lists.zetalliance.org, "Barry De Graaff" <barrydg@zetalliance.org><br><b>Envoyé: </b>Mardi 7 Juin 2016 19:59:45<br><b>Objet: </b>Re: [Devel] [Users] checkhack-zimbra-preferences shell escape issues<br><br>8.7 MTA it is already there in /opt/zimbra/common/sbin:<br><br>[quanah@edge01 ~]$ ls /opt/zimbra/common/sbin/mysqld<br>/opt/zimbra/common/sbin/mysqld<br><br><br>8.6 and prior MTA's, it is in /opt/zimbra/mta/ somewhere IIRC.<br><br>--Quanah<br><br>--On Tuesday, June 07, 2016 8:39 PM +0200 Guy CARRÉ <guycarre@free.fr> <br>wrote:<br><br>><br>>  Hi,<br>><br>>  I was looking for installing MariaDB with Zimbra MTA, but how to do that<br>> without installing mailboxd service ?<br>><br>>  Regards,<br>><br>><br>>   ___________________________________<br>>  /                                   \<br>> /-------------------------------------\<br>>|  Guy CARRÉ                          |<br>>|  *************                      |<br>>|  PostMaster - WikiMaster - SysAdmin |<br>>|                                     |<br>>| "Free Your Mind. Think Open Source" |<br>>|  april.org                          |<br>>|                                     |<br>>| _____________________________________|<br>><br>><br>> __________________________________________________<br>><br>> De: "Quanah Gibson-Mount" <quanah@zimbra.com><br>> À: "Barry De Graaff" <barrydg@zetalliance.org><br>> Cc: "Guy CARRÉ" <guycarre@free.fr>, "Keith McDermott"<br>> <keithmcd@purdue.edu>, devel@lists.zetalliance.org,<br>> users@lists.zetalliance.org<br>> Envoyé: Mardi 7 Juin 2016 16:58:35<br>> Objet: Re: [Devel] [Users] checkhack-zimbra-preferences shell escape<br>> issues<br>><br>> Yeah, that should be fine.  Although there are already C, Java, and Perl<br>> clients installed.  Since cluebringer is Perl, I'd think you wouldn't<br>> need<br>> anything outside of what's already present.<br>><br>> --Quanah<br>><br>> --On Tuesday, June 07, 2016 3:52 PM +0000 Barry De Graaff<br>> <barrydg@zetalliance.org> wrote:<br>><br>>> Hello Quanah,<br>>><br>>> Thanks, I only install the MariaDB/Mysql client, specifically since its a<br>>> groupinstall:<br>>><br>>> mysql<br>>> mysql-connector-odbc<br>>> MySQL-python<br>>><br>>> And do use the MariaDB that is installed from zimbra, and add a database<br>>> and user...<br>>><br>>> So if I am not mistaken, that is OK right?<br>>><br>>><br>>> Kind regards,<br>>><br>>> Barry de Graaff<br>>> Zeta Alliance Founder<br>>> www.zetalliance.org<br>>><br>>> Skype: barrydegraaff.tk<br>>> Fingerprint: 9e0e165f06b365ee1e47683e20f37303c20703f8<br>>><br>>> ----- Original Message -----<br>>> From: "Quanah Gibson-Mount" <quanah@zimbra.com><br>>> To: "Barry De Graaff" <barrydg@zetalliance.org>, "Guy CARRÉ"<br>>> <guycarre@free.fr> Cc: "Keith McDermott" <keithmcd@purdue.edu>,<br>>> devel@lists.zetalliance.org, users@lists.zetalliance.org Sent: Tuesday,<br>>> June 7, 2016 4:43:52 PM<br>>> Subject: Re: [Devel] [Users] checkhack-zimbra-preferences shell escape<br>>> issues<br>>><br>>> Since ZCS already installs MariaDB on the MTA nodes, you should just use<br>>> it  rather than also adding in the ancient and potentially conflicting<br>>> system  mysql/mariadb version.  Also reduces overhead.<br>>><br>>> --Quanah<br>>><br>>> --On Tuesday, June 07, 2016 2:41 PM +0000 Barry De Graaff<br>>> <barrydg@zetalliance.org> wrote:<br>>><br>>>> Yeah, I moved it off the README, but left it in the repo, for anyone who<br>>>> wants to  take it and work on it.<br>>>><br>>>> I will go with<br>>>> https://github.com/Zimbra-Community/zimbra-tools/blob/master/cbpolicyd.<br>>>> sh for this.<br>>>><br>>>> Kind regards,<br>>>><br>>>> Barry de Graaff<br>>>> Zeta Alliance Founder<br>>>> www.zetalliance.org<br>>>><br>>>> Skype: barrydegraaff.tk<br>>>> Fingerprint: 9e0e165f06b365ee1e47683e20f37303c20703f8<br>>>><br>>>> ----- Original Message -----<br>>>> From: "Guy CARRÉ" <guycarre@free.fr><br>>>> To: "Keith McDermott" <keithmcd@purdue.edu><br>>>> Cc: "Barry De Graaff" <barrydg@zetalliance.org>,<br>>>> users@lists.zetalliance.org, devel@lists.zetalliance.org Sent: Tuesday,<br>>>> June 7, 2016 3:35:56 PM<br>>>> Subject: Re: [Users] checkhack-zimbra-preferences shell escape issues<br>>>><br>>>> Hello,<br>>>><br>>>> as it seems that the script is very old, I would advice to upgrade it by<br>>>> using Bash best practises, even if it is KSH which is call.  Command<br>>>> like :<br>>>> this command_1=`hostname -f`<br>>>> for example has to be changed into<br>>>> command_1=$(hostname -f)<br>>>> same thing with variable :<br>>>> VAR_1=bob<br>>>> should be used like this :<br>>>> ${VAR_1}<br>>>> and some people use over quote technic too.<br>>>><br>>>> Regards,<br>>>><br>>>><br>>>> ___________________________________<br>>>> / \<br>>>> /-------------------------------------\<br>>>>| Guy CARRÉ |<br>>>>| ************* |<br>>>>| PostMaster - WikiMaster - SysAdmin |<br>>>>| |<br>>>>| "Free Your Mind. Think Open Source" |<br>>>>| april.org |<br>>>>| |<br>>>>| _____________________________________|<br>>>><br>>>><br>>>> De: "Keith McDermott" <keithmcd@purdue.edu><br>>>> À: "Barry De Graaff" <barrydg@zetalliance.org>,<br>>>> users@lists.zetalliance.org, devel@lists.zetalliance.org  Envoyé: Mardi<br>>>> 7 Juin 2016 14:32:39<br>>>> Objet: Re: [Users] checkhack-zimbra-preferences shell escape issues<br>>>><br>>>><br>>>><br>>>> Hi Barry,<br>>>><br>>>> I can't remember if it was noted on Git or not, but this was written for<br>>>> ZCS6. We never had issues like this happen in our usage of the script<br>>>> for the past 5-6 years. There would be an odd thing very rarely that<br>>>> would cause key/pairs to get messed up, but it always created one file<br>>>> per user.<br>>>><br>>>> Perhaps something's changed in some of the commands that are being ran<br>>>> since ZCS6?<br>>>><br>>>> Files should be created such as:<br>>>><br>>>> /tmp/zimbra-preferences-scores/2016-06-16/keithmcd<br>>>><br>>>> -keith<br>>>><br>>>><br>>>><br>>>> Keith McDermott<br>>>> Messaging Systems Administrator<br>>>> ITIS, ITaP<br>>>> Purdue University<br>>>><br>>>> E-mail: keithmcd@purdue.edu Address:155 S. Grant Street<br>>>>         West Lafayette, IN 47907<br>>>><br>>>> "The road to wisdom, well, it's plain and simple to express,<br>>>>  Err and err and err again, but less and less and less."<br>>>>  - Piet Hein<br>>>> On 6/7/16 00:49, Barry De Graaff wrote:<br>>>><br>>>><br>>>><br>>><br>>><br>>><br>>> --<br>>><br>>> Quanah Gibson-Mount<br>>> Platform Architect<br>>> Manager, Systems Team<br>>> Zimbra, Inc.<br>>> --------------------<br>>> Zimbra ::  the leader in open source messaging and collaboration<br>>> A division of Synacor, Inc<br>><br>><br>><br>> --<br>><br>> Quanah Gibson-Mount<br>> Platform Architect<br>> Manager, Systems Team<br>> Zimbra, Inc.<br>> --------------------<br>> Zimbra ::  the leader in open source messaging and collaboration<br>> A division of Synacor, Inc<br>><br><br><br><br>--<br><br>Quanah Gibson-Mount<br>Platform Architect<br>Manager, Systems Team<br>Zimbra, Inc.<br>--------------------<br>Zimbra ::  the leader in open source messaging and collaboration<br>A division of Synacor, Inc<br></div><br></div></body></html>