Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Dockerfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Picasoft
Technique
Dockerfiles
Commits
11ef4c03
Commit
11ef4c03
authored
6 years ago
by
Roma
Browse files
Options
Downloads
Patches
Plain Diff
Redirection vers le stdout de mail.*, désactivation des fichiers textes
parent
0977e55f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pica-mail-mta/config.sh
+6
-0
6 additions, 0 deletions
pica-mail-mta/config.sh
pica-mail-mta/entrypoint.sh
+0
-1
0 additions, 1 deletion
pica-mail-mta/entrypoint.sh
pica-mail-mta/rsyslog.conf
+95
-0
95 additions, 0 deletions
pica-mail-mta/rsyslog.conf
with
101 additions
and
1 deletion
pica-mail-mta/config.sh
+
6
−
0
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)
...
...
This diff is collapsed.
Click to expand it.
pica-mail-mta/entrypoint.sh
+
0
−
1
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
This diff is collapsed.
Click to expand it.
pica-mail-mta/rsyslog.conf
0 → 100644
+
95
−
0
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
:*
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment