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
be7364bd
Commit
be7364bd
authored
Feb 02, 2021
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configured SSL
parent
f96a2ad1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
Makefile
Makefile
+1
-0
sendmail.mc
sendmail.mc
+19
-2
No files found.
Makefile
View file @
be7364bd
...
...
@@ -48,6 +48,7 @@ all: sendmail-config mail-aliases sendmail-default sm-client-service sendmail-se
cd
sendmail-8.16.1
&&
install
-v
-m644
vacation/vacation.1 /usr/share/man/man1
install
-v
-d
-m755
/usr/share/doc/sendmail-8.16.1
cd
sendmail-8.16.1/doc/op
&&
install
-v
-m644
op.ps /usr/share/doc/sendmail-8.16.1
openssl req
-new
-x509
-nodes
-out
/etc/ssl/private/server.pem
-keyout
/etc/ssl/private/server.pem
-days
3650
-subj
"/C=US/ST=Denial/L=Springfield/O=Dis/CN=localhost"
echo
$
$(hostname)
>
/etc/mail/local-host-names
@
echo
"
$$
MAIL_ALIASES"
>
/etc/mail/aliases
newaliases
...
...
sendmail.mc
View file @
be7364bd
...
...
@@ -4,6 +4,13 @@ VERSIONID(`Cyrus IMAP, SASL and STARTTLS for Certo appliance')
OSTYPE(linux)dnl
DOMAIN(generic)dnl
define(`confDONT_PROBE_INTERFACES', `True')dnl
dnl ----------------------------------------------------------------------------
dnl Privacy.
dnl ----------------------------------------------------------------------------
define(`confPRIVACY_FLAGS', `goaway')dnl
dnl ----------------------------------------------------------------------------
dnl Ensure that local users' addresses have a domain.
dnl ----------------------------------------------------------------------------
...
...
@@ -22,9 +29,19 @@ define(`confAUTH_MECHANISMS', `DIGEST-MD5 CRAM-MD5 PLAIN')dnl
TRUST_AUTH_MECH(`DIGEST-MD5 CRAM-MD5 PLAIN')dnl
dnl ----------------------------------------------------------------------------
dnl Privacy.
dnl Security Layer (STARTTLS and SMTP over SSL).
dnl
dnl The server certificate/key is provided so that the passwords of clients
dnl submitting mail through the MSA will be protected by an encrypted
dnl connection.
dnl
dnl The client certificate/key is not provided since we do not want to attempt
dnl TLS with any servers, including the local ISP.
dnl ----------------------------------------------------------------------------
define(`confPRIVACY_FLAGS', `goaway')dnl
define(`confCACERT_PATH', `/etc/ssl')dnl
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
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