Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
485
Issues
485
List
Boards
Labels
Service Desk
Milestones
Merge Requests
23
Merge Requests
23
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
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
ISPConfig
ISPConfig 3
Commits
e514ae70
Commit
e514ae70
authored
Jan 03, 2013
by
hellkat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented FS#2595 - postfix RSA certificate generation.
- Postfix SSL Key is now 4096 bit for greater security
parent
4586d500
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+2
-2
No files found.
install/lib/installer_base.lib.php
View file @
e514ae70
...
...
@@ -732,7 +732,7 @@ class installer_base {
if
(
!
stristr
(
$options
,
'dont-create-certs'
))
{
//* Create the SSL certificate
$command
=
'cd '
.
$config_dir
.
'; '
.
'openssl req -new -outform PEM -out smtpd.cert -newkey rsa:
2048
-nodes -keyout smtpd.key -keyform PEM -days 3650 -x509'
;
.
'openssl req -new -outform PEM -out smtpd.cert -newkey rsa:
4096
-nodes -keyout smtpd.key -keyform PEM -days 3650 -x509'
;
exec
(
$command
);
$command
=
'chmod o= '
.
$config_dir
.
'/smtpd.key'
;
...
...
@@ -2229,4 +2229,4 @@ class installer_base {
}
}
?>
\ No newline at end of file
?>
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