Skip to content

Instantly share code, notes, and snippets.

View jigzstar's full-sized avatar

Joakim George jigzstar

  • Saint Lucia NIC
  • Castries, Saint Lucia
View GitHub Profile
@jigzstar
jigzstar / caprover.odoo
Last active March 22, 2022 18:47
Caprover odoo one click setup from @abedev31
{
"captainVersion": "2",
"documentation": "https://github.com/caprover/one-click-apps",
"dockerCompose": {
"version": "3.3",
"services": {
"$$cap_appname-db": {
"image": "postgres:$$cap_postgres_version",
"notExposeAsWebApp": "true",
"volumes": [
@jigzstar
jigzstar / gist:fd03fd6b1df43f72d5e7
Created February 4, 2016 04:36
XD 7.5 Prevent Desktop Shutdown after use
PowerShell:
Set-BrokerDesktopGroup -Name "Desktop Group Name" -ShutdownDesktopsAfterUse $False
http://support.citrix.com/article/CTX127842?_ga=1.172770276.630336647.1453479398
@jigzstar
jigzstar / rm_message.sh
Last active November 11, 2023 12:17
Zimbra - Delete a message by subject from all email accounts in a file
#!/bin/bash
# rm_message.sh user@domain.com subject
# create temp_file prior to calling this zmprov -l gaa | grep domain.com > /tmp/temp_email
if [ -z "$2" ]; then
echo "usage: rm_message.sh user@domain.com <subject>"
exit 0
else
addr=$1
subject=$2