Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
Dockerfiles
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Picasoft
Technique
Dockerfiles
Commits
11ef4c03
Commit
11ef4c03
authored
Jan 04, 2019
by
Romain Maliach-Auguste
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Redirection vers le stdout de mail.*, désactivation des fichiers textes
parent
0977e55f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
1 deletion
+101
-1
pica-mail-mta/config.sh
pica-mail-mta/config.sh
+6
-0
pica-mail-mta/entrypoint.sh
pica-mail-mta/entrypoint.sh
+0
-1
pica-mail-mta/rsyslog.conf
pica-mail-mta/rsyslog.conf
+95
-0
No files found.
pica-mail-mta/config.sh
View file @
11ef4c03
...
...
@@ -127,6 +127,12 @@ postconf -e 'smtpd_tls_cert_file = /certs-ssl/cert'
postconf
-e
'smtpd_tls_key_file = /certs-ssl/key'
postconf
-e
'smtpd_tls_security_level = may'
#logs
#on redirige les logs des fichiers vers le stdout
rm
/var/log/mail.log
rm
/var/log/opendmarc.log
ln
-s
/dev/stdout /var/log/mail.log
ln
-s
/dev/stdout /var/log/opendmarc.log
#activation du service smtps (sur le port 465 par défaut)
...
...
pica-mail-mta/entrypoint.sh
View file @
11ef4c03
...
...
@@ -3,5 +3,4 @@
service rsyslog start
service opendmarc start
service opendkim start
tail
-F
/var/log/mail.log &
/usr/lib/postfix/sbin/master
-c
/etc/postfix
-d
2>&1
pica-mail-mta/rsyslog.conf
0 → 100644
View file @
11ef4c03
# /etc/rsyslog.conf Configuration file for rsyslog.
#
# For more information see
# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
#################
#### MODULES ####
#################
module
(
load
=
"imuxsock"
)
# provides support for local system logging
module
(
load
=
"imklog"
)
# provides kernel logging support
#module(load="immark") # provides --MARK-- message capability
# provides UDP syslog reception
#module(load="imudp")
#input(type="imudp" port="514")
# provides TCP syslog reception
#module(load="imtcp")
#input(type="imtcp" port="514")
###########################
#### GLOBAL DIRECTIVES ####
###########################
#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
$
ActionFileDefaultTemplate
RSYSLOG_TraditionalFileFormat
#
# Set the default permissions for all log files.
#
$
FileOwner
root
$
FileGroup
adm
$
FileCreateMode
0640
$
DirCreateMode
0755
$
Umask
0022
#
# Where to place spool and state files
#
$
WorkDirectory
/
var
/
spool
/
rsyslog
#
# Include all config files in /etc/rsyslog.d/
#
$
IncludeConfig
/
etc
/
rsyslog
.
d
/*.
conf
###############
#### RULES ####
###############
#
# First some standard log files. Log by facility.
#
auth
,
authpriv
.* /
var
/
log
/
auth
.
log
*.*;
auth
,
authpriv
.
none
-/
var
/
log
/
syslog
#cron.* /var/log/cron.log
daemon
.* -/
var
/
log
/
daemon
.
log
kern
.* -/
var
/
log
/
kern
.
log
lpr
.* -/
var
/
log
/
lpr
.
log
#sera redirige vers le stdout
mail
.* -/
var
/
log
/
mail
.
log
user
.* -/
var
/
log
/
user
.
log
#
# Logging for the mail system. Split it up so that
# it is easy to write scripts to parse these files.
#
#mail.info -/var/log/mail.info
#mail.warn -/var/log/mail.warn
#mail.err /var/log/mail.err
#desactive car doublon avec mail.log
#
# Some "catch-all" log files.
#
*.=
debug
;\
auth
,
authpriv
.
none
;\
news
.
none
;
mail
.
none
-/
var
/
log
/
debug
*.=
info
;*.=
notice
;*.=
warn
;\
auth
,
authpriv
.
none
;\
cron
,
daemon
.
none
;\
mail
,
news
.
none
-/
var
/
log
/
messages
#
# Emergencies are sent to everybody logged in.
#
*.
emerg
:
omusrmsg
:*
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment