Skip to content
Snippets Groups Projects
Commit 93dae403 authored by Stephan Bosch's avatar Stephan Bosch
Browse files

global: Reformat service listener setting defaults.

Use named initializers and list the items on a separate line each.
parent c0fc84f6
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,12 @@ ...@@ -22,7 +22,12 @@
/* <settings checks> */ /* <settings checks> */
static struct file_listener_settings managesieve_login_unix_listeners_array[] = { static struct file_listener_settings managesieve_login_unix_listeners_array[] = {
{ "srv.managesieve-login/%{pid}", 0600, "", "" }, {
.path = "srv.managesieve-login/%{pid}",
.mode = 0600,
.user = "",
.group = ""
},
}; };
static struct file_listener_settings *managesieve_login_unix_listeners[] = { static struct file_listener_settings *managesieve_login_unix_listeners[] = {
&managesieve_login_unix_listeners_array[0], &managesieve_login_unix_listeners_array[0],
...@@ -33,7 +38,11 @@ static buffer_t managesieve_login_unix_listeners_buf = { ...@@ -33,7 +38,11 @@ static buffer_t managesieve_login_unix_listeners_buf = {
}; };
static struct inet_listener_settings managesieve_login_inet_listeners_array[] = { static struct inet_listener_settings managesieve_login_inet_listeners_array[] = {
{ .name = "sieve", .address = "", .port = MANAGESIEVE_DEFAULT_PORT }, {
.name = "sieve",
.address = "",
.port = MANAGESIEVE_DEFAULT_PORT,
},
}; };
static struct inet_listener_settings *managesieve_login_inet_listeners[] = { static struct inet_listener_settings *managesieve_login_inet_listeners[] = {
&managesieve_login_inet_listeners_array[0] &managesieve_login_inet_listeners_array[0]
......
...@@ -19,8 +19,18 @@ static bool managesieve_settings_verify(void *_set, pool_t pool, ...@@ -19,8 +19,18 @@ static bool managesieve_settings_verify(void *_set, pool_t pool,
/* <settings checks> */ /* <settings checks> */
static struct file_listener_settings managesieve_unix_listeners_array[] = { static struct file_listener_settings managesieve_unix_listeners_array[] = {
{ "login/sieve", 0666, "", "" }, {
{ "srv.managesieve/%{pid}", 0600, "", "" }, .path = "login/sieve",
.mode = 0666,
.user = "",
.group = "",
},
{
.path = "srv.managesieve/%{pid}",
.mode = 0600,
.user = "",
.group = "",
},
}; };
static struct file_listener_settings *managesieve_unix_listeners[] = { static struct file_listener_settings *managesieve_unix_listeners[] = {
&managesieve_unix_listeners_array[0], &managesieve_unix_listeners_array[0],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.