andryyy 
							
						 
					 
					
						
						
							
						
						f38d726ed2 
					 
					
						
						
							
							Revert base of Rspamd  
						
						
						
						
					 
					
						2017-05-17 07:46:27 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						861ade77ab 
					 
					
						
						
							
							New Dockerfile  
						
						
						
						
					 
					
						2017-05-14 22:11:12 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						be044a1592 
					 
					
						
						
							
							Add openssl  
						
						
						
						
					 
					
						2017-05-14 22:10:25 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						e795898b80 
					 
					
						
						
							
							Fix Redis migration  
						
						
						
						
					 
					
						2017-05-14 20:16:43 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						1add37157d 
					 
					
						
						
							
							Remove icu lib dev  
						
						
						
						
					 
					
						2017-05-14 20:15:34 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						ce4c5b80b8 
					 
					
						
						
							
							Fix migration to Redis  
						
						
						
						
					 
					
						2017-05-14 20:07:43 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						a46a84a949 
					 
					
						
						
							
							Fix docker-entrypoint, fixes key merging from file to Redis  
						
						
						
						
					 
					
						2017-05-14 14:26:07 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						fbac28974b 
					 
					
						
						
							
							Base on Alpine  
						
						
						
						
					 
					
						2017-05-14 14:25:10 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						4b875d1468 
					 
					
						
						
							
							Remove some tools after installation  
						
						
						
						
					 
					
						2017-05-14 14:24:55 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						cf4cefbccd 
					 
					
						
						
							
							Base on Alpine, still needs cleanup  
						
						
						
						
					 
					
						2017-05-14 14:23:26 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						980acb507e 
					 
					
						
						
							
							Log to redis and file  
						
						
						
						
					 
					
						2017-05-13 22:58:10 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						766a986f27 
					 
					
						
						
							
							[Dockerfiles] Do not install both curl and wget  
						
						... 
						
						
						
						curl is used in rspamd-pipe-*, so I kept curl 
						
						
					 
					
						2017-05-13 18:10:04 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						7fd982f948 
					 
					
						
						
							
							[Dockerfiles] Do not persist DEBIAN_FRONTEND=noninteractive in images  
						
						... 
						
						
						
						According to https://github.com/moby/moby/issues/4032#issuecomment-163689851 
(and some other comments in the issue) it's not recommended to set
`DEBIAN_FRONTEND` via `ENV` in a Dockerfile.  `ARG` has the same
effect at build time but does not change `DEBIAN_FRONTEND` in the
final image, so I switched to it.  It should also work to remove it
completely. 
						
						
					 
					
						2017-05-13 18:10:04 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						e081a847a1 
					 
					
						
						
							
							[Dockerfiles] Do not keep curl installed  
						
						
						
						
					 
					
						2017-05-13 18:10:04 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						559d9dda71 
					 
					
						
						
							
							[Dockerfiles] Run rm as early as possible  
						
						
						
						
					 
					
						2017-05-13 18:10:04 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						85be7aa973 
					 
					
						
						
							
							[Dockerfiles] Sorted list of packages  
						
						
						
						
					 
					
						2017-05-13 18:10:04 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						9ab9d76240 
					 
					
						
						
							
							[Dockerfiles] Used best practices for apt-get  
						
						... 
						
						
						
						See https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#apt-get 
- Replaced `-y install` with `install -y` (unification)
- Put every package on its own line
- Moved `rm -rf /var/lib/apt/lists/*` in the same `RUN` statement as `apt-get`
- Removed unnecessary `apt-get clean`
  See 03e2923e42/contrib/mkimage/debootstrap (L82-L105) 
						
						
					 
					
						2017-05-13 18:09:53 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						d0d0961006 
					 
					
						
						
							
							[Dockerfiles] Replaced deprecated MAINTAINER with LABEL  
						
						... 
						
						
						
						Used format proposed in
https://docs.docker.com/engine/reference/builder/#maintainer-deprecated  
						
						
					 
					
						2017-05-13 18:09:45 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						6cd97c46c5 
					 
					
						
						
							
							Used tabs for indentation in Dockerfiles  
						
						
						
						
					 
					
						2017-05-12 20:59:27 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						93046dea45 
					 
					
						
						
							
							Fixes   #261  
						
						
						
						
					 
					
						2017-05-09 21:29:51 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						a18bcce93d 
					 
					
						
						
							
							Minor style changes  
						
						
						
						
					 
					
						2017-05-08 15:38:03 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						653d23a843 
					 
					
						
						
							
							Migrate some settings and DKIM keys to Redis when starting  
						
						
						
						
					 
					
						2017-05-08 15:35:24 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						a267a4ad71 
					 
					
						
						
							
							Use DKIM selector from Redis  
						
						
						
						
					 
					
						2017-05-08 14:11:30 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						d614aaf617 
					 
					
						
						
							
							Add Json logger  
						
						
						
						
					 
					
						2017-05-06 23:42:18 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						a790c2bdc0 
					 
					
						
						
							
							Add phpredis  
						
						
						
						
					 
					
						2017-05-05 10:34:31 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						3fc42465a0 
					 
					
						
						
							
							Fix width problems in mailbox table, change image name to stretch  
						
						
						
						
					 
					
						2017-05-02 09:42:07 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						dfee8efa97 
					 
					
						
						
							
							Fix DBUSER in entrypoint  
						
						
						
						
					 
					
						2017-04-28 12:24:14 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						77992be9fc 
					 
					
						
						
							
							Update Dovecot and Pigeonhole  
						
						
						
						
					 
					
						2017-04-28 10:53:04 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						40f86057e5 
					 
					
						
						
							
							Move forwarding host script to Docker image  
						
						
						
						
					 
					
						2017-04-23 19:38:47 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Kuron 
							
						 
					 
					
						
						
							
						
						08612f0aef 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/dev' into forwardinghosts  
						
						
						
						
					 
					
						2017-04-22 18:13:58 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						cae7ff7816 
					 
					
						
						
							
							Initial clamd container  
						
						
						
						
					 
					
						2017-04-20 21:13:41 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Kuron 
							
						 
					 
					
						
						
							
						
						a75d916b74 
					 
					
						
						
							
							Forwarding hosts in postscreen  
						
						
						
						
					 
					
						2017-04-17 15:51:50 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						06928ec841 
					 
					
						
						
							
							imapsync: added option to delete from source after transfer  
						
						
						
						
					 
					
						2017-04-10 13:08:02 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						e03136bf21 
					 
					
						
						
							
							Add description to command  
						
						
						
						
					 
					
						2017-04-08 23:36:46 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						8e3dceb512 
					 
					
						
						
							
							Rebase images on stretch  
						
						
						
						
					 
					
						2017-04-05 22:25:59 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						5bee39dc95 
					 
					
						
						
							
							Use fixed IDs  
						
						
						
						
					 
					
						2017-04-05 22:25:34 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						13cd5e0b1d 
					 
					
						
						
							
							Run sievec after adding keys, use fixed IDs for users  
						
						
						
						
					 
					
						2017-04-05 22:25:16 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						2b955d08ab 
					 
					
						
						
							
							Base on Stretch, add Zeyple  
						
						
						
						
					 
					
						2017-04-05 22:19:41 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						58d86dadce 
					 
					
						
						
							
							Rebase Dovecot on Stretch slim, build from stable source with latest stable Pigeonhole for antispam replacement  
						
						
						
						
					 
					
						2017-04-03 20:06:49 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						d5c8f0160c 
					 
					
						
						
							
							Go back to apt-stable repo  
						
						
						
						
					 
					
						2017-03-26 11:07:50 +02:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						42eabf4cb3 
					 
					
						
						
							
							Fix Postfix sender when sender is alias in alias domain  
						
						
						
						
					 
					
						2017-03-20 21:38:52 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						09850a76e5 
					 
					
						
						
							
							Use Rspamds new tag symbol  
						
						
						
						
					 
					
						2017-03-12 14:38:20 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						276e370989 
					 
					
						
						
							
							Rspamd tag check for non-spam only (post-filter), remove sql files from repository"  
						
						
						
						
					 
					
						2017-03-08 17:58:00 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						489b1ff1c0 
					 
					
						
						
							
							Fix domain visibility in SOGo (domains should _not_ see each other)  
						
						
						
						
					 
					
						2017-03-08 17:46:21 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						a06bac6739 
					 
					
						
						
							
							[Dockerfiles] Use COPY instead of ADD  
						
						
						
						
					 
					
						2017-03-07 15:48:24 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Käufl 
							
						 
					 
					
						
						
							
						
						9762176810 
					 
					
						
						
							
							[Dockerfiles] From -> FROM  
						
						
						
						
					 
					
						2017-03-07 15:48:22 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						c283c85d51 
					 
					
						
						
							
							Update Postfix and Dovecot, add ignore  
						
						
						
						
					 
					
						2017-03-06 10:33:44 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						be8031d8ff 
					 
					
						
						
							
							Move sleep to docker-compose  
						
						
						
						
					 
					
						2017-03-05 12:25:46 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						3e91d06d73 
					 
					
						
						
							
							Change maintainer  
						
						
						
						
					 
					
						2017-03-04 15:07:07 +01:00 
						 
				 
			
				
					
						
							
							
								andryyy 
							
						 
					 
					
						
						
							
						
						e332579a40 
					 
					
						
						
							
							Sleep 30 seconds to wait for Nginx restart  
						
						
						
						
					 
					
						2017-03-04 10:41:36 +01:00