From 9f4a5b183450dc6bd04eb776c4f71145b91dc505 Mon Sep 17 00:00:00 2001 From: andryyy Date: Sun, 12 Mar 2017 17:25:30 +0100 Subject: [PATCH 1/2] Fix symbol check --- data/conf/rspamd/lua/rspamd.local.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/conf/rspamd/lua/rspamd.local.lua b/data/conf/rspamd/lua/rspamd.local.lua index 6f738f92..236734f2 100644 --- a/data/conf/rspamd/lua/rspamd.local.lua +++ b/data/conf/rspamd/lua/rspamd.local.lua @@ -33,7 +33,7 @@ rspamd_config:register_post_filter(function(task) local rcpt = user .. '@' .. domain local authdomain = auth_domain_map:get_key(domain) - if tagged_rcpt[1].options[1] then + if tagged_rcpt then local tag = tagged_rcpt[1].options[1] rspamd_logger.infox("found tag: %s", tag) local action = task:get_metric_action('default') From 72a58b8c280751520001852a674f1df6e00d309e Mon Sep 17 00:00:00 2001 From: andryyy Date: Mon, 13 Mar 2017 08:02:45 +0100 Subject: [PATCH 2/2] [Docs] Pull images before starting mailcow --- docs/install.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index fddfaa59..1274ed84 100644 --- a/docs/install.md +++ b/docs/install.md @@ -35,8 +35,9 @@ nano mailcow.conf ``` If you plan to use a reverse proxy, you can, for example, bind HTTPS to 127.0.0.1 on port 8443 and HTTP to 127.0.0.1 on port 8080. -5\. Run the composer file. It will pull images and build containers. +5\. Pull the images and run the composer file. The paramter `-d` will start mailcow: dockerized detached: ``` +docker-compose pull docker-compose up -d ```