Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Maildir #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions dovecot/files/_common.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{%- from "dovecot/map.jinja" import server with context %}

auth_debug = {% if server.debug %}yes{% else %}no{% endif %}
auth_verbose = {% if server.verbose %}yes{% else %}no{% endif %}
mail_debug = {% if server.mail_debug %}yes{% else %}no{% endif %}
auth_debug = {% if server.auth_debug %}yes{% else %}no{% endif %}
auth_verbose = {% if server.auth_verbose %}yes{% else %}no{% endif %}

auth_mechanisms = plain {%- if server.gssapi is defined %}gssapi{% endif %}

Expand Down Expand Up @@ -43,7 +44,7 @@ log_timestamp = "%Y-%m-%d %H:%M:%S "

mail_access_groups = vmail
mail_privileged_group = vmail
mail_location = maildir:{{ server.mailbox_base }}/%d/%u:INDEX={% if server.index.get('enabled', True) %}{{ server.index.path }}/%d/%u{% else %}MEMORY{% endif %}
mail_location = maildir:~/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You surely don't want to hardcode this and remove original value.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i create a dovecot server with this Value and is running.
with the Orginal Value the dovecot service is running but you cannot connect.

On a other point, you define in SQL the mailbox base + mailbox

mail_max_userip_connections = 99

{%- if server.nfs %}
Expand Down