Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mailinabox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Administrator
mailinabox
Commits
f184a74f
Commit
f184a74f
authored
Jan 01, 2016
by
Joshua Tauberer
Browse files
Options
Browse Files
Download
Plain Diff
merge #647 - open the port for Sieve
parents
3fbbf569
682b1dea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
CHANGELOG.md
CHANGELOG.md
+7
-0
status_checks.py
management/status_checks.py
+1
-1
mail-dovecot.sh
setup/mail-dovecot.sh
+3
-0
No files found.
CHANGELOG.md
View file @
f184a74f
CHANGELOG
=========
In Development
--------------
Mail:
*
The Sieve port is now open so tools like the Thunderbird Sieve program can be used to edit mail filters.
v0.15 (January 1, 2016)
-----------------------
...
...
management/status_checks.py
View file @
f184a74f
...
...
@@ -71,7 +71,6 @@ def run_services_checks(env, output, pool):
{
"name"
:
"OpenDKIM"
,
"port"
:
8891
,
"public"
:
False
,
},
{
"name"
:
"OpenDMARC"
,
"port"
:
8893
,
"public"
:
False
,
},
{
"name"
:
"Memcached"
,
"port"
:
11211
,
"public"
:
False
,
},
{
"name"
:
"Sieve (dovecot)"
,
"port"
:
4190
,
"public"
:
False
,
},
{
"name"
:
"Mail-in-a-Box Management Daemon"
,
"port"
:
10222
,
"public"
:
False
,
},
{
"name"
:
"SSH Login (ssh)"
,
"port"
:
get_ssh_port
(),
"public"
:
True
,
},
...
...
@@ -80,6 +79,7 @@ def run_services_checks(env, output, pool):
{
"name"
:
"Outgoing Mail (SMTP 587/postfix)"
,
"port"
:
587
,
"public"
:
True
,
},
#{ "name": "Postfix/master", "port": 10587, "public": True, },
{
"name"
:
"IMAPS (dovecot)"
,
"port"
:
993
,
"public"
:
True
,
},
{
"name"
:
"Mail Filters (Sieve/dovecot)"
,
"port"
:
4190
,
"public"
:
True
,
},
{
"name"
:
"HTTP Web (nginx)"
,
"port"
:
80
,
"public"
:
True
,
},
{
"name"
:
"HTTPS Web (nginx)"
,
"port"
:
443
,
"public"
:
True
,
},
]
...
...
setup/mail-dovecot.sh
View file @
f184a74f
...
...
@@ -203,5 +203,8 @@ chown -R mail.mail $STORAGE_ROOT/mail/sieve
ufw_allow imaps
ufw_allow pop3s
# Allow the Sieve port in the firewall.
ufw_allow sieve
# Restart services.
restart_service dovecot
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