Skip to content
New issue

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

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

Already on GitHub? # to your account

quota_clone plugin: quota_clone_mail_user_created warned without debug #7

Closed
Closed
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
4 changes: 3 additions & 1 deletion src/plugins/quota-clone/quota-clone-plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ static void quota_clone_mail_user_created(struct mail_user *user)

uri = mail_user_plugin_getenv(user, "quota_clone_dict");
if (uri == NULL || uri[0] == '\0') {
i_error("The quota_clone_dict setting is missing from configuration");
if (user->mail_debug) {
i_debug("The quota_clone_dict setting is missing from configuration");
}
return;
}

Expand Down