I'm trying to package wormhole for Alpine Linux, but I ran into this problem with ./configure needing to check an option using doveconf. It fails because no dovecot.conf file exists in my build environment when building.
...
checking checking if dovecot/lib.h can be compiled with -Werror=sign-compare... yes
checking for doveconf... doveconf
checking if auth_socket_path config option is hidden... doveconf: Fatal: open(/etc/dovecot/dovecot.conf) failed: No such file or directory
doveconf: Fatal: open(/etc/dovecot/dovecot.conf) failed: No such file or directory
configure: error: config option auth_socket_path does not exist
>>> ERROR: dovecot-wormhole: build failed
I know from the README.md that an initial configuration file can be created, but can this be omitted, or do I have to find a way to generate a dovecot.conf during build? When building as a non-privileged user, this fails because of file system permissions.
I'm trying to package wormhole for Alpine Linux, but I ran into this problem with ./configure needing to check an option using doveconf. It fails because no dovecot.conf file exists in my build environment when building.
```
...
checking checking if dovecot/lib.h can be compiled with -Werror=sign-compare... yes
checking for doveconf... doveconf
checking if auth_socket_path config option is hidden... doveconf: Fatal: open(/etc/dovecot/dovecot.conf) failed: No such file or directory
doveconf: Fatal: open(/etc/dovecot/dovecot.conf) failed: No such file or directory
configure: error: config option auth_socket_path does not exist
>>> ERROR: dovecot-wormhole: build failed
```
I know from the README.md that an initial configuration file can be created, but can this be omitted, or do I have to find a way to generate a dovecot.conf during build? When building as a non-privileged user, this fails because of file system permissions.