F you do not have the means to setup a catchall: In app/bundles/EmailBundle/Helper/MailHelper.php: Change: public function generateBounceEmail($idHash = null) { $monitoredEmail = false; if ($settings = $this->isMontoringEnabled(‘EmailBundle’, ‘bounces’)) { // Append the bounce notation list($email, $domain) = explode(‘@’, $settings[‘address’]); $email .= ‘+bounce’; if ($idHash) { $email .= ‘_’.$this->idHash; } $monitoredEmail = $email.’@’.$domain; } return $monitoredEmail; …
Script to create a #docker swarm mode cluster
I found this script on GitHub. I have been writing a similar one, with less functionality and flexibility, but that’s OK it is for Databases with volumes. #!/bin/bash Size=3 if [ -z “${DOCKER_MACHINE_DRIVER}” ]; then DOCKER_MACHINE_DRIVER=virtualbox fi # REGISTRY_MIRROR_OPTS=”–engine-registry-mirror https://jxus37ac.mirror.aliyuncs.com” # INSECURE_OPTS=”–engine-insecure-registry 192.168.99.0/24″ STORAGE_OPTS=”–engine-storage-driver overlay2″ MACHINE_OPTS=”${STORAGE_OPTS} ${INSECURE_OPTS} ${REGISTRY_MIRROR_OPTS}” function create_nodes() { for i in $(seq …
Continue reading “Script to create a #docker swarm mode cluster”
AWS Cloudformation pass parameters from pull down menu to UserData.
Declaring the Ref s and Mapping Findinmap in CloudFormation which can be used in userdata on your EC2 server (maybe others too) Almost 20 hours of learning and making mistakes I have been working on making a Multi Region Replicated MongoDB Replica Set with Oneclick installation via AWS Marketplace. I got the script working. Now …
Continue reading “AWS Cloudformation pass parameters from pull down menu to UserData.”
This sounds really great and affordable. AquaSec Security Has On-Demand Scanner for Container Images on AWSMarketplace
For 29 cents you can find nasty stuff on your Images. Using the marketplace scanner, everything from Trojans to forgotten keys, and Vulnerabilities were found. I can’t wait to try this. I don’t know if I know the folks from this biz, but pray for their success. Aqua’s On Demand Vulnerability Scanner – How it Works: …
HmailServer with SES
HmailServer is mostly for receiving email to @yourdomain . SES is for sending email. Over the last year or so SES added the ability to receive emails but this is very complicated and confusing which is why I install Hmailserver to receive the email.Beware: In the SES panel there are DNS settings that AWS give …
How do I parse command line arguments in #Bash? with flags like -s for speed or -ami for AMI ID
I am doing way too much scripting, back to my simple work. #!/bin/bash for i in “$@” do case $i in -e=*|–extension=*) EXTENSION=”${i#*=}” shift # past argument=value ;; -s=*|–searchpath=*) SEARCHPATH=”${i#*=}” shift # past argument=value ;; -l=*|–lib=*) LIBPATH=”${i#*=}” shift # past argument=value ;; –default) DEFAULT=YES shift # past argument with no value ;; *) # unknown …
Tag EC2 & EBS Volumes on Creation @jeffbar – #aws cli needs #pip install not apt
Creating EBS Volumes and EC2 Instances with tags from the beginning is new Believe it or not this announcement that you can tag your ec2 or volume upon creation is new from March 2017. I am presently working with Ubuntu Xenial. When you install aws cli from the apt , it has the old version …
Continue reading “Tag EC2 & EBS Volumes on Creation @jeffbar – #aws cli needs #pip install not apt”
Change your #bash environment in your #script with Set Builtin even in #Windows
Use Bash even in Windows The Set Builtin This builtin is so complicated that it deserves its own section. set allows you to change the values of shell options and set the positional parameters, or to display the names and values of shell variables. set set [–abefhkmnptuvxBCEHPT] [-o option-name] [argument …] set [+abefhkmnptuvxBCEHPT] [+o option-name] [argument …] …
Continue reading “Change your #bash environment in your #script with Set Builtin even in #Windows”
Ec2 UserData can’t deal with plain #Bash variables
It seems that the UserData passed via Cloud Init doesn’t run the script like it would run from CLI or cron. my script it worked to export the value, which the UserData field of EC2 launch form likes. export name=value means that the variable name is available to any process you run …
Continue reading “Ec2 UserData can’t deal with plain #Bash variables”
More than Six steps to creating a successful email newsletter
Get your Emails read and in the Inbox I was going focus on me and how successful I am, when I read the following link, below. It reminded me that emails need to focus on the customer. Always give information that is useful. Click bait gets folks angry, so, even if your an introvert, don’t …
Continue reading “More than Six steps to creating a successful email newsletter”
Increase the Number of Records Shown on the List View In Charming CRM – VTiger Experts
See more Records in the List View of Charming CRM Here is some advice in how to use Charming CRM, which is a powerful opensource CRM package that uses a LAMP server. It is based a fork of Vtiger 7 with several of the bugs fixed. You can install it at AWS Marketplace In Charming …
#Docker Service Create How to use the mount option to use a directory on the host
Mongo DB likes XFS, so the project is to get MOngodb in a docker container to be happy with an XFS volume on the host. Using the mount type bind instead of volume does the trick. docker service create \ –mount type=bind,src=<HOST-PATH>,dst=<CONTAINER-PATH> \ –name myservice \ <IMAGE> Give a service access to volumes or bind …
Continue reading “#Docker Service Create How to use the mount option to use a directory on the host”
#Docker Machine, Compose & Swarm
I want to make a “one click” Cloud formation” on AWS that creates a MongoDB or MySql replica set of at least 3 servers in the same or globally in different regions, or even clouds and local Data Center, Wish me luck Finally, let’s look at the most interesting tool in the current …
