Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
postfix
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
luiz.nunes
postfix
Commits
383ed618
Commit
383ed618
authored
Jan 21, 2016
by
Daniel Marinovici
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs #31595: remove unneeded file (refactored)
parent
5436abf3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
30 deletions
+0
-30
postfix.sh
postfix.sh
+0
-30
No files found.
postfix.sh
deleted
100755 → 0
View file @
5436abf3
#!/bin/bash
# Set up user
function
setup_conf_and_secret
{
postconf
-e
'smtp_tls_CAfile = /etc/ssl/certs/ca-bundle.trust.crt'
postconf
-e
"relayhost = [
$MTP_RELAY
]:
$MTP_PORT
"
postconf
-e
'smtp_sasl_auth_enable = yes'
postconf
-e
'smtp_sasl_password_maps = hash:/etc/postfix/relay_passwd'
postconf
-e
'smtp_sasl_security_options = noanonymous'
postconf
-e
'smtp_tls_security_level = may'
postconf
-e
'mynetworks = 127.0.0.0/8 172.17.0.0/16'
echo
"
$MTP_RELAY
$MTP_USER
:
$MTP_PASS
"
>
/etc/postfix/relay_passwd
postmap /etc/postfix/relay_passwd
}
postconf
-e
"myhostname =
$MTP_HOST
"
postconf
-e
'inet_interfaces = all'
if
[
!
-z
"
$MTP_RELAY
"
-a
!
-z
"
$MTP_PORT
"
-a
!
-z
"
$MTP_USER
"
-a
!
-z
"
$MTP_PASS
"
]
;
then
setup_conf_and_secret
else
postconf
-e
'mynetworks = 127.0.0.1/32 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8'
fi
service rsyslog start
service postfix start
touch /var/log/maillog
tail
-f
/var/log/maillog
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