add use gitlab docker registry
This commit is contained in:
parent
c304fe5896
commit
8f0b33368d
8 changed files with 25 additions and 43 deletions
|
@ -20,8 +20,8 @@ virtual_mailbox_maps = proxy:ldap:/etc/postfix/ldap-virtual-mailbox-maps.cf
|
|||
virtual_alias_maps = proxy:ldap:/etc/postfix/ldap-virtual-alias-maps.cf
|
||||
virtual_transport = lmtp:inet:{{getenv "LMTP_HOST"}}:{{getenv "LMTP_PORT"}}
|
||||
|
||||
smtpd_tls_key_file=/etc/ssl/mail/{{getenv "KEY_NAME" "privkey.pem"}}
|
||||
smtpd_tls_cert_file=/etc/ssl/mail/{{getenv "CERT_NAME" "fullchain.pem"}}
|
||||
smtpd_tls_key_file=/etc/ssl/mail/{{getenv "CERT_DOMAIN"}}.crt
|
||||
smtpd_tls_cert_file=/etc/ssl/mail/{{getenv "CERT_DOMAIN"}}.key
|
||||
|
||||
smtpd_tls_security_level = {{getenv "TLS_SECURITY_LEVEL" "may"}}
|
||||
smtpd_tls_auth_only = yes
|
||||
|
@ -61,5 +61,5 @@ message_size_limit = {{getenv "MESSAGE_SIZELIMIT" "20000000"}}
|
|||
|
||||
tls_preempt_cipherlist = yes
|
||||
|
||||
smtputf8_enable = no
|
||||
smtputf8_enable = yes
|
||||
biff = no
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/with-contenv sh
|
||||
|
||||
cd /var
|
||||
exec syslog-ng --foreground
|
|
@ -1,24 +0,0 @@
|
|||
@version: 3.7
|
||||
|
||||
options {
|
||||
stats_freq (0);
|
||||
time_reopen (10);
|
||||
chain_hostnames (off);
|
||||
use_dns (no);
|
||||
use_fqdn (no);
|
||||
keep_hostname (yes);
|
||||
};
|
||||
|
||||
source s_local {
|
||||
unix-dgram("/dev/log");
|
||||
internal();
|
||||
};
|
||||
|
||||
destination catchall {
|
||||
pipe("/dev/stdout");
|
||||
};
|
||||
|
||||
log {
|
||||
source(s_local);
|
||||
destination(catchall);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue