Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sendmail
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
sendmail
Commits
02e8e26c
Commit
02e8e26c
authored
Feb 02, 2021
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Confgured MTA and MSA
parent
be7364bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
sendmail.mc
sendmail.mc
+23
-0
No files found.
sendmail.mc
View file @
02e8e26c
...
...
@@ -43,5 +43,28 @@ define(`confCACERT', `/etc/ssl/ca-bundle.pem')dnl
define(`confSERVER_CERT', `/etc/ssl/private/server.pem')dnl
define(`confSERVER_KEY', `/etc/ssl/private/server.pem')dnl
dnl ----------------------------------------------------------------------------
dnl MTA and MSA.
dnl
dnl The MTA allows connections from everywhere for inbound mail.
dnl
dnl MSA only accepts authenticated connections. Finally, the SMTP over SSL
dnl MSA (MSA-SSL) is needed, because some MUAs do not support STARTTLS.
dnl
dnl For reference, here are the Modifiers parameter options
dnl a require SMTP authentication
dnl b bind to interface through which mail has been received for outgoing message
dnl c perform hostname canonification
dnl f require fully qualified hostname
dnl h use name of interface for outgoing HELO command
dnl s enable SMTP over SSL
dnl C don't perform hostname canonification
dnl E disallow ETRN (see RFC 2476)
dnl ----------------------------------------------------------------------------
FEATURE(`no_default_msa')dnl
DAEMON_OPTIONS(`Family=inet, Name=MTA, Port=smtp, Modifiers=cfE')dnl
DAEMON_OPTIONS(`Family=inet, Name=MSA, Port=submission, Modifiers=acfE')dnl
DAEMON_OPTIONS(`Family=inet, Name=MSA-SSL, Port=465, Modifiers=acsfE')dnl
MAILER(local)dnl
MAILER(smtp)dnl
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